From 50eed1907b957d3a1e449e410941ce554af58bda Mon Sep 17 00:00:00 2001 From: Jonathan Matthew Date: Sun, 14 Sep 2008 11:32:15 +0000 Subject: [PATCH] gst/qtdemux/qtdemux.c: Add mapping for 'tiff' => image/tiff Original commit message from CVS: Patch by: Jonathan Matthew * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): Add mapping for 'tiff' => image/tiff Fixes #552213 --- ChangeLog | 7 +++++++ gst/qtdemux/qtdemux.c | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index dfd5e8bf66..33dec66210 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-09-14 Edward Hervey + + Patch by: Jonathan Matthew + * gst/qtdemux/qtdemux.c: (qtdemux_video_caps): + Add mapping for 'tiff' => image/tiff + Fixes #552213 + 2008-09-11 Tim-Philipp Müller diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index cb43553568..63ba038ed5 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -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: { -- 2.34.1