mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
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:
parent
f3def77907
commit
ada63f8ef6
2 changed files with 7 additions and 1 deletions
|
@ -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):
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue