Browse Source

10l

Originally committed as revision 1625 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 23 years ago
parent
commit
1d98dca328
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/huffyuv.c

+ 2
- 2
libavcodec/huffyuv.c View File

@@ -378,7 +378,7 @@ static int decode_init(AVCodecContext *avctx)
s->avctx= avctx;
s->flags= avctx->flags;
dsputil_init(&s->dsp, avctx->dsp_mask);
dsputil_init(&s->dsp, avctx);
width= s->width= avctx->width;
height= s->height= avctx->height;
@@ -499,7 +499,7 @@ static int encode_init(AVCodecContext *avctx)
s->avctx= avctx;
s->flags= avctx->flags;
dsputil_init(&s->dsp, avctx->dsp_mask);
dsputil_init(&s->dsp, avctx);
width= s->width= avctx->width;
height= s->height= avctx->height;


Loading…
Cancel
Save