gst/qtdemux/qtdemux.c: Add mapping for 'tiff' => image/tiff

Original commit message from CVS:
Patch by: Jonathan Matthew <notverysmart@gmail.com>
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
Add mapping for 'tiff' => image/tiff
Fixes #552213
This commit is contained in:
Jonathan Matthew 2008-09-14 11:32:15 +00:00 committed by Edward Hervey
parent 2a4c9ec6aa
commit 50eed1907b
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,10 @@
2008-09-14 Edward Hervey <edward.hervey@collabora.co.uk>
Patch by: Jonathan Matthew <notverysmart@gmail.com>
* gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
Add mapping for 'tiff' => image/tiff
Fixes #552213
2008-09-11 Tim-Philipp Müller <tim.muller at collabora co uk>

View file

@ -4750,6 +4750,10 @@ qtdemux_video_caps (GstQTDemux * qtdemux, QtDemuxStream * stream,
_codec ("Dirac");
caps = gst_caps_from_string ("video/x-dirac");
break;
case GST_MAKE_FOURCC ('t', 'i', 'f', 'f'):
_codec ("TIFF still images");
caps = gst_caps_from_string ("image/tiff");
break;
case GST_MAKE_FOURCC ('k', 'p', 'c', 'd'):
default:
{