mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
gst/qtdemux/qtdemux.c: Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
This commit is contained in:
parent
425eb1c601
commit
8e316c0023
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-07-24 Edward Hervey <bilboed@bilboed.com>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
|
||||
Add codec mapping for '2vuy' (Raw YUV produced by FCP) and 'divx'.
|
||||
|
||||
2007-07-24 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* ext/wavpack/gstwavpackdec.c: (gst_wavpack_dec_chain):
|
||||
|
|
|
@ -3925,6 +3925,11 @@ qtdemux_video_caps (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
|||
caps = gst_caps_from_string ("video/x-raw-yuv, "
|
||||
"format = (fourcc) YUY2");
|
||||
break;
|
||||
case GST_MAKE_FOURCC ('2', 'v', 'u', 'y'):
|
||||
_codec ("Raw packed YUV 4:2:0");
|
||||
caps = gst_caps_from_string ("video/x-raw-yuv, "
|
||||
"format = (fourcc) UYVY");
|
||||
break;
|
||||
case GST_MAKE_FOURCC ('m', 'p', 'e', 'g'):
|
||||
_codec ("MPEG-1 video");
|
||||
caps = gst_caps_from_string ("video/mpeg, "
|
||||
|
@ -3962,6 +3967,7 @@ qtdemux_video_caps (GstQTDemux * qtdemux, QtDemuxStream * stream,
|
|||
caps = gst_caps_from_string ("video/x-divx," "divxversion= (int) 3");
|
||||
break;
|
||||
case GST_MAKE_FOURCC ('D', 'I', 'V', 'X'):
|
||||
case GST_MAKE_FOURCC ('d', 'i', 'v', 'x'):
|
||||
_codec ("DivX 4");
|
||||
caps = gst_caps_from_string ("video/x-divx," "divxversion= (int) 4");
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue