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.
This commit is contained in:
Edward Hervey 2006-02-15 12:07:57 +00:00
parent f3def77907
commit ada63f8ef6
2 changed files with 7 additions and 1 deletions

View file

@ -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> 2006-02-14 Tim-Philipp Müller <tim at centricular dot net>
* gst/audioconvert/plugin.c: (plugin_init): * gst/audioconvert/plugin.c: (plugin_init):

View file

@ -1223,7 +1223,8 @@ qt_type_find (GstTypeFind * tf, gpointer unused)
STRNCMP (&data[4], "PICT", 4) != 0 && STRNCMP (&data[4], "PICT", 4) != 0 &&
STRNCMP (&data[4], "ftyp", 4) != 0 && STRNCMP (&data[4], "ftyp", 4) != 0 &&
STRNCMP (&data[4], "free", 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; tip = 0;
break; break;
} }