mirror of https://git.ffmpeg.org/ffmpeg.git
10l
Originally committed as revision 1625 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dfb476cbe0
commit
1d98dca328
|
@ -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…
Reference in New Issue