Path: blob/master/drivers/media/video/cx231xx/cx231xx-vbi.h
17988 views
/*1cx231xx_vbi.h - driver for Conexant Cx23100/101/102 USB video capture devices23Copyright (C) 2008 <srinivasa.deevi at conexant dot com>4Based on cx88 driver56This program is free software; you can redistribute it and/or modify7it under the terms of the GNU General Public License as published by8the Free Software Foundation; either version 2 of the License, or9(at your option) any later version.1011This program is distributed in the hope that it will be useful,12but WITHOUT ANY WARRANTY; without even the implied warranty of13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14GNU General Public License for more details.1516You should have received a copy of the GNU General Public License17along with this program; if not, write to the Free Software18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.19*/2021#ifndef _CX231XX_VBI_H22#define _CX231XX_VBI_H2324extern struct videobuf_queue_ops cx231xx_vbi_qops;2526#define NTSC_VBI_START_LINE 10 /* line 10 - 21 */27#define NTSC_VBI_END_LINE 2128#define NTSC_VBI_LINES (NTSC_VBI_END_LINE-NTSC_VBI_START_LINE+1)2930#define PAL_VBI_START_LINE 631#define PAL_VBI_END_LINE 2332#define PAL_VBI_LINES (PAL_VBI_END_LINE-PAL_VBI_START_LINE+1)3334#define VBI_STRIDE 144035#define VBI_SAMPLES_PER_LINE 14403637#define CX231XX_NUM_VBI_PACKETS 438#define CX231XX_NUM_VBI_BUFS 53940/* stream functions */41int cx231xx_init_vbi_isoc(struct cx231xx *dev, int max_packets,42int num_bufs, int max_pkt_size,43int (*bulk_copy) (struct cx231xx *dev,44struct urb *urb));4546void cx231xx_uninit_vbi_isoc(struct cx231xx *dev);4748/* vbi data copy functions */49u32 cx231xx_get_vbi_line(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,50u8 sav_eav, u8 *p_buffer, u32 buffer_size);5152u32 cx231xx_copy_vbi_line(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,53u8 *p_line, u32 length, int field_number);5455void cx231xx_reset_vbi_buffer(struct cx231xx *dev,56struct cx231xx_dmaqueue *dma_q);5758int cx231xx_do_vbi_copy(struct cx231xx *dev, struct cx231xx_dmaqueue *dma_q,59u8 *p_buffer, u32 bytes_to_copy);6061u8 cx231xx_is_vbi_buffer_done(struct cx231xx *dev,62struct cx231xx_dmaqueue *dma_q);6364#endif656667