gst/typefind/gsttypefindfunctions.c: Added the 'prfl' atom type which MQV (no, it's not a typo) files contain.

Original commit message from CVS:
* gst/typefind/gsttypefindfunctions.c: (qt_type_find):
Added the 'prfl' atom type which MQV (no, it's not a typo) files contain.
Else they play perfectly fine with qtdemux.
This commit is contained in:
Edward Hervey 2006-05-24 08:34:53 +00:00
parent 377e2be9f3
commit 2349787986
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-05-24 Edward Hervey <edward@fluendo.com>
* gst/typefind/gsttypefindfunctions.c: (qt_type_find):
Added the 'prfl' atom type which MQV (no, it's not a typo) files contain.
Else they play perfectly fine with qtdemux.
2006-05-23 Stefan Kost <ensonic@users.sf.net> 2006-05-23 Stefan Kost <ensonic@users.sf.net>
* ext/theora/theoradec.c: * ext/theora/theoradec.c:

View file

@ -1487,7 +1487,8 @@ qt_type_find (GstTypeFind * tf, gpointer unused)
/* other box/atom types, apparently quicktime specific */ /* other box/atom types, apparently quicktime specific */
else if (STRNCMP (&data[4], "pnot", 4) == 0 || else if (STRNCMP (&data[4], "pnot", 4) == 0 ||
STRNCMP (&data[4], "PICT", 4) == 0 || STRNCMP (&data[4], "PICT", 4) == 0 ||
STRNCMP (&data[4], "wide", 4) == 0) { STRNCMP (&data[4], "wide", 4) == 0 ||
STRNCMP (&data[4], "prfl", 4) == 0) {
tip = GST_TYPE_FIND_MAXIMUM; tip = GST_TYPE_FIND_MAXIMUM;
break; break;
} else { } else {