riff: add support for 2vuy

It is the apple alternative for Microsofts UYVY.
(http://ntta.szm.com/Tutors/FourCC.htm)
Only use the UYVY for the caps to enable support in other
gstreamer elements.

https://bugzilla.gnome.org/show_bug.cgi?id=627924
This commit is contained in:
Thijs Vermeir 2010-08-25 12:19:05 +02:00 committed by Sebastian Dröge
parent 93b2924485
commit 3a04b08437

View file

@ -128,8 +128,10 @@ gst_riff_create_video_caps (guint32 codec_fcc,
break; break;
case GST_MAKE_FOURCC ('U', 'Y', 'V', 'Y'): case GST_MAKE_FOURCC ('U', 'Y', 'V', 'Y'):
case GST_MAKE_FOURCC ('2', 'v', 'u', 'y'):
caps = gst_caps_new_simple ("video/x-raw-yuv", caps = gst_caps_new_simple ("video/x-raw-yuv",
"format", GST_TYPE_FOURCC, codec_fcc, NULL); "format", GST_TYPE_FOURCC, GST_MAKE_FOURCC ('U', 'Y', 'V', 'Y'),
NULL);
if (codec_name) if (codec_name)
*codec_name = g_strdup ("Uncompressed packed YUV 4:2:2"); *codec_name = g_strdup ("Uncompressed packed YUV 4:2:2");
break; break;