mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-01 01:33:52 +00:00
ffmpegrev: Updating ffmpeg SVN revision to r16304 and update to the corresponding swscale snapshot.
Original commit message from CVS: * ffmpegrev: Updating ffmpeg SVN revision to r16304 and update to the corresponding swscale snapshot. * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_codecid): Enable the Real Video 3.0 decoder.
This commit is contained in:
parent
3d089f4862
commit
01c49178c0
4 changed files with 27 additions and 16 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-12-24 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
* ffmpegrev:
|
||||
Updating ffmpeg SVN revision to r16304 and update to the corresponding
|
||||
swscale snapshot.
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_codecid):
|
||||
Enable the Real Video 3.0 decoder.
|
||||
|
||||
2008-12-17 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ff_aud_caps_new),
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 2c4d28a75c26e572b94a967901254caff83d85c4
|
||||
Subproject commit 5dc8ae302733ce1aae5b1aaa613ce77a8ae4b3d9
|
|
@ -2815,6 +2815,9 @@ gst_ffmpeg_caps_to_codecid (const GstCaps * caps, AVCodecContext * context)
|
|||
case 2:
|
||||
id = CODEC_ID_RV20;
|
||||
break;
|
||||
case 3:
|
||||
id = CODEC_ID_RV30;
|
||||
break;
|
||||
case 4:
|
||||
id = CODEC_ID_RV40;
|
||||
break;
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
FFMPEG_REVISION=16086
|
||||
FFMPEG_REVISION=16304
|
||||
FFMPEG_CO_DIR=gst-libs/ext/ffmpeg
|
||||
FFMPEG_SVN=svn://svn.mplayerhq.hu/ffmpeg/trunk
|
||||
FFMPEG_SVN=svn://svn.ffmpeg.org/ffmpeg/trunk
|
||||
# Because ffmpeg checks out libswscale via an svn:externals, checking
|
||||
# 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-12-13 07:35:00 +0100}'"
|
||||
FFMPEG_EXTERNALS_UPDATE="cd $FFMPEG_CO_DIR/libswscale && svn up -r '{2008-12-24 09:04:00 +0100}'"
|
||||
|
|
Loading…
Reference in a new issue