Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-07-15 17:40:31 +0400
committerDiego Biurrun <diego@biurrun.de>2011-07-18 14:37:22 +0400
commit0b4840af0c42f96e6057ec56919f16f7fbcae3d9 (patch)
tree84771c8c14c356725cf06e29bc92d7e46ece5b33 /libavfilter
parent896f80f82ced236f35c286ae0b3c700044b6bfb8 (diff)
vf_libopencv: replace opencv/cxtypes.h #include by opencv/cxcore.h
cxtypes.h works with version 2.1 and older, cxcore.h works with 2.2 and older. Signed-off-by: Diego Biurrun <diego@biurrun.de> (cherry picked from commit 9bc8bcddbd4fc394e2268e9849dcbf3bad6de980)
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_libopencv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c
index 5a52f246ba..6e343af7ef 100644
--- a/libavfilter/vf_libopencv.c
+++ b/libavfilter/vf_libopencv.c
@@ -26,7 +26,7 @@
/* #define DEBUG */
#include <opencv/cv.h>
-#include <opencv/cxtypes.h>
+#include <opencv/cxcore.h>
#include "libavutil/avstring.h"
#include "libavutil/file.h"
#include "avfilter.h"