mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
cinepak: simplify, use FFMIN()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
69a501e6a1
commit
111ffa55b7
@ -357,8 +357,7 @@ static int cinepak_decode (CinepakContext *s)
|
||||
|
||||
s->data += 10 + s->sega_film_skip_bytes;
|
||||
|
||||
if (num_strips > MAX_STRIPS)
|
||||
num_strips = MAX_STRIPS;
|
||||
num_strips = FFMIN(num_strips, MAX_STRIPS);
|
||||
|
||||
s->frame.key_frame = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user