usbWebcam.h 897 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. typedef struct _usbWebcam{
  28. UVCDev_t *UVCDev;
  29. FILE *webcamHdl;
  30. uvc_irq_t uvc_irq;
  31. __u32 urb_mem[UVC_URBS];
  32. }usbWebcam_t;
  33. #endif //__USBWEBCAM_H__