Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /* Linux driver for Philips webcam
0003    (C) 2004-2006 Luc Saillard (luc@saillard.org)
0004 
0005    NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx
0006    driver and thus may have bugs that are not present in the original version.
0007    Please send bug reports and support requests to <luc@saillard.org>.
0008    The decompression routines have been implemented by reverse-engineering the
0009    Nemosoft binary pwcx module. Caveat emptor.
0010 
0011 */
0012 
0013 #ifndef PWC_DEC1_H
0014 #define PWC_DEC1_H
0015 
0016 #include <linux/mutex.h>
0017 
0018 struct pwc_device;
0019 
0020 struct pwc_dec1_private
0021 {
0022     int version;
0023 };
0024 
0025 void pwc_dec1_init(struct pwc_device *pdev, const unsigned char *cmd);
0026 
0027 #endif