diff --git a/ChangeLog b/ChangeLog index 94aee81943..9ae7d3f65b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-12-07 Wim Taymans + + * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_duration), + (gst_qtdemux_handle_src_query), (qtdemux_parse_trak), + (qtdemux_video_caps): + Handle more H263 variants. + 2006-12-06 Jan Schmidt * ext/jack/.cvsignore: diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index e174fd950a..88235be218 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -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");