mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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:
parent
377e2be9f3
commit
2349787986
2 changed files with 8 additions and 1 deletions
|
@ -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>
|
||||
|
||||
* ext/theora/theoradec.c:
|
||||
|
|
|
@ -1487,7 +1487,8 @@ qt_type_find (GstTypeFind * tf, gpointer unused)
|
|||
/* other box/atom types, apparently quicktime specific */
|
||||
else if (STRNCMP (&data[4], "pnot", 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;
|
||||
break;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue