David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* Linux driver for Philips webcam |
| 3 | (C) 2004-2006 Luc Saillard (luc@saillard.org) |
| 4 | |
| 5 | NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx |
| 6 | driver and thus may have bugs that are not present in the original version. |
| 7 | Please send bug reports and support requests to <luc@saillard.org>. |
| 8 | The decompression routines have been implemented by reverse-engineering the |
| 9 | Nemosoft binary pwcx module. Caveat emptor. |
| 10 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef PWC_DEC1_H |
| 14 | #define PWC_DEC1_H |
| 15 | |
| 16 | #include <linux/mutex.h> |
| 17 | |
| 18 | struct pwc_device; |
| 19 | |
| 20 | struct pwc_dec1_private |
| 21 | { |
| 22 | int version; |
| 23 | }; |
| 24 | |
| 25 | void pwc_dec1_init(struct pwc_device *pdev, const unsigned char *cmd); |
| 26 | |
| 27 | #endif |