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/vp5.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/vp5.c')
-rw-r--r-- | libavcodec/vp5.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp5.c b/libavcodec/vp5.c index 3e14874ba4..2d8ba1a0f7 100644 --- a/libavcodec/vp5.c +++ b/libavcodec/vp5.c @@ -270,6 +270,7 @@ static av_cold int vp5_decode_init(AVCodecContext *avctx) if ((ret = ff_vp56_init(avctx, 1, 0)) < 0) return ret; + ff_vp5dsp_init(&s->vp56dsp); s->vp56_coord_div = vp5_coord_div; s->parse_vector_adjustment = vp5_parse_vector_adjustment; s->parse_coeff = vp5_parse_coeff; |