gst/typefind/gsttypefindfunctions.c: quicktime movie files can also contain 'uuid...
authorEdward Hervey <bilboed@bilboed.com>
Wed, 15 Feb 2006 12:07:57 +0000 (12:07 +0000)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 15 Feb 2006 12:07:57 +0000 (12:07 +0000)
Original commit message from CVS:
* gst/typefind/gsttypefindfunctions.c: (qt_type_find):
quicktime movie files can also contain 'uuid' atoms.

ChangeLog
gst/typefind/gsttypefindfunctions.c

index e3417f5..f6b7b22 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-15  Edward Hervey  <edward@fluendo.com>
+
+       * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
+       quicktime movie files can also contain 'uuid' atoms.
+
 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
 
        * gst/audioconvert/plugin.c: (plugin_init):
index 6e1a7d3..ffff18d 100644 (file)
@@ -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;
     }