From 1bb46099653a2493ca0a8572d58f7e6027ebfdb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 22 Apr 2006 21:25:41 +0000 Subject: [PATCH] gst/typefind/gsttypefindfunctions.c: fix typefinding on some ISO files. Fixes #339212. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Original commit message from CVS: Patch by: Tim-Philipp Müller * gst/typefind/gsttypefindfunctions.c: (qt_type_find): fix typefinding on some ISO files. Fixes #339212. --- ChangeLog | 7 +++++++ gst/typefind/gsttypefindfunctions.c | 1 + 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 659512c8f1..741773fcb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-04-22 Thomas Vander Stichele + + Patch by: Tim-Philipp Müller + + * gst/typefind/gsttypefindfunctions.c: (qt_type_find): + fix typefinding on some ISO files. Fixes #339212. + 2006-04-22 Thomas Vander Stichele Patch by: Tim-Philipp Müller diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index eec4c49958..c2f2e8a662 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -1453,6 +1453,7 @@ qt_type_find (GstTypeFind * tf, gpointer unused) STRNCMP (&data[4], "mdat", 4) == 0 || STRNCMP (&data[4], "ftyp", 4) == 0 || STRNCMP (&data[4], "free", 4) == 0 || + STRNCMP (&data[4], "uuid", 4) == 0 || STRNCMP (&data[4], "skip", 4) == 0) { if (tip == 0) { tip = GST_TYPE_FIND_LIKELY;