[paketler-commits] r52898 - in 2008/applications/multimedia/ffmpeg: . files

paketler-commits at pardus.org.tr paketler-commits at pardus.org.tr
9 Eyl 2008 Sal 14:24:08 EEST


Author: eki
Date: Tue Sep  9 14:24:07 2008
New Revision: 52898

Added:
   2008/applications/multimedia/ffmpeg/files/alac_bps.patch
      - copied unchanged from r52895, devel/applications/multimedia/ffmpeg/files/alac_bps.patch
   2008/applications/multimedia/ffmpeg/files/set_block_align.patch
      - copied unchanged from r52895, devel/applications/multimedia/ffmpeg/files/set_block_align.patch
Removed:
   2008/applications/multimedia/ffmpeg/files/abort-resampler-not16bits.patch
   2008/applications/multimedia/ffmpeg/files/eac3-lastbits.patch
   2008/applications/multimedia/ffmpeg/files/flv_timestamps_signed.patch
   2008/applications/multimedia/ffmpeg/files/resample-after-conversion-2.patch
Modified:
   2008/applications/multimedia/ffmpeg/actions.py
   2008/applications/multimedia/ffmpeg/pspec.xml
Log:
merge :  Added MXF muxer, fix wma regressions, fix mid/side stereo buggy output 
zeroing, add generic IIR filter interface with Butterworth lowpass filter 
implementation, fix decoding of ape 3.98 files, do not assign avctx->rc_eq to 
libx264's context and leave the decision to library, fix detection of MPEG4 
in MPEG-PS, support invalid h264 that does not mark IDR with POC=0, fix an 
invalid free in the AVI muxer when an unsupported audio track is added, 
prevent a division by 0 in the g726 decoder, fix round to even for aspect 
ratio correction, add ac3/eac3 support for many formats like mov/mp4/mkv 
etc., add support for the PIX_FMT_RGB32, PIX_FMT_RGB555 and PIX_FMT_RGB565 in 
V4L2, fix alac crash where bits per sample is not set, set block align in 
av_write_header if not set, fix stsd box size for ac3 in mp4, lots of 
matroska fixes (pts, seek etc.)

Modified: 2008/applications/multimedia/ffmpeg/actions.py
=================================================================
--- 2008/applications/multimedia/ffmpeg/actions.py	(original)
+++ 2008/applications/multimedia/ffmpeg/actions.py	Tue Sep  9 14:24:07 2008
@@ -11,7 +11,7 @@
 from pisi.actionsapi import get
 
 WorkDir = "ffmpeg"
-version = "14965"
+version = "15261"
 
 def setup():
     shelltools.export("CFLAGS","%s -DRUNTIME_CPUDETECT" % get.CFLAGS())
@@ -30,7 +30,6 @@
                             --enable-pthreads \
                             --enable-postproc \
                             --enable-x11grab \
-                            --enable-liba52 \
                             --enable-libx264 \
                             --enable-libxvid \
                             --enable-libfaad \
@@ -45,6 +44,7 @@
                             --enable-libtheora \
                             --enable-libgsm \
                             --enable-shared \
+                            --disable-liba52 \
                             --disable-stripping \
                             --disable-static \
                             --disable-debug")

Modified: 2008/applications/multimedia/ffmpeg/pspec.xml
=================================================================
--- 2008/applications/multimedia/ffmpeg/pspec.xml	(original)
+++ 2008/applications/multimedia/ffmpeg/pspec.xml	Tue Sep  9 14:24:07 2008
@@ -12,7 +12,7 @@
         <IsA>app:console</IsA>
         <Summary>A command-line tool to record, convert and stream audio and video</Summary>
         <Description>FFmpeg is a complete solution to record, convert and stream audio and video.</Description>
-        <Archive sha1sum="f3d5be413044537471da9ff47d9c79d8b770f427" type="targz">http://cekirdek.pardus.org.tr/~onur/distfiles/ffmpeg-14965.tar.gz</Archive>
+        <Archive sha1sum="3a037a87aad07b67967c9221962314d1d6461fc0" type="targz">http://cekirdek.pardus.org.tr/~onur/distfiles/ffmpeg-15261.tar.gz</Archive>
         <BuildDependencies>
             <Dependency>faac</Dependency>
             <Dependency versionFrom="2.6">faad2</Dependency>
@@ -29,7 +29,9 @@
             <Dependency>gsm</Dependency>
             <Dependency>amrwb</Dependency>
             <Dependency>amrnb</Dependency>
+            <!-- disabled in favor of internal ac3
             <Dependency versionFrom="0.7.4">a52dec</Dependency>
+            -->
             <Dependency>libnut</Dependency>
             <Dependency>schroedinger</Dependency>
         </BuildDependencies>
@@ -44,20 +46,17 @@
             -->
             <Patch level="1">reenable-imgresample.patch</Patch>
 
+            <Patch>alac_bps.patch</Patch>
+            <Patch>set_block_align.patch</Patch>
+
             <Patch level="1">flac-encoding-issue-526.patch</Patch>
-            <Patch>flv_timestamps_signed.patch</Patch>
             <Patch>h264-sliding_window_cleanup.patch</Patch>
-
-            <Patch>abort-resampler-not16bits.patch</Patch>
-            <Patch>resample-after-conversion-2.patch</Patch>
             <Patch level="1">h264-nalsize.patch</Patch>
             <Patch>put_back_fastmemcopy.patch</Patch>
             <Patch level="1">m1v_in_mov.patch</Patch>
 
             <Patch level="1">support-dts-ac3-tracks-where-the-only-indication-is.patch</Patch>
             <Patch level="1">move-special-handling-of-DVB-AC3-DTS-to-same-place-a.patch</Patch>
-
-            <Patch level="1">eac3-lastbits.patch</Patch>
         </Patches>
     </Source>
 
@@ -78,7 +77,9 @@
             <Dependency>gsm</Dependency>
             <Dependency>amrwb</Dependency>
             <Dependency>amrnb</Dependency>
+            <!-- disabled in favor of internal ac3
             <Dependency versionFrom="0.7.4">a52dec</Dependency>
+            -->
             <Dependency>libnut</Dependency>
             <Dependency>schroedinger</Dependency>
         </RuntimeDependencies>
@@ -93,6 +94,13 @@
     </Package>
 
     <History>
+        <Update release="47">
+            <Date>2008-09-09</Date>
+            <Version>0.4.9_20080909</Version>
+            <Comment>Added MXF muxer, fix wma regressions, fix mid/side stereo buggy output zeroing, add generic IIR filter interface with Butterworth lowpass filter implementation, fix decoding of ape 3.98 files, do not assign avctx->rc_eq to libx264's context and leave the decision to library, fix detection of MPEG4 in MPEG-PS, support invalid h264 that does not mark IDR with POC=0, fix an invalid free in the AVI muxer when an unsupported audio track is added, prevent a division by 0 in the g726 decoder, fix round to even for aspect ratio correction, add ac3/eac3 support for many formats like mov/mp4/mkv etc., add support for the PIX_FMT_RGB32, PIX_FMT_RGB555 and PIX_FMT_RGB565 in V4L2, fix alac crash where bits per sample is not set, set block align in av_write_header if not set, fix stsd box size for ac3 in mp4, lots of matroska fixes (pts, seek etc.)</Comment>
+            <Name>Onur Küçük</Name>
+            <Email>onur at pardus.org.tr</Email>
+        </Update>
         <Update release="46" type="security">
             <Date>2008-08-25</Date>
             <Version>0.4.9_20080825</Version>


Paketler-commits mesaj listesiyle ilgili daha fazla bilgi