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 9bc8bcddbd)
This commit is contained in:
Stefano Sabatini
2011-07-15 15:40:31 +02:00
committed by Diego Biurrun
parent 896f80f82c
commit 0b4840af0c
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ version 0.7.1:
- behavioral fix in av_open_input_stream()
- Licensing clarification for LGPL'ed vf_gradfun
- bugfixes while seeking in multithreaded decoding
- support newer versions of OpenCV
version 0.7:

View File

@@ -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"