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.h | |
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.h')
-rw-r--r-- | libavcodec/vp56.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 52fe3182f4..8b7806e5be 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -26,6 +26,7 @@ #ifndef AVCODEC_VP56_H #define AVCODEC_VP56_H +#include "avcodec.h" #include "get_bits.h" #include "hpeldsp.h" #include "bytestream.h" |