cx231xx-vbi.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. cx231xx_vbi.h - driver for Conexant Cx23100/101/102 USB video capture devices
  3. Copyright (C) 2008 <srinivasa.deevi at conexant dot com>
  4. Based on cx88 driver
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program; if not, write to the Free Software
  15. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  16. */
  17. #ifndef _CX231XX_VBI_H
  18. #define _CX231XX_VBI_H
  19. extern struct videobuf_queue_ops cx231xx_vbi_qops;
  20. #define NTSC_VBI_START_LINE 10 /* line 10 - 21 */
  21. #define NTSC_VBI_END_LINE 21
  22. #define NTSC_VBI_LINES (NTSC_VBI_END_LINE-NTSC_VBI_START_LINE+1)
  23. #define PAL_VBI_START_LINE 6
  24. #define PAL_VBI_END_LINE 23
  25. #define PAL_VBI_LINES (PAL_VBI_END_LINE-PAL_VBI_START_LINE+1)
  26. #define VBI_STRIDE 1440
  27. #define VBI_SAMPLES_PER_LINE 1440
  28. #define CX231XX_NUM_VBI_PACKETS 4
  29. #define CX231XX_NUM_VBI_BUFS 5
  30. /* stream functions */
  31. int cx231xx_init_vbi_isoc(struct cx231xx *dev, int max_packets,
  32. int num_bufs, int max_pkt_size,
  33. int (*bulk_copy) (struct cx231xx *dev,
  34. struct urb *urb));
  35. void cx231xx_uninit_vbi_isoc(struct cx231xx *dev);
  36. /* vbi data copy functions */
  37. u32 cx231xx_get_vbi_line(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
  38. u8 sav_eav, u8 *p_buffer, u32 buffer_size);
  39. u32 cx231xx_copy_vbi_line(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
  40. u8 *p_line, u32 length, int field_number);
  41. void cx231xx_reset_vbi_buffer(struct cx231xx *dev,
  42. struct cx231xx_dmaqueue *dma_q);
  43. int cx231xx_do_vbi_copy(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,
  44. u8 *p_buffer, u32 bytes_to_copy);
  45. u8 cx231xx_is_vbi_buffer_done(struct cx231xx *dev,
  46. struct cx231xx_dmaqueue *dma_q);
  47. #endif