diff options
author | Diego Biurrun | 2014-01-24 11:55:16 +0100 |
---|---|---|
committer | Diego Biurrun | 2014-06-30 07:58:46 -0700 |
commit | e3fcb14347466095839c2a3c47ebecff02da891e (patch) | |
tree | 38fbcef2c592faae3610887dbda3ab333181d1dc /libavcodec/asv.c | |
parent | adcb8392c9b185fd8a91a95fa256d15ab1432a30 (diff) |
dsputil: Split off IDCT bits into their own context
Diffstat (limited to 'libavcodec/asv.c')
-rw-r--r-- | libavcodec/asv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/asv.c b/libavcodec/asv.c index dba9e840c7..71c5e5f5b8 100644 --- a/libavcodec/asv.c +++ b/libavcodec/asv.c @@ -84,7 +84,6 @@ av_cold void ff_asv_common_init(AVCodecContext *avctx) { ASV1Context * const a = avctx->priv_data; ff_bswapdsp_init(&a->bbdsp); - ff_dsputil_init(&a->dsp, avctx); a->mb_width = (avctx->width + 15) / 16; a->mb_height = (avctx->height + 15) / 16; |