mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
libavformat/mpegvideodec: add {} to complex ifs
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
fefe9bd782
commit
b8a64d69a9
@ -52,9 +52,10 @@ static int mpegvideo_probe(AVProbeData *p)
|
|||||||
else if((code & 0x1e0) == AUDIO_ID) apes++;
|
else if((code & 0x1e0) == AUDIO_ID) apes++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !apes && !res)
|
if(seq && seq*9<=pic*10 && pic*9<=slice*10 && !pspack && !apes && !res) {
|
||||||
if(vpes) return AVPROBE_SCORE_MAX/8;
|
if(vpes) return AVPROBE_SCORE_MAX/8;
|
||||||
else return pic>1 ? AVPROBE_SCORE_MAX/2+1 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
|
else return pic>1 ? AVPROBE_SCORE_MAX/2+1 : AVPROBE_SCORE_MAX/4; // +1 for .mpg
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user