From 6b82c89562a0985150a966b55b78d558865e8973 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 17 Jul 2013 09:56:01 +0200 Subject: [PATCH] qtdemux: add support for WRAW Fixes https://bugzilla.gnome.org/show_bug.cgi?id=704292 --- gst/isomp4/qtdemux.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gst/isomp4/qtdemux.c b/gst/isomp4/qtdemux.c index 43b7ac3bbe..dcb75b2da3 100644 --- a/gst/isomp4/qtdemux.c +++ b/gst/isomp4/qtdemux.c @@ -9994,6 +9994,10 @@ qtdemux_video_caps (GstQTDemux * qtdemux, QtDemuxStream * stream, caps = gst_caps_new_simple ("video/x-svq", "svqversion", G_TYPE_INT, 1, NULL); break; + case GST_MAKE_FOURCC ('W', 'R', 'A', 'W'): + caps = gst_caps_new_empty_simple ("video/x-raw"); + gst_caps_set_simple (caps, "format", G_TYPE_STRING, "RGB8P", NULL); + break; case GST_MAKE_FOURCC ('r', 'a', 'w', ' '): { guint16 bps;