mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Slightly improve probe for ea format by checking that it is possible to
guess whether the file is little- or big-endian. Originally committed as revision 19896 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a5083f66c7
commit
892d7e78ef
@ -389,9 +389,13 @@ static int ea_probe(AVProbeData *p)
|
||||
case MPCh_TAG:
|
||||
case MVhd_TAG:
|
||||
case MVIh_TAG:
|
||||
return AVPROBE_SCORE_MAX;
|
||||
break;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
if (AV_RL32(&p->buf[4]) > 0xfffff && AV_RB32(&p->buf[4]) > 0xfffff)
|
||||
return 0;
|
||||
return AVPROBE_SCORE_MAX;
|
||||
}
|
||||
|
||||
static int ea_read_header(AVFormatContext *s,
|
||||
|
Loading…
Reference in New Issue
Block a user