diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-09 16:00:16 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-10 08:02:02 +0200 |
commit | d7d071a673b5ca7e59ae7cc888eaa1dc24fc4f5e (patch) | |
tree | 36e0f0ec0f4d86c4c0341952b20e85ff606e68ed | |
parent | 19be0f3ca61bf36dcf145ba8241a449ff5acdeba (diff) | |
download | ffmpeg-d7d071a673b5ca7e59ae7cc888eaa1dc24fc4f5e.tar.gz |
vf_libopencv: add missing headers.
Fix build after b74a1da4.
-rw-r--r-- | libavfilter/vf_libopencv.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c index b6dcd191ae..d38b5845bd 100644 --- a/libavfilter/vf_libopencv.c +++ b/libavfilter/vf_libopencv.c @@ -30,6 +30,8 @@ #include "libavutil/avstring.h" #include "libavutil/file.h" #include "avfilter.h" +#include "formats.h" +#include "video.h" static void fill_iplimage_from_picref(IplImage *img, const AVFilterBufferRef *picref, enum PixelFormat pixfmt) { |