gst/qtdemux/qtdemux.c: Handle more H263 variants.
authorWim Taymans <wim.taymans@gmail.com>
Thu, 7 Dec 2006 11:35:41 +0000 (11:35 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Thu, 7 Dec 2006 11:35:41 +0000 (11:35 +0000)
Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration),
(gst_qtdemux_handle_src_query), (qtdemux_parse_trak),
(qtdemux_video_caps):
Handle more H263 variants.

gst/qtdemux/qtdemux.c

index e174fd950ae76e81f3f6277c8bd15ac318ad1903..88235be2181649095f08539763655b9ee368b14b 100644 (file)
@@ -4358,7 +4358,9 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc,
       _codec ("GIF still images");
       return gst_caps_from_string ("image/gif");
     case GST_MAKE_FOURCC ('h', '2', '6', '3'):
+    case GST_MAKE_FOURCC ('H', '2', '6', '3'):
     case GST_MAKE_FOURCC ('s', '2', '6', '3'):
+    case GST_MAKE_FOURCC ('U', '2', '6', '3'):
       _codec ("H.263");
       /* ffmpeg uses the height/width props, don't know why */
       return gst_caps_from_string ("video/x-h263");