/* * PWCBSD - Philips USB webcam driver for FreeBSD 5.4 and higher * * Copyright (C) 2006 Raaf * * Based on the Linux pwc driver. * * Copyright (C) 1999-2003 Nemosoft Unv. * Copyright (C) 2004-2006 Luc Saillard * * 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., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA */ /* Entries for the Kiara (730/740/750) camera */ #ifndef PWC_KIARA_H #define PWC_KIARA_H #include "pwc-ioctl.h" struct Kiara_table_entry { char alternate; /* USB alternate interface */ unsigned short packetsize; /* Normal packet size */ unsigned short bandlength; /* Bandlength when decompressing */ unsigned char mode[12]; /* precomputed mode settings for cam */ }; const extern struct Kiara_table_entry Kiara_table[PSZ_MAX][6][4]; const extern unsigned int KiaraRomTable[8][2][16][8]; #endif