mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-27 09:38:17 +00:00
gst-libs/gst/riff/riff-media.c: Add BLZ0 (Blizzard's version of DivX) fourcc.
Original commit message from CVS: * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps_with_data): Add BLZ0 (Blizzard's version of DivX) fourcc.
This commit is contained in:
parent
306de2d87f
commit
50f80de3be
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-12-19 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst-libs/gst/riff/riff-media.c:
|
||||
(gst_riff_create_video_caps_with_data):
|
||||
Add BLZ0 (Blizzard's version of DivX) fourcc.
|
||||
|
||||
2004-12-18 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
|
||||
|
|
|
@ -194,6 +194,13 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
|
|||
*codec_name = g_strdup ("DivX MPEG-4 Version 4");
|
||||
break;
|
||||
|
||||
case GST_MAKE_FOURCC ('B', 'L', 'Z', '0'):
|
||||
caps = gst_caps_new_simple ("video/x-divx",
|
||||
"divxversion", G_TYPE_INT, 4, NULL);
|
||||
if (codec_name)
|
||||
*codec_name = g_strdup ("Blizzard DivX");
|
||||
break;
|
||||
|
||||
case GST_MAKE_FOURCC ('D', 'X', '5', '0'):
|
||||
caps = gst_caps_new_simple ("video/x-divx",
|
||||
"divxversion", G_TYPE_INT, 5, NULL);
|
||||
|
|
Loading…
Reference in a new issue