diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-08-24 12:30:15 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-08-26 11:50:22 +0200 |
commit | 721d57e608dc4fd6c86f27c5ae76ef559d646220 (patch) | |
tree | c1b7f4ac6bf50265acdd652499489f148a612b88 /libavcodec/vp56.c | |
parent | 3fd22538bc0e0de84b31335266b4b1577d3d609e (diff) | |
download | ffmpeg-721d57e608dc4fd6c86f27c5ae76ef559d646220.tar.gz |
vp56: Separate VP5 and VP6 dsp initialization
VP5 has no arch-specific optimizations (nor will it get some in the
future), so it makes no sense to try to share dsp init code with VP6.
Diffstat (limited to 'libavcodec/vp56.c')
-rw-r--r-- | libavcodec/vp56.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c index 2f1de5a5a0..39d82e9c15 100644 --- a/libavcodec/vp56.c +++ b/libavcodec/vp56.c @@ -663,7 +663,6 @@ av_cold int ff_vp56_init(AVCodecContext *avctx, int flip, int has_alpha) ff_hpeldsp_init(&s->hdsp, avctx->flags); ff_videodsp_init(&s->vdsp, 8); ff_vp3dsp_init(&s->vp3dsp, avctx->flags); - ff_vp56dsp_init(&s->vp56dsp, avctx->codec->id); for (i = 0; i < 64; i++) { #define TRANSPOSE(x) (x >> 3) | ((x & 7) << 3) s->idct_scantable[i] = TRANSPOSE(ff_zigzag_direct[i]); |