summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-09-28 14:31:41 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-09-28 14:31:41 +0000
commitac8d6f3eec79046f895ee46b114da3866e3ac7c0 (patch)
tree33f13e489daeedd1109022a52a7f1af883c50748 /gst
parentee6160c42552bb628028428e3fa495b1bc6d5af8 (diff)
downloadgst-plugins-bad-ac8d6f3eec79046f895ee46b114da3866e3ac7c0.tar.gz
gst-plugins-bad-ac8d6f3eec79046f895ee46b114da3866e3ac7c0.tar.bz2
gst-plugins-bad-ac8d6f3eec79046f895ee46b114da3866e3ac7c0.zip
gst/qtdemux/qtdemux.c: Add support for 'yv12' fourcc.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add support for 'yv12' fourcc.
Diffstat (limited to 'gst')
-rw-r--r--gst/qtdemux/qtdemux.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 2b0e7536..cc60e4b0 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -4232,6 +4232,10 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc,
}
return caps;
}
+ case GST_MAKE_FOURCC ('y', 'v', '1', '2'):
+ _codec ("Raw planar YUV 4:2:0");
+ return gst_caps_from_string ("video/x-raw-yuv, "
+ "format = (fourcc) I420");
case GST_MAKE_FOURCC ('y', 'u', 'v', '2'):
case GST_MAKE_FOURCC ('Y', 'u', 'v', '2'):
_codec ("Raw packed YUV 4:2:2");