diff options
author | James Almer <jamrial@gmail.com> | 2017-01-07 21:10:46 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-01-12 22:53:04 -0300 |
commit | 30c1f27299d3fc2b0c0858c003066cc5e36a28af (patch) | |
tree | 594a5c933605cd1386a66d5e2b595394e8991fab /libavcodec/huffyuvdec.c | |
parent | 5ac1dd8e231987c022a860c6b1961b038a84b613 (diff) | |
download | ffmpeg-30c1f27299d3fc2b0c0858c003066cc5e36a28af.tar.gz |
huffyuvencdsp: move functions only used by huffyuv from lossless_videodsp
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/huffyuvdec.c')
-rw-r--r-- | libavcodec/huffyuvdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/huffyuvdec.c b/libavcodec/huffyuvdec.c index 1b4112ce2f..d0682040b3 100644 --- a/libavcodec/huffyuvdec.c +++ b/libavcodec/huffyuvdec.c @@ -298,6 +298,7 @@ static av_cold int decode_init(AVCodecContext *avctx) return ret; ff_huffyuvdsp_init(&s->hdsp); + ff_llviddsp_init(&s->llviddsp, avctx); memset(s->vlc, 0, 4 * sizeof(VLC)); s->interlaced = avctx->height > 288; |