diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-06-03 10:08:24 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-06-03 10:08:24 +0000 |
commit | e365801e62a58ff4449e3a3d192f41f5964c99eb (patch) | |
tree | e8bbcfbebcaddcb292b2916e1e395f7848e3d92f /media-video/dvbcut/files | |
parent | Another move to make ion3 upstream compatible, wonder how much it will take, ... (diff) | |
download | historical-e365801e62a58ff4449e3a3d192f41f5964c99eb.tar.gz historical-e365801e62a58ff4449e3a3d192f41f5964c99eb.tar.bz2 historical-e365801e62a58ff4449e3a3d192f41f5964c99eb.zip |
Cleanup old version
Package-Manager: portage-2.1.2.9
Diffstat (limited to 'media-video/dvbcut/files')
-rw-r--r-- | media-video/dvbcut/files/digest-dvbcut-0.5.3-r1 | 3 | ||||
-rw-r--r-- | media-video/dvbcut/files/dvbcut-0.5.3-ac3-buffer.patch | 13 | ||||
-rw-r--r-- | media-video/dvbcut/files/dvbcut-0.5.3-sconstruct.patch | 34 |
3 files changed, 0 insertions, 50 deletions
diff --git a/media-video/dvbcut/files/digest-dvbcut-0.5.3-r1 b/media-video/dvbcut/files/digest-dvbcut-0.5.3-r1 deleted file mode 100644 index fa54a634c013..000000000000 --- a/media-video/dvbcut/files/digest-dvbcut-0.5.3-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 11cbc9b874e6dad640febadf620de129 dvbcut_0.5.3.tar.bz2 791953 -RMD160 8a51c528a2274db44c864b1315b25e7cff7bb12d dvbcut_0.5.3.tar.bz2 791953 -SHA256 6496e5a9fe9a4313a480a3b21f075ea17e07451499d2c8e27559f1c4878b5238 dvbcut_0.5.3.tar.bz2 791953 diff --git a/media-video/dvbcut/files/dvbcut-0.5.3-ac3-buffer.patch b/media-video/dvbcut/files/dvbcut-0.5.3-ac3-buffer.patch deleted file mode 100644 index edb18bac1c30..000000000000 --- a/media-video/dvbcut/files/dvbcut-0.5.3-ac3-buffer.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- dvbcut-0.5.3_orig/src/mpgfile.cpp 2005-12-14 22:32:55.000000000 +0100 -+++ dvbcut-0.5.3_fixed/src/mpgfile.cpp 2006-11-25 19:47:07.000000000 +0100 -@@ -232,8 +232,8 @@ - if (avcodec_open(S->avcc, S->dec)) - return; - -- int16_t samples[4096]; -- int frame_size=4096; -+ int16_t samples[6*1536]; // must be enough for 6 AC-3 channels --mr -+ int frame_size=sizeof(samples);//the initial state is ignored anyway, but initialize it - avcodec_decode_audio(S->avcc,samples,&frame_size,(uint8_t*) sd->getdata(),sd->inbytes()); - avcodec_close(S->avcc); - } diff --git a/media-video/dvbcut/files/dvbcut-0.5.3-sconstruct.patch b/media-video/dvbcut/files/dvbcut-0.5.3-sconstruct.patch deleted file mode 100644 index a4382ca08d2a..000000000000 --- a/media-video/dvbcut/files/dvbcut-0.5.3-sconstruct.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- trunk/SConstruct 2006/09/04 19:40:35 1 -+++ trunk/SConstruct 2007/01/28 11:09:32 21 -@@ -48,7 +48,7 @@ - - env.Replace(CXXFILESUFFIX=".cpp") - --env.Append(CPPDEFINES={"_FILE_OFFSET_BITS": "64", "_LARGEFILE_SOURCE": None}) -+env.Append(CPPDEFINES=[("_FILE_OFFSET_BITS", "64"), "_LARGEFILE_SOURCE"]) - - for v in ("CXX","LINK"): - if (v in os.environ): -@@ -62,11 +62,11 @@ - - if (not env.GetOption('clean')): - if (conf.TryAction('pkg-config --exists ao')[0]): -- conf.env.Append(CPPDEFINES={"HAVE_LIB_AO":None}) -+ conf.env.Append(CPPDEFINES="HAVE_LIB_AO") - conf.env.ParseConfig('pkg-config --cflags --libs ao') - print "Checking for libao... found" - elif (conf.CheckLibWithHeader('ao', 'ao/ao.h', 'C')): -- conf.env.Append(CPPDEFINES={"HAVE_LIB_AO":None}) -+ conf.env.Append(CPPDEFINES="HAVE_LIB_AO") - conf.env.Append(LIBS=['ao']) - print "Checking for libao... found" - else: -@@ -85,7 +85,7 @@ - env.Replace(QT_LIB=qtlib) - - if (debug<=0): -- env.Append(CPPDEFINES={"QT_NO_DEBUG": None}) -+ env.Append(CPPDEFINES="QT_NO_DEBUG") - - ### FFMPEG - |