From: Edward Hervey Date: Wed, 15 Feb 2006 12:07:57 +0000 (+0000) Subject: gst/typefind/gsttypefindfunctions.c: quicktime movie files can also contain 'uuid... X-Git-Tag: 1.19.3~511^2~12191 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ada63f8ef676be8e2ba8c8552f3f8f9f0a2dbf93;p=platform%2Fupstream%2Fgstreamer.git gst/typefind/gsttypefindfunctions.c: quicktime movie files can also contain 'uuid' atoms. Original commit message from CVS: * gst/typefind/gsttypefindfunctions.c: (qt_type_find): quicktime movie files can also contain 'uuid' atoms. --- diff --git a/ChangeLog b/ChangeLog index e3417f5..f6b7b22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-02-15 Edward Hervey + + * gst/typefind/gsttypefindfunctions.c: (qt_type_find): + quicktime movie files can also contain 'uuid' atoms. + 2006-02-14 Tim-Philipp Müller * gst/audioconvert/plugin.c: (plugin_init): diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 6e1a7d3..ffff18d 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -1223,7 +1223,8 @@ qt_type_find (GstTypeFind * tf, gpointer unused) STRNCMP (&data[4], "PICT", 4) != 0 && STRNCMP (&data[4], "ftyp", 4) != 0 && STRNCMP (&data[4], "free", 4) != 0 && - STRNCMP (&data[4], "skip", 4) != 0) { + STRNCMP (&data[4], "skip", 4) != 0 && + STRNCMP (&data[4], "uuid", 4) != 0) { tip = 0; break; }