summaryrefslogtreecommitdiff
path: root/libavcodec/huffyuv.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-01-23 01:34:56 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-01-23 01:43:00 +0100
commiteaacfc7dd1eaeec7e5e243f1e0ee5e8a7ff845a3 (patch)
tree9160fb7e3db89b6dbee16e902170dcb6681725a1 /libavcodec/huffyuv.c
parent622d463000371467cb0365744f0c1d92b56bed52 (diff)
avcodec/lossless_videodsp: Pass AVCodecContext to init
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r--libavcodec/huffyuv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c
index 8b0dcdcc6e..d6396bacf7 100644
--- a/libavcodec/huffyuv.c
+++ b/libavcodec/huffyuv.c
@@ -81,7 +81,7 @@ av_cold void ff_huffyuv_common_init(AVCodecContext *avctx)
s->flags = avctx->flags;
ff_dsputil_init(&s->dsp, avctx);
- ff_llviddsp_init(&s->llviddsp);
+ ff_llviddsp_init(&s->llviddsp, avctx);
s->width = avctx->width;
s->height = avctx->height;