Browse Source

avcodec/huffyuvdec: use the correct height field

Fixes Ticket3395

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 12 years ago
parent
commit
469de4f583
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/huffyuvdec.c

+ 1
- 1
libavcodec/huffyuvdec.c View File

@@ -267,7 +267,7 @@ static av_cold int decode_init(AVCodecContext *avctx)

memset(s->vlc, 0, 4 * sizeof(VLC));

s->interlaced = s->height > 288;
s->interlaced = avctx->height > 288;

s->bgr32 = 1;



Loading…
Cancel
Save