diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-03-05 17:53:33 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-03-05 17:53:33 +0000 |
commit | 1d98dca328c437625b2d33cd2cf46af2671421b3 (patch) | |
tree | a3b6dd3c02a6e575a123b05b7c77d97378d1e861 | |
parent | dfb476cbe0de25f3dde7c46d0917b37ac74b0a2e (diff) | |
download | ffmpeg-1d98dca328c437625b2d33cd2cf46af2671421b3.tar.gz |
10l
Originally committed as revision 1625 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/huffyuv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c index eb9e063bab..909c2a1537 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -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; |