diff options
author | Edward Hervey <bilboed@bilboed.com> | 2006-02-22 09:33:25 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2006-02-22 09:33:25 +0000 |
commit | 7eed67bb6b38180da07ca16e87ce4207cc93bc9d (patch) | |
tree | c945ceb722d4b584933b8fc9b2ac6df4fef07dcf /gst | |
parent | 2730137d28c8ed9933ec0014f0f00fcf5d9f900a (diff) |
gst/qtdemux/qtdemux.c: Add 'dvsd' and 'dv25' to list of possible fourcc values for DV Video.
Original commit message from CVS:
Reviewed by : Edward Hervey <edward@fluendo.com>
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
Add 'dvsd' and 'dv25' to list of possible fourcc values for DV Video.
Add image/png for fourcc 'png '
Diffstat (limited to 'gst')
-rw-r--r-- | gst/qtdemux/qtdemux.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index df9f57b7..b8e469c2 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -3027,6 +3027,9 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc, const guint8 * stsd_data, const gchar ** codec_name) { switch (fourcc) { + case GST_MAKE_FOURCC ('p', 'n', 'g', ' '): + _codec ("PNG still images"); + return gst_caps_from_string ("image/png"); case GST_MAKE_FOURCC ('j', 'p', 'e', 'g'): _codec ("JPEG still images"); return gst_caps_from_string ("image/jpeg"); @@ -3104,6 +3107,8 @@ qtdemux_video_caps (GstQTDemux * qtdemux, guint32 fourcc, return gst_caps_from_string ("video/x-indeo, indeoversion=(int)3"); case GST_MAKE_FOURCC ('d', 'v', 'c', 'p'): case GST_MAKE_FOURCC ('d', 'v', 'c', ' '): + case GST_MAKE_FOURCC ('d', 'v', 's', 'd'): + case GST_MAKE_FOURCC ('d', 'v', '2', '5'): _codec ("DV Video"); return gst_caps_from_string ("video/x-dv, systemstream=(boolean)false"); case GST_MAKE_FOURCC ('s', 'm', 'c', ' '): |