mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
ext/ffmpeg/gstffmpegcodecmap.c: Add cinepak format. (bug #136470)
Original commit message from CVS: * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps): Add cinepak format. (bug #136470)
This commit is contained in:
parent
926a3caea2
commit
dde8754a27
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-03-07 David Schleef <ds@schleef.org>
|
||||
|
||||
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
|
||||
Add cinepak format. (bug #136470)
|
||||
|
||||
2004-03-05 David Schleef <ds@schleef.org>
|
||||
|
||||
* configure.ac: Call ffmpeg's configure with --disable-v4l,
|
||||
|
|
|
@ -395,6 +395,10 @@ gst_ffmpeg_codecid_to_caps (enum CodecID codec_id,
|
|||
NULL);
|
||||
break;
|
||||
|
||||
case CODEC_ID_CINEPAK:
|
||||
caps = GST_FF_VID_CAPS_NEW ("video/x-cinepak", NULL);
|
||||
break;
|
||||
|
||||
default:
|
||||
/* .. */
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue