mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gst/qtdemux/qtdemux.c: Handle more H263 variants.
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.
This commit is contained in:
parent
8ea43a2434
commit
499eaaf9c1
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2006-12-07 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* 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 <thaytan@mad.scientist.com>
|
2006-12-06 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* ext/jack/.cvsignore:
|
* ext/jack/.cvsignore:
|
||||||
|
|
|
@ -4358,7 +4358,9 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc,
|
||||||
_codec ("GIF still images");
|
_codec ("GIF still images");
|
||||||
return gst_caps_from_string ("image/gif");
|
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 ('H', '2', '6', '3'):
|
||||||
case GST_MAKE_FOURCC ('s', '2', '6', '3'):
|
case GST_MAKE_FOURCC ('s', '2', '6', '3'):
|
||||||
|
case GST_MAKE_FOURCC ('U', '2', '6', '3'):
|
||||||
_codec ("H.263");
|
_codec ("H.263");
|
||||||
/* ffmpeg uses the height/width props, don't know why */
|
/* ffmpeg uses the height/width props, don't know why */
|
||||||
return gst_caps_from_string ("video/x-h263");
|
return gst_caps_from_string ("video/x-h263");
|
||||||
|
|
Loading…
Reference in a new issue