diff options
author | Edward Hervey <bilboed@bilboed.com> | 2007-12-17 09:40:29 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2007-12-17 09:40:29 +0000 |
commit | 4807d901105876bc94a6303f7a076a506359ce7e (patch) | |
tree | 782f42327ae0d8099eb4961cdea678e7a92d6d7e | |
parent | eb58e4e4a757e610ee4ce7de1f49c51cf1d349bf (diff) |
autogen.sh: Fix call to ffmpegrev
Original commit message from CVS:
* autogen.sh:
Fix call to ffmpegrev
* configure.ac:
Re-apply -fPIC extra-cflag for ffmpeg while removing support for the
flac encoder which is currently broken for x86/32bits with -fPIC.
* ffmpegrev:
Switch to latest upstream revision so we can have the split-up for
flac mmx optimizations.
-rw-r--r-- | ChangeLog | 11 | ||||
-rwxr-xr-x | autogen.sh | 5 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | ffmpegrev | 4 |
5 files changed, 15 insertions, 8 deletions
@@ -1,3 +1,14 @@ +2007-12-17 Edward Hervey <edward.hervey@collabora.co.uk> + + * autogen.sh: + Fix call to ffmpegrev + * configure.ac: + Re-apply -fPIC extra-cflag for ffmpeg while removing support for the + flac encoder which is currently broken for x86/32bits with -fPIC. + * ffmpegrev: + Switch to latest upstream revision so we can have the split-up for + flac mmx optimizations. + 2007-12-15 Sebastian Dröge <slomo@circular-chaos.org> Based on a patch by: @@ -6,10 +6,7 @@ package=gst-ffmpeg srcfile=configure.ac # FFMPEG specific properties -. ffmpegrev - -# ffmpeg revisions that work: 6315, 10844, 10876, 10910, 10932, 10939 - +. ./ffmpegrev # a quick cvs co if necessary to alleviate the pain - may remove this # when developers get a clue ;) diff --git a/common b/common -Subproject ea5f2cfab1a164a5d285fe745343cbe0a476a90 +Subproject a00d4c1966aab517c2694c61d580489ebcbce44 diff --git a/configure.ac b/configure.ac index d85504c..a6fc72d 100644 --- a/configure.ac +++ b/configure.ac @@ -270,8 +270,7 @@ else FFMPEG_SUBDIRS=gst-libs AC_DEFINE(HAVE_AVI_H) AC_DEFINE([FFMPEG_SOURCE], ["local snapshot"], [Describes where the FFmpeg libraries come from.]) - ac_configure_args="$ac_configure_args --disable-vhook --disable-ffserver --disable-ffplay --enable-pp --enable-gpl --enable-static --disable-shared" # --extra-cflags=-fPIC" - # FIXME : the -fPIC cflag is required when compiling on x86_64 apparently :( + ac_configure_args="$ac_configure_args --disable-vhook --disable-ffserver --disable-ffplay --enable-pp --enable-gpl --enable-static --disable-shared --disable-encoder=flac --disable-cavs --extra-cflags=-fPIC" AC_SUBST(FFMPEG_CO_DIR) AC_SUBST(FFMPEG_SVN) AC_SUBST(FFMPEG_REVISION) @@ -1,4 +1,4 @@ # 6315, 10844, 10876, 10910, 10932, 10939 -FFMPEG_REVISION=11109 +FFMPEG_REVISION=11247 FFMPEG_CO_DIR=gst-libs/ext/ffmpeg -FFMPEG_SVN=svn://svn.mplayerhq.hu/ffmpeg/trunk
\ No newline at end of file +FFMPEG_SVN=svn://svn.mplayerhq.hu/ffmpeg/trunk |