pwc-uncompress.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* (C) 1999-2001 Nemosoft Unv. (webcam@smcc.demon.nl)
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  13. */
  14. /* This file is the bridge between the kernel module and the plugin; it
  15.    describes the structures and datatypes used in both modules. Any
  16.    significant change should be reflected by increasing the 
  17.    pwc_decompressor_version major number.
  18.  */
  19. #ifndef PWC_DEC_H
  20. #define PWC_DEC_H
  21. #include <linux/config.h>
  22. #include <linux/list.h>
  23. #include "pwc.h"
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* The decompressor structure. 
  28.    Every type of decompressor registers itself with the main module. 
  29.    When a device is opened, it looks up the correct compressor, and
  30.    uses that when a compressed video mode is requested.
  31.  */
  32. struct pwc_decompressor
  33. {
  34. int  type; /* type of camera (645, 680, etc) */
  35. int  table_size; /* memory needed */
  36. void (* init)(int release, void *buffer, void *table); /* Initialization routine; should be called after each set_video_mode */
  37. void (* exit)(void); /* Cleanup routine */
  38. void (* decompress)(struct pwc_coord *image, struct pwc_coord *view, struct pwc_coord *offset,
  39.                             void *src, void *dst, int planar,
  40.                     void *table, int bandlength);
  41. void (* lock)(void); /* make sure module cannot be unloaded */
  42. void (* unlock)(void); /* release lock on module */
  43. struct list_head pwcd_list;
  44. };
  45. /* Our structure version number. Is set to the version number major */
  46. extern const int pwc_decompressor_version;
  47. /* Adds decompressor to list, based on its 'type' field (which matches the 'type' field in pwc_device; ignores any double requests */
  48. extern void pwc_register_decompressor(struct pwc_decompressor *pwcd);
  49. /* Removes decompressor, based on the type number */
  50. extern void pwc_unregister_decompressor(int type);
  51. /* Returns pointer to decompressor struct, or NULL if it doesn't exist */
  52. extern struct pwc_decompressor *pwc_find_decompressor(int type);
  53. #ifdef CONFIG_USB_PWCX
  54. /* If the decompressor is compiled in, we must call these manually */
  55. extern int usb_pwcx_init(void);
  56. extern void usb_pwcx_exit(void);
  57. #endif
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif