1 /*
2 ********************************************************************************
3 *                                USB UVC Driver
4 *
5 *                (c) Copyright 2010-2015, All winners Co,Ld.
6 *                        All Right Reserved
7 *
8 * FileName      :  usbWebcam.h
9 *
10 * Author        :  Kingvan.Tong
11 *
12 * Date          :  2013.03.26
13 *
14 * Description   :  USB Webcam
15 *
16 * Others        :  NULL
17 *
18 * History:
19 *       <time>      <version >      <author>            <desc>
20 *      2013.03.26      1.0           Kingvan.Tong       build this file
21 *
22 ********************************************************************************
23 */
24 #ifndef  __USBWEBCAM_H__
25 #define  __USBWEBCAM_H__
26 #include  "usbWebcam_proc.h"
27 
28 typedef struct _usbWebcam{
29 
30     UVCDev_t    *UVCDev;
31 
32     FILE        *webcamHdl;
33     uvc_irq_t   uvc_irq;
34 
35     __u32       urb_mem[UVC_URBS];
36 
37 }usbWebcam_t;
38 
39 #endif   //__USBWEBCAM_H__
40 
41