diff options
author | James Almer <jamrial@gmail.com> | 2015-09-21 14:37:32 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-09-21 14:37:32 -0300 |
commit | 7086154aaa24039f313b98cfb610dfc5429c9302 (patch) | |
tree | c11776fd79fb65b44cb3365dc3e5aabde7ddfed2 | |
parent | 91fcb10f081519e95cf28c465b6d098a0b4b6f2a (diff) | |
download | ffmpeg-streaming-7086154aaa24039f313b98cfb610dfc5429c9302.zip ffmpeg-streaming-7086154aaa24039f313b98cfb610dfc5429c9302.tar.gz |
x86/vp9dsp: fix local header include
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/x86/vp9dsp_init.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/vp9dsp_init.h b/libavcodec/x86/vp9dsp_init.h index caaf20c..d1a9514 100644 --- a/libavcodec/x86/vp9dsp_init.h +++ b/libavcodec/x86/vp9dsp_init.h @@ -23,7 +23,7 @@ #ifndef AVCODEC_X86_VP9DSP_INIT_H #define AVCODEC_X86_VP9DSP_INIT_H -#include <libavcodec/vp9dsp.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, \ |