mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst-libs/gst/riff/riff-media.c: Add div[3456] as fourccs for DivX 3 (fixes #140137).
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps_with_data): Add div[3456] as fourccs for DivX 3 (fixes #140137).
This commit is contained in:
parent
e838d0c446
commit
a0b2c3fd4d
2 changed files with 10 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c:
|
||||
(gst_riff_create_video_caps_with_data):
|
||||
Add div[3456] as fourccs for DivX 3 (fixes #140137).
|
||||
|
||||
2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
reviewed by: <delete if not using a buddy>
|
||||
|
|
|
@ -139,9 +139,13 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
|
|||
break;
|
||||
|
||||
case GST_MAKE_FOURCC ('D', 'I', 'V', '3'):
|
||||
case GST_MAKE_FOURCC ('d', 'i', 'v', '3'):
|
||||
case GST_MAKE_FOURCC ('D', 'I', 'V', '4'):
|
||||
case GST_MAKE_FOURCC ('d', 'i', 'v', '4'):
|
||||
case GST_MAKE_FOURCC ('D', 'I', 'V', '5'):
|
||||
case GST_MAKE_FOURCC ('d', 'i', 'v', '5'):
|
||||
case GST_MAKE_FOURCC ('D', 'I', 'V', '6'):
|
||||
case GST_MAKE_FOURCC ('d', 'i', 'v', '6'):
|
||||
caps = gst_caps_new_simple ("video/x-divx",
|
||||
"divxversion", G_TYPE_INT, 3, NULL);
|
||||
if (codec_name)
|
||||
|
|
Loading…
Reference in a new issue