162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 262306a36Sopenharmony_ci/* Linux driver for Philips webcam 362306a36Sopenharmony_ci (C) 2004-2006 Luc Saillard (luc@saillard.org) 462306a36Sopenharmony_ci 562306a36Sopenharmony_ci NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx 662306a36Sopenharmony_ci driver and thus may have bugs that are not present in the original version. 762306a36Sopenharmony_ci Please send bug reports and support requests to <luc@saillard.org>. 862306a36Sopenharmony_ci The decompression routines have been implemented by reverse-engineering the 962306a36Sopenharmony_ci Nemosoft binary pwcx module. Caveat emptor. 1062306a36Sopenharmony_ci 1162306a36Sopenharmony_ci*/ 1262306a36Sopenharmony_ci 1362306a36Sopenharmony_ci#ifndef PWC_DEC1_H 1462306a36Sopenharmony_ci#define PWC_DEC1_H 1562306a36Sopenharmony_ci 1662306a36Sopenharmony_ci#include <linux/mutex.h> 1762306a36Sopenharmony_ci 1862306a36Sopenharmony_cistruct pwc_device; 1962306a36Sopenharmony_ci 2062306a36Sopenharmony_cistruct pwc_dec1_private 2162306a36Sopenharmony_ci{ 2262306a36Sopenharmony_ci int version; 2362306a36Sopenharmony_ci}; 2462306a36Sopenharmony_ci 2562306a36Sopenharmony_civoid pwc_dec1_init(struct pwc_device *pdev, const unsigned char *cmd); 2662306a36Sopenharmony_ci 2762306a36Sopenharmony_ci#endif 28