summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-12-01 20:42:01 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2004-12-01 20:42:01 +0000
commit9d58a0e106cd9cba2882c6fe1ec2775747ed1493 (patch)
treea77738934287817d198bb9a040da2d50697af092 /gst-libs
parent3e3cca4adfa33fb61e2ddaa6f3346362bc2c6438 (diff)
ext/esd/esdsink.c: Make error actually say something useful (fixes #156798).
Original commit message from CVS: * ext/esd/esdsink.c: (gst_esdsink_chain): Make error actually say something useful (fixes #156798). * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps_with_data), (gst_riff_create_video_template_caps): Add Intel Video 5.0 fourcc (IV50).
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/riff/riff-media.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gst-libs/gst/riff/riff-media.c b/gst-libs/gst/riff/riff-media.c
index 9dbb31da..99aa9a03 100644
--- a/gst-libs/gst/riff/riff-media.c
+++ b/gst-libs/gst/riff/riff-media.c
@@ -297,6 +297,13 @@ gst_riff_create_video_caps_with_data (guint32 codec_fcc,
*codec_name = g_strdup ("Xan Wing Commander 4");
break;
+ case GST_MAKE_FOURCC ('I', 'V', '5', '0'):
+ caps = gst_caps_new_simple ("video/x-intel",
+ "ivversion", G_TYPE_INT, 5, NULL);
+ if (codec_name)
+ *codec_name = g_strdup ("Intel Video 5");
+ break;
+
default:
GST_WARNING ("Unknown video fourcc " GST_FOURCC_FORMAT,
GST_FOURCC_ARGS (codec_fcc));
@@ -584,6 +591,7 @@ gst_riff_create_video_template_caps (void)
GST_MAKE_FOURCC ('R', 'L', 'E', ' '),
GST_MAKE_FOURCC ('D', 'I', 'B', ' '),
GST_MAKE_FOURCC ('X', 'x', 'a', 'n'),
+ GST_MAKE_FOURCC ('I', 'V', '5', '0'),
/* FILL ME */
0
};