ports/multimedia/mplayer2/files/patch-stream-tvi_v4l2.c
Jan Beich 4b9a4a73b5 multimedia/mplayer2: minor cleanup via portlint
- Unsilence INSTALL_* lines
- Regenerate patches with makepatch
- Remove extra newline

PR:		202404
Submitted by:	Carlos J Puga Medina <cpm@fbsd.es> (maintainer)
2015-08-27 16:59:09 +00:00

25 lines
621 B
C

--- stream/tvi_v4l2.c.orig 2013-07-09 16:33:36 UTC
+++ stream/tvi_v4l2.c
@@ -52,7 +52,6 @@ known issues:
#ifdef HAVE_SYS_VIDEOIO_H
#include <sys/videoio.h>
#else
-#include <linux/types.h>
#include <linux/videodev2.h>
#endif
#include "mp_msg.h"
@@ -62,6 +61,14 @@ known issues:
#include "tv.h"
#include "audio_in.h"
+#include <libv4l2.h>
+#define open v4l2_open
+#define close v4l2_close
+#define dup v4l2_dup
+#define ioctl v4l2_ioctl
+#define mmap v4l2_mmap
+#define munmap v4l2_munmap
+
#define info tvi_info_v4l2
static tvi_handle_t *tvi_init_v4l2(tv_param_t* tv_param);
/* information about this file */