summaryrefslogtreecommitdiff
path: root/v4l_experimental/pvrusb2/pvrusb2-video-v4l.h
diff options
context:
space:
mode:
authorMike Isely <devnull@localhost>2005-11-27 23:01:16 +0000
committerMike Isely <devnull@localhost>2005-11-27 23:01:16 +0000
commit5eee74c9dab4a2cb88a52ae96fa90fe0d2658a1e (patch)
tree9b0c06c9e42360d79620f9f52b6475551337f2b9 /v4l_experimental/pvrusb2/pvrusb2-video-v4l.h
parent85af92b0d83f8f1de9fc774046b3c7e16fc14ac5 (diff)
downloadmediapointer-dvb-s2-5eee74c9dab4a2cb88a52ae96fa90fe0d2658a1e.tar.gz
mediapointer-dvb-s2-5eee74c9dab4a2cb88a52ae96fa90fe0d2658a1e.tar.bz2
Pull in changes from 20051126 pvrusb2 snapshot
From: Mike Isely <isely@pobox.com> - Rework various things to play nicer in native v4l environment Signed-off-by: Mike Isely <isely@pobox.com>
Diffstat (limited to 'v4l_experimental/pvrusb2/pvrusb2-video-v4l.h')
-rw-r--r--v4l_experimental/pvrusb2/pvrusb2-video-v4l.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/v4l_experimental/pvrusb2/pvrusb2-video-v4l.h b/v4l_experimental/pvrusb2/pvrusb2-video-v4l.h
new file mode 100644
index 000000000..e3ef12602
--- /dev/null
+++ b/v4l_experimental/pvrusb2/pvrusb2-video-v4l.h
@@ -0,0 +1,54 @@
+/*
+ *
+ * $Id: pvrusb2-video-v4l.h,v 1.1 2005/11/27 23:01:16 mcisely Exp $
+ *
+ * Copyright (C) 2005 Mike Isely <isely@pobox.com>
+ * Copyright (C) 2004 Aurelien Alleaume <slts@free.fr>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ */
+
+#ifndef __PVRUSB2_VIDEO_V4L_H
+#define __PVRUSB2_VIDEO_V4L_H
+
+/*
+
+ This module connects the pvrusb2 driver to the I2C chip level
+ driver which handles device video processing. This interface is
+ used internally by the driver; higher level code should only
+ interact through the interface provided by pvrusb2-hdw.h.
+
+*/
+
+#include "compat.h"
+#include "pvrusb2-video.h"
+
+#ifndef PVR2_SUPPRESS_SAA711X
+
+struct pvr2_decoder *pvr2_decoder_v4l_create(struct pvr2_hdw *);
+
+#endif /* PVR2_SUPPRESS_SAA711X */
+
+#endif /* __PVRUSB2_VIDEO_V4L_H */
+
+/*
+ Stuff for Emacs to see, in order to encourage consistent editing style:
+ *** Local Variables: ***
+ *** mode: c ***
+ *** fill-column: 70 ***
+ *** tab-width: 8 ***
+ *** c-basic-offset: 8 ***
+ *** End: ***
+ */