diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-07-15 15:40:31 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-07-18 12:33:13 +0200 |
commit | 9bc8bcddbd4fc394e2268e9849dcbf3bad6de980 (patch) | |
tree | 773d8d3686de583d631e97a523f0ace6aed53710 | |
parent | 65083b49117cb64c0e9a3741da9ed1cfbf64aff3 (diff) | |
download | ffmpeg-9bc8bcddbd4fc394e2268e9849dcbf3bad6de980.tar.gz |
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>
-rw-r--r-- | libavfilter/vf_libopencv.c | 2 |
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" |