diff options
author | James Almer <jamrial@gmail.com> | 2015-09-21 14:34:08 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-09-21 14:34:08 -0300 |
commit | 91fcb10f081519e95cf28c465b6d098a0b4b6f2a (patch) | |
tree | 9e4f1ca46ad03376943369f2bf4a426486f6b250 /libavcodec | |
parent | 4ed5a73a7ebc811ded496c4bbf6d8f631b166519 (diff) | |
download | ffmpeg-91fcb10f081519e95cf28c465b6d098a0b4b6f2a.tar.gz |
x86/vp9dsp: add missing header include
Fixes make checkheaders
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/x86/vp9dsp_init.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/vp9dsp_init.h b/libavcodec/x86/vp9dsp_init.h index 63f616dc65..caaf20c510 100644 --- a/libavcodec/x86/vp9dsp_init.h +++ b/libavcodec/x86/vp9dsp_init.h @@ -23,6 +23,8 @@ #ifndef AVCODEC_X86_VP9DSP_INIT_H #define AVCODEC_X86_VP9DSP_INIT_H +#include <libavcodec/vp9dsp.h> + #define decl_fpel_func(avg, sz, bpp, opt) \ void ff_vp9_##avg##sz##bpp##_##opt(uint8_t *dst, ptrdiff_t dst_stride, \ const uint8_t *src, ptrdiff_t src_stride, \ |