mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 04:15:05 +00:00
convert a if() into a switch() to ease addition of new tags to probe
Originally committed as revision 10843 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ef59bf60c0
commit
39fe9d79ad
@ -227,12 +227,11 @@ static int process_ea_header(AVFormatContext *s) {
|
|||||||
|
|
||||||
static int ea_probe(AVProbeData *p)
|
static int ea_probe(AVProbeData *p)
|
||||||
{
|
{
|
||||||
uint32_t tag;
|
switch (AV_RL32(&p->buf[0])) {
|
||||||
|
case SCHl_TAG:
|
||||||
tag = AV_RL32(&p->buf[0]);
|
case MVhd_TAG:
|
||||||
if (tag == SCHl_TAG || tag == MVhd_TAG)
|
|
||||||
return AVPROBE_SCORE_MAX;
|
return AVPROBE_SCORE_MAX;
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user