ab26aff16f
0.9.3: - optionally use libv4l to support more cameras - fix installation directory of plugins for x64 systems - fix scaling of ogg/theora video - use categories for v4l2 properties 0.9.2: - Severall small bug fixes and improvements ( see ChangeLog ) - The EeePC packages got updated
17 lines
420 B
Text
17 lines
420 B
Text
$NetBSD: patch-aj,v 1.2 2009/01/08 01:08:37 jmcneill Exp $
|
|
|
|
|
|
--- cpi/v4l2cpi/tiseuvccam.h.orig 2008-09-18 05:44:35.000000000 -0400
|
|
+++ cpi/v4l2cpi/tiseuvccam.h
|
|
@@ -9,7 +9,11 @@
|
|
|
|
#include <unicap.h>
|
|
#include <unicap_cpi.h>
|
|
+#ifdef __linux__
|
|
#include <linux/videodev2.h>
|
|
+#elif defined(__NetBSD__)
|
|
+#include <sys/videoio.h>
|
|
+#endif
|
|
#include "v4l2.h"
|
|
|
|
int tiseuvccam_probe( v4l2_handle_t handle, const char *path );
|