diff options
author | Edward Hervey <bilboed@bilboed.com> | 2008-08-31 11:49:06 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2008-08-31 11:49:06 +0000 |
commit | 1aaa739edaa560f37f13a00bc28555ca6a71b394 (patch) | |
tree | 1ca28359d44fa13275b222da6b05511440ce93de | |
parent | d16582feb6d68839797aa30921b15db1723ed817 (diff) | |
download | gstreamer-1aaa739edaa560f37f13a00bc28555ca6a71b394.tar.gz |
ffmpegrev: Adjust time of swscale checkout to ffmpeg revision being used.
Original commit message from CVS:
* ffmpegrev:
Adjust time of swscale checkout to ffmpeg revision being used.
* gst-libs/ext/Makefile.am:
Fix make distcheck
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ffmpegrev | 2 | ||||
-rw-r--r-- | gst-libs/ext/Makefile.am | 4 |
3 files changed, 10 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2008-08-31 Edward Hervey <edward.hervey@collabora.co.uk> + + * ffmpegrev: + Adjust time of swscale checkout to ffmpeg revision being used. + * gst-libs/ext/Makefile.am: + Fix make distcheck + 2008-08-29 Edward Hervey <edward.hervey@collabora.co.uk> * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_finalize), @@ -5,4 +5,4 @@ FFMPEG_SVN=svn://svn.mplayerhq.hu/ffmpeg/trunk # out an old ffmpeg does not check out a corresponding libswscale. # Keep the swscale checkout manually synchronized, then. Update this # when you update FFMPEG_REVISION. -FFMPEG_EXTERNALS_UPDATE="cd $FFMPEG_CO_DIR/libswscale && svn up -r '{2008-07-23 00:07:21 +0200}'" +FFMPEG_EXTERNALS_UPDATE="cd $FFMPEG_CO_DIR/libswscale && svn up -r '{2008-08-28 00:07:21 +0200}'" diff --git a/gst-libs/ext/Makefile.am b/gst-libs/ext/Makefile.am index cbc8400def..5036878a7b 100644 --- a/gst-libs/ext/Makefile.am +++ b/gst-libs/ext/Makefile.am @@ -11,7 +11,7 @@ SUBDIRS = DIST_SUBDIRS = ffmpeg TMP_DIST_DIR=ffmpeg-dist -DIST_DIR=$(TMP_DIST_DIR)/.ffmpeg/ +DIST_DIR=$(TMP_DIST_DIR)/.ffmpeg EXTRA_DIST=Makefile.am all-local: @@ -40,7 +40,7 @@ dist-local: if [ `ls -d $(TMP_DIST_DIR)/$$d*/ | wc -w` != "" ]; \ then for id in `cd $(TMP_DIST_DIR)/$$d && ls -d */`; \ do mkdir $(DIST_DIR)/$$d$$id; \ - cp $(TMP_DIST_DIR)/$$d$$id/*.c $(TMP_DIST_DIR)/$$d$$id/*.h $(DIST_DIR)/$$d$$id; \ + cp $(TMP_DIST_DIR)/$$d$$id/*.c $(TMP_DIST_DIR)/$$d$$id/*.h $(TMP_DIST_DIR)/$$d$$id/*.asm $(DIST_DIR)/$$d$$id; \ done \ fi \ done |