From 1f78c719cb1e50a69d0732d0329ba4729640c89c Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Sun, 19 Dec 2004 11:10:32 +0000 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ gst-libs/gst/riff/riff-media.c | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4060ae1..731ef6d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-12-19 Ronald S. Bultje + + * 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 * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another diff --git a/gst-libs/gst/riff/riff-media.c b/gst-libs/gst/riff/riff-media.c index e46d4f6..4adb157 100644 --- a/gst-libs/gst/riff/riff-media.c +++ b/gst-libs/gst/riff/riff-media.c @@ -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); -- 2.7.4