cinepak: simplify, use FFMIN()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/2/head
Michael Niedermayer 13 years ago
parent 69a501e6a1
commit 111ffa55b7
  1. 3
      libavcodec/cinepak.c

@ -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…
Cancel
Save