From 23497879867be9445ee98ae26f296ab4899f536c Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 24 May 2006 08:34:53 +0000 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ gst/typefind/gsttypefindfunctions.c | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 31580d68c6..c07427adaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-05-24 Edward Hervey + + * 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 * ext/theora/theoradec.c: diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 89f2545c33..f6834aab9a 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.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 {