Commit e3aec98c authored by Hans de Goede's avatar Hans de Goede Committed by Mauro Carvalho Chehab

[media] pwc: clean-up header files

Remove unused pwc-ioctl.h (the copy in include/media is used everywhere)
Remove almost empty pwc-uncompress.h, move single define to pwc.h
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 51886df0
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
#include <asm/errno.h> #include <asm/errno.h>
#include "pwc.h" #include "pwc.h"
#include "pwc-uncompress.h"
#include "pwc-kiara.h" #include "pwc-kiara.h"
#include "pwc-timon.h" #include "pwc-timon.h"
#include "pwc-dec1.h" #include "pwc-dec1.h"
......
...@@ -75,7 +75,6 @@ ...@@ -75,7 +75,6 @@
#include "pwc-timon.h" #include "pwc-timon.h"
#include "pwc-dec23.h" #include "pwc-dec23.h"
#include "pwc-dec1.h" #include "pwc-dec1.h"
#include "pwc-uncompress.h"
/* Function prototypes and driver templates */ /* Function prototypes and driver templates */
......
This diff is collapsed.
...@@ -40,7 +40,6 @@ ...@@ -40,7 +40,6 @@
#include "pwc-kiara.h" #include "pwc-kiara.h"
#include "pwc-uncompress.h"
const unsigned int Kiara_fps_vector[PWC_FPS_MAX_KIARA] = { 5, 10, 15, 20, 25, 30 }; const unsigned int Kiara_fps_vector[PWC_FPS_MAX_KIARA] = { 5, 10, 15, 20, 25, 30 };
......
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
#include <asm/types.h> #include <asm/types.h>
#include "pwc.h" #include "pwc.h"
#include "pwc-uncompress.h"
#include "pwc-dec1.h" #include "pwc-dec1.h"
#include "pwc-dec23.h" #include "pwc-dec23.h"
......
/* (C) 1999-2003 Nemosoft Unv.
(C) 2004-2006 Luc Saillard (luc@saillard.org)
NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx
driver and thus may have bugs that are not present in the original version.
Please send bug reports and support requests to <luc@saillard.org>.
The decompression routines have been implemented by reverse-engineering the
Nemosoft binary pwcx module. Caveat emptor.
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, or
(at your option) any later version.
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
*/
/* This file is the bridge between the kernel module and the plugin; it
describes the structures and datatypes used in both modules. Any
significant change should be reflected by increasing the
pwc_decompressor_version major number.
*/
#ifndef PWC_UNCOMPRESS_H
#define PWC_UNCOMPRESS_H
#include <media/pwc-ioctl.h>
/* from pwc-dec.h */
#define PWCX_FLAG_PLANAR 0x0001
/* */
#endif
...@@ -42,7 +42,6 @@ ...@@ -42,7 +42,6 @@
#include <linux/input.h> #include <linux/input.h>
#endif #endif
#include "pwc-uncompress.h"
#include <media/pwc-ioctl.h> #include <media/pwc-ioctl.h>
/* Version block */ /* Version block */
...@@ -129,6 +128,9 @@ ...@@ -129,6 +128,9 @@
#define DEVICE_USE_CODEC3(x) ((x)>=700) #define DEVICE_USE_CODEC3(x) ((x)>=700)
#define DEVICE_USE_CODEC23(x) ((x)>=675) #define DEVICE_USE_CODEC23(x) ((x)>=675)
/* from pwc-dec.h */
#define PWCX_FLAG_PLANAR 0x0001
/* Request types: video */ /* Request types: video */
#define SET_LUM_CTL 0x01 #define SET_LUM_CTL 0x01
#define GET_LUM_CTL 0x02 #define GET_LUM_CTL 0x02
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment