From ada63f8ef676be8e2ba8c8552f3f8f9f0a2dbf93 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 15 Feb 2006 12:07:57 +0000 Subject: [PATCH] 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. --- ChangeLog | 5 +++++ gst/typefind/gsttypefindfunctions.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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; } -- 2.7.4