Browse code

avformat/electronicarts: Fixed ea_probe function to accept vp6a videos

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Stephan Vedder authored on 2015/06/23 03:58:41
Showing 1 changed files
... ...
@@ -61,6 +61,7 @@
61 61
 #define MV0F_TAG MKTAG('M', 'V', '0', 'F')
62 62
 #define MVIh_TAG MKTAG('M', 'V', 'I', 'h')  /* CMV header */
63 63
 #define MVIf_TAG MKTAG('M', 'V', 'I', 'f')  /* CMV I-frame */
64
+#define AVP6_TAG MKTAG('A', 'V', 'P', '6')
64 65
 
65 66
 typedef struct EaDemuxContext {
66 67
     int big_endian;
... ...
@@ -458,6 +459,7 @@ static int ea_probe(AVProbeData *p)
458 458
     case MPCh_TAG:
459 459
     case MVhd_TAG:
460 460
     case MVIh_TAG:
461
+    case AVP6_TAG:
461 462
         break;
462 463
     default:
463 464
         return 0;