[vlc-devel] [PATCH] Fix opencv module compilation - missing vlc_vout.h

Nicolas Chauvet (kwizart) kwizart at gmail.com
Mon Apr 27 20:19:08 CEST 2009


Fix the following error:
filter_common.h:29: error: 'I_OUTPUTPICTURES' was not declared in this scope
[...]
filter_common.h:39: error: 'FREE_PICTURE' was not declared in this scope
[...]
filter_common.h:58: error: 'DESTROYED_PICTURE' was not declared in this scope
and so on, ...
---
 modules/video_filter/opencv_example.cpp |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/modules/video_filter/opencv_example.cpp b/modules/video_filter/opencv_example.cpp
index 310e16f..e1fe03e 100644
--- a/modules/video_filter/opencv_example.cpp
+++ b/modules/video_filter/opencv_example.cpp
@@ -37,6 +37,7 @@
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 #include <vlc_filter.h>
+#include <vlc_vout.h>
 #include "filter_common.h"
 #include <vlc_image.h>
 #include "filter_event_info.h"
-- 
1.6.0.6




More information about the vlc-devel mailing list