mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-21 23:03:13 +00:00
avformat/electronicarts: Fixed ea_probe function to accept vp6a videos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8575d960fe
commit
b368428fc0
@ -61,6 +61,7 @@
|
|||||||
#define MV0F_TAG MKTAG('M', 'V', '0', 'F')
|
#define MV0F_TAG MKTAG('M', 'V', '0', 'F')
|
||||||
#define MVIh_TAG MKTAG('M', 'V', 'I', 'h') /* CMV header */
|
#define MVIh_TAG MKTAG('M', 'V', 'I', 'h') /* CMV header */
|
||||||
#define MVIf_TAG MKTAG('M', 'V', 'I', 'f') /* CMV I-frame */
|
#define MVIf_TAG MKTAG('M', 'V', 'I', 'f') /* CMV I-frame */
|
||||||
|
#define AVP6_TAG MKTAG('A', 'V', 'P', '6')
|
||||||
|
|
||||||
typedef struct EaDemuxContext {
|
typedef struct EaDemuxContext {
|
||||||
int big_endian;
|
int big_endian;
|
||||||
@ -458,6 +459,7 @@ static int ea_probe(AVProbeData *p)
|
|||||||
case MPCh_TAG:
|
case MPCh_TAG:
|
||||||
case MVhd_TAG:
|
case MVhd_TAG:
|
||||||
case MVIh_TAG:
|
case MVIh_TAG:
|
||||||
|
case AVP6_TAG:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user