mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-14 12:04:11 +00:00
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:
parent
2a4c9ec6aa
commit
50eed1907b
2 changed files with 11 additions and 0 deletions
|
@ -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>
|
||||
|
||||
|
||||
|
|
|
@ -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:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue