[FFmpeg-cvslog] avformat/electronicarts: Fixed ea_probe function to accept vp6a videos

Stephan Vedder git at videolan.org
Tue Jun 23 03:36:03 CEST 2015


ffmpeg | branch: master | Stephan Vedder <stephan.vedder at gmail.com> | Mon Jun 22 20:58:41 2015 +0200| [b368428fc0b54762944fb7f7dae8093114c595b1] | committer: Michael Niedermayer

avformat/electronicarts: Fixed ea_probe function to accept vp6a videos

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

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b368428fc0b54762944fb7f7dae8093114c595b1
---

 libavformat/electronicarts.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c
index d6a396b..d999a0b 100644
--- a/libavformat/electronicarts.c
+++ b/libavformat/electronicarts.c
@@ -61,6 +61,7 @@
 #define MV0F_TAG MKTAG('M', 'V', '0', 'F')
 #define MVIh_TAG MKTAG('M', 'V', 'I', 'h')  /* CMV header */
 #define MVIf_TAG MKTAG('M', 'V', 'I', 'f')  /* CMV I-frame */
+#define AVP6_TAG MKTAG('A', 'V', 'P', '6')
 
 typedef struct EaDemuxContext {
     int big_endian;
@@ -458,6 +459,7 @@ static int ea_probe(AVProbeData *p)
     case MPCh_TAG:
     case MVhd_TAG:
     case MVIh_TAG:
+    case AVP6_TAG:
         break;
     default:
         return 0;



More information about the ffmpeg-cvslog mailing list