亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? dvb-usb.h

?? V4l driver for DVB HD
?? H
字號:
/* dvb-usb.h is part of the DVB USB library. * * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de) * see dvb-usb-init.c for copyright information. * * the headerfile, all dvb-usb-drivers have to include. */#ifndef __DVB_USB_H__#define __DVB_USB_H__#include <linux/config.h>#include <linux/input.h>#include <linux/usb.h>#include <linux/firmware.h>#include "compat.h"#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,15)#include <linux/mutex.h>#endif#include "dvb_frontend.h"#include "dvb_demux.h"#include "dvb_net.h"#include "dmxdev.h"#include "dvb-pll.h"#include "dvb-usb-ids.h"/* debug */#ifdef CONFIG_DVB_USB_DEBUG#define dprintk(var,level,args...) \	    do { if ((var & level)) { printk(args); } } while (0)#define debug_dump(b,l,func) {\	int loop_; \	for (loop_ = 0; loop_ < l; loop_++) func("%02x ", b[loop_]); \	func("\n");\}#define DVB_USB_DEBUG_STATUS#else#define dprintk(args...)#define debug_dump(b,l,func)#define DVB_USB_DEBUG_STATUS " (debugging is not enabled)"#endif/* generic log methods - taken from usb.h */#ifndef DVB_USB_LOG_PREFIX #define DVB_USB_LOG_PREFIX "dvb-usb (please define a log prefix)"#endif#undef err#define err(format, arg...)  printk(KERN_ERR     DVB_USB_LOG_PREFIX ": " format "\n" , ## arg)#undef info#define info(format, arg...) printk(KERN_INFO    DVB_USB_LOG_PREFIX ": " format "\n" , ## arg)#undef warn#define warn(format, arg...) printk(KERN_WARNING DVB_USB_LOG_PREFIX ": " format "\n" , ## arg)/** * struct dvb_usb_device_description - name and its according USB IDs * @name: real name of the box, regardless which DVB USB device class is in use * @cold_ids: array of struct usb_device_id which describe the device in *  pre-firmware state * @warm_ids: array of struct usb_device_id which describe the device in *  post-firmware state * * Each DVB USB device class can have one or more actual devices, this struct * assigns a name to it. */struct dvb_usb_device_description {	const char *name;#define DVB_USB_ID_MAX_NUM 15	struct usb_device_id *cold_ids[DVB_USB_ID_MAX_NUM];	struct usb_device_id *warm_ids[DVB_USB_ID_MAX_NUM];};/** * struct dvb_usb_rc_key - a remote control key and its input-event * @custom: the vendor/custom part of the key * @data: the actual key part * @event: the input event assigned to key identified by custom and data */struct dvb_usb_rc_key {	u8 custom,data;	u32 event;};struct dvb_usb_device;/** * struct dvb_usb_properties - properties of a dvb-usb-device * @caps: capabilities of the DVB USB device. * @pid_filter_count: number of PID filter position in the optional hardware *  PID-filter. * * @usb_ctrl: which USB device-side controller is in use. Needed for firmware *  download. * @firmware: name of the firmware file. * @download_firmware: called to download the firmware when the usb_ctrl is *  DEVICE_SPECIFIC. * @no_reconnect: device doesn't do a reconnect after downloading the firmware,    so do the warm initialization right after it * @size_of_priv: how many bytes shall be allocated for the private field *  of struct dvb_usb_device. * * @power_ctrl: called to enable/disable power of the device. * @streaming_crtl: called to start and stop the MPEG2-TS streaming of the *  device (not URB submitting/killing). * @pid_filter_ctrl: called to en/disable the PID filter, if any. * @pid_filter: called to set/unset a PID for filtering. * * @read_mac_address: called to read the MAC address of the device. * * @frontend_attach: called to attach the possible frontends (fill fe-field *  of struct dvb_usb_device). * @tuner_attach: called to attach the correct tuner and to fill pll_addr, *  pll_desc and pll_init_buf of struct dvb_usb_device). * @identify_state: called to determine the state (cold or warm), when it *  is not distinguishable by the USB IDs. * * @rc_key_map: a hard-wired array of struct dvb_usb_rc_key (NULL to disable *  remote control handling). * @rc_key_map_size: number of items in @rc_key_map. * @rc_query: called to query an event event. * @rc_interval: time in ms between two queries. * * @i2c_algo: i2c_algorithm if the device has I2CoverUSB. * * @generic_bulk_ctrl_endpoint: most of the DVB USB devices have a generic *  endpoint which received control messages with bulk transfers. When this *  is non-zero, one can use dvb_usb_generic_rw and dvb_usb_generic_write- *  helper functions. * * @urb: describes the kind of USB transfer used for MPEG2-TS-streaming. *  (BULK or ISOC) * * @num_device_descs: number of struct dvb_usb_device_description in @devices * @devices: array of struct dvb_usb_device_description compatibles with these *  properties. */struct dvb_usb_properties {#define DVB_USB_HAS_PID_FILTER               0x01#define DVB_USB_PID_FILTER_CAN_BE_TURNED_OFF 0x02#define DVB_USB_NEED_PID_FILTERING           0x04#define DVB_USB_IS_AN_I2C_ADAPTER            0x08	int caps;	int pid_filter_count;#define DEVICE_SPECIFIC 0#define CYPRESS_AN2135  1#define CYPRESS_AN2235  2#define CYPRESS_FX2     3	int usb_ctrl;	const char firmware[FIRMWARE_NAME_MAX];	int (*download_firmware) (struct usb_device *, const struct firmware *);	int no_reconnect;	int size_of_priv;	int (*power_ctrl) (struct dvb_usb_device *, int);	int (*streaming_ctrl) (struct dvb_usb_device *, int);	int (*pid_filter_ctrl) (struct dvb_usb_device *, int);	int (*pid_filter) (struct dvb_usb_device *, int, u16, int);	int (*read_mac_address) (struct dvb_usb_device *, u8 []);	int (*frontend_attach) (struct dvb_usb_device *);	int (*tuner_attach) (struct dvb_usb_device *);	int (*identify_state) (struct usb_device *, struct dvb_usb_properties *,			struct dvb_usb_device_description **, int *);/* remote control properties */#define REMOTE_NO_KEY_PRESSED      0x00#define REMOTE_KEY_PRESSED         0x01#define REMOTE_KEY_REPEAT          0x02	struct dvb_usb_rc_key *rc_key_map;	int rc_key_map_size;	int (*rc_query) (struct dvb_usb_device *, u32 *, int *);	int rc_interval;	struct i2c_algorithm *i2c_algo;	int generic_bulk_ctrl_endpoint;	struct {#define DVB_USB_BULK  1#define DVB_USB_ISOC  2		int type;		int count;		int endpoint;		union {			struct {				int buffersize; /* per URB */			} bulk;			struct {				int framesperurb;				int framesize;				int interval;			} isoc;		} u;	} urb;	int num_device_descs;	struct dvb_usb_device_description devices[9];};/** * struct dvb_usb_device - object of a DVB USB device * @props: copy of the struct dvb_usb_properties this device belongs to. * @desc: pointer to the device's struct dvb_usb_device_description. * @state: initialization and runtime state of the device. * * @udev: pointer to the device's struct usb_device. * @urb_list: array of dynamically allocated struct urb for the MPEG2-TS- *  streaming. * * @buf_num: number of buffer allocated. * @buf_size: size of each buffer in buf_list. * @buf_list: array containing all allocate buffers for streaming. * @dma_addr: list of dma_addr_t for each buffer in buf_list. * * @urbs_initialized: number of URBs initialized. * @urbs_submitted: number of URBs submitted. * * @feedcount: number of reqested feeds (used for streaming-activation) * @pid_filtering: is hardware pid_filtering used or not. * * @usb_mutex: semaphore of USB control messages (reading needs two messages) * @i2c_mutex: semaphore for i2c-transfers * * @i2c_adap: device's i2c_adapter if it uses I2CoverUSB * @pll_addr: I2C address of the tuner for programming * @pll_init: array containing the initialization buffer * @pll_desc: pointer to the appropriate struct dvb_pll_desc * * @tuner_pass_ctrl: called to (de)activate tuner passthru of the demod or the board * * @dvb_adap: device's dvb_adapter. * @dmxdev: device's dmxdev. * @demux: device's software demuxer. * @dvb_net: device's dvb_net interfaces. * @dvb_frontend: device's frontend. * @max_feed_count: how many feeds can be handled simultaneously by this *  device * @fe_sleep: rerouted frontend-sleep function. * @fe_init: rerouted frontend-init (wakeup) function. * @rc_input_dev: input device for the remote control. * @rc_query_work: struct work_struct frequent rc queries * @last_event: last triggered event * @last_state: last state (no, pressed, repeat) * @owner: owner of the dvb_adapter * @priv: private data of the actual driver (allocate by dvb-usb, size defined *  in size_of_priv of dvb_usb_properties). */struct dvb_usb_device {	struct dvb_usb_properties props;	struct dvb_usb_device_description *desc;#define DVB_USB_STATE_INIT        0x000#define DVB_USB_STATE_URB_LIST    0x001#define DVB_USB_STATE_URB_BUF     0x002#define DVB_USB_STATE_DVB         0x004#define DVB_USB_STATE_I2C         0x008#define DVB_USB_STATE_REMOTE      0x010#define DVB_USB_STATE_URB_SUBMIT  0x020	int state;	/* usb */	struct usb_device *udev;	struct urb **urb_list;	int buf_num;	unsigned long buf_size;	u8 **buf_list;	dma_addr_t *dma_addr;	int urbs_initialized;	int urbs_submitted;	int feedcount;	int pid_filtering;	/* locking */	struct mutex usb_mutex;	/* i2c */	struct mutex i2c_mutex;	struct i2c_adapter i2c_adap;	/* tuner programming information */	u8 pll_addr;	u8 pll_init[4];	struct dvb_pll_desc *pll_desc;	int (*tuner_pass_ctrl)(struct dvb_frontend *, int, u8);	/* dvb */	struct dvb_adapter dvb_adap;	struct dmxdev dmxdev;	struct dvb_demux demux;	struct dvb_net dvb_net;	struct dvb_frontend* fe;	int max_feed_count;	int (*fe_sleep) (struct dvb_frontend *);	int (*fe_init)  (struct dvb_frontend *);	/* remote control */	struct input_dev *rc_input_dev;	char rc_phys[64];	struct work_struct rc_query_work;	u32 last_event;	int last_state;	struct module *owner;	void *priv;};extern int dvb_usb_device_init(struct usb_interface *, struct dvb_usb_properties *, struct module *, struct dvb_usb_device **);extern void dvb_usb_device_exit(struct usb_interface *);/* the generic read/write method for device control */extern int dvb_usb_generic_rw(struct dvb_usb_device *, u8 *, u16, u8 *, u16,int);extern int dvb_usb_generic_write(struct dvb_usb_device *, u8 *, u16);/* commonly used remote control parsing */extern int dvb_usb_nec_rc_key_to_event(struct dvb_usb_device *, u8[], u32 *, int *);/* commonly used pll init and set functions */extern int dvb_usb_pll_init_i2c(struct dvb_frontend *);extern int dvb_usb_pll_set(struct dvb_frontend *, struct dvb_frontend_parameters *, u8[]);extern int dvb_usb_pll_set_i2c(struct dvb_frontend *, struct dvb_frontend_parameters *);/* commonly used firmware download types and function */struct hexline {	u8 len;	u32 addr;	u8 type;	u8 data[255];	u8 chk;};extern int usb_cypress_load_firmware(struct usb_device *udev, const struct firmware *fw, int type);#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产亚洲一二三区| 亚洲一区二区在线观看视频 | 99精品在线免费| 51午夜精品国产| 18成人在线视频| 国产剧情一区二区| 欧美一二三区在线观看| 亚洲综合视频网| 成人av资源下载| 精品国产乱码久久久久久蜜臀| 亚洲综合在线第一页| 成人h动漫精品| 久久综合给合久久狠狠狠97色69| 亚洲成年人网站在线观看| 从欧美一区二区三区| 久久一区二区视频| 久久se这里有精品| 日韩欧美成人一区二区| 日韩精品视频网| 欧美精品久久一区| 亚洲国产精品视频| 在线免费观看视频一区| 亚洲免费观看高清| 91麻豆自制传媒国产之光| 中文字幕欧美三区| 国产成a人亚洲精| 精品欧美乱码久久久久久1区2区| 日韩高清不卡一区二区三区| 欧美少妇一区二区| 图片区小说区国产精品视频| 欧美日韩一区不卡| 亚洲va国产va欧美va观看| 欧美日韩在线综合| 水蜜桃久久夜色精品一区的特点 | 99久久99精品久久久久久| 久久精品视频一区二区三区| 蜜桃视频一区二区| 日韩精品一区二区在线观看| 伦理电影国产精品| 精品国产露脸精彩对白| 国产精品中文字幕一区二区三区| 久久丝袜美腿综合| 国产69精品久久久久毛片| 国产精品国产自产拍高清av王其| 国产suv一区二区三区88区| 欧美精品日韩精品| 蜜桃av一区二区三区| 久久影院午夜片一区| 成人av网址在线观看| 亚洲精品你懂的| 欧美精品一卡两卡| 国产在线播放一区二区三区| 国产精品美女视频| 欧洲精品视频在线观看| 免费日本视频一区| 国产三级一区二区| 色婷婷久久综合| 蜜臀av性久久久久蜜臀av麻豆| 国产亚洲一二三区| 欧美亚洲综合另类| 久久国产精品一区二区| 国产精品成人免费| 欧美高清视频一二三区| 国产伦精品一区二区三区视频青涩 | 欧美一区二区三区免费在线看 | 亚洲精品一区二区三区99| 国产成人综合亚洲91猫咪| 亚洲老妇xxxxxx| 欧美一区二区网站| 国产成人激情av| 午夜激情久久久| 久久精品在线免费观看| 欧美性xxxxxx少妇| 精品夜夜嗨av一区二区三区| 国产精品久线观看视频| 7777精品伊人久久久大香线蕉完整版| 看国产成人h片视频| 国产精品剧情在线亚洲| 日韩女优毛片在线| 91女人视频在线观看| 视频一区国产视频| 亚洲免费观看高清| 2024国产精品视频| 宅男在线国产精品| 色综合久久久久| 国产福利电影一区二区三区| 香蕉久久一区二区不卡无毒影院| 中文字幕av免费专区久久| 91精品国产乱| 欧美伊人久久久久久久久影院| 丁香天五香天堂综合| 久久99精品国产91久久来源| 亚洲一区二区中文在线| 中文字幕一区二区三| 久久影院视频免费| 欧美大片在线观看一区| 欧美高清dvd| 欧美亚洲精品一区| 91福利国产成人精品照片| 国产馆精品极品| 国产乱码精品一区二区三| 久久国产精品99精品国产| 视频一区视频二区在线观看| 亚洲国产精品一区二区久久恐怖片| 国产精品久久网站| 国产精品色一区二区三区| 国产女同性恋一区二区| 久久天堂av综合合色蜜桃网| 欧美电视剧在线观看完整版| 日韩免费高清电影| 日韩欧美一级精品久久| 日韩欧美中文字幕公布| 日韩三区在线观看| 日韩欧美激情在线| 精品精品国产高清一毛片一天堂| 91精品国产入口| 日韩精品专区在线影院观看 | 国产剧情av麻豆香蕉精品| 久久国产精品露脸对白| 狠狠久久亚洲欧美| 国产在线不卡一区| 国产成人一级电影| av午夜一区麻豆| 91黄色小视频| 欧美午夜精品久久久久久孕妇 | 精品sm在线观看| 精品成人私密视频| 国产日本欧美一区二区| 国产视频一区在线观看| 国产精品色在线观看| 亚洲人精品午夜| 婷婷中文字幕综合| 另类调教123区| 国产成人aaa| 色综合天天综合在线视频| 欧美中文一区二区三区| 在线电影欧美成精品| 欧美mv和日韩mv国产网站| 日本一区二区三区免费乱视频| 国产精品国产三级国产普通话99 | 欧美在线高清视频| 欧美色老头old∨ideo| 日韩午夜激情电影| 国产欧美日韩精品一区| 一区二区在线观看av| 免费高清在线视频一区·| 懂色av一区二区三区免费看| 在线观看三级视频欧美| 精品国产sm最大网站免费看| 亚洲欧美日韩久久精品| 日韩成人一级片| 不卡影院免费观看| 欧美人伦禁忌dvd放荡欲情| 久久久美女艺术照精彩视频福利播放| 国产精品毛片久久久久久久| 亚洲午夜国产一区99re久久| 国产成人啪午夜精品网站男同| 91麻豆免费看| 精品国产成人在线影院| 一区二区不卡在线视频 午夜欧美不卡在| 天天综合网 天天综合色| 成人精品在线视频观看| 欧美年轻男男videosbes| 国产精品国产馆在线真实露脸 | 美脚の诱脚舐め脚责91| 91丨九色丨蝌蚪富婆spa| 欧美v日韩v国产v| 一区二区久久久久久| 成人激情文学综合网| 精品国免费一区二区三区| 亚洲综合999| 成人免费高清视频在线观看| 欧美一区二区日韩| 亚洲午夜久久久久久久久久久| 成人黄动漫网站免费app| 日韩欧美国产精品一区| 亚洲一级二级在线| 国产v日产∨综合v精品视频| 欧美一区二区三区在线视频| 亚洲欧美另类小说视频| 国产夫妻精品视频| 日韩欧美美女一区二区三区| 日韩精品亚洲专区| 欧美亚洲尤物久久| 亚洲精品免费看| 99久久精品久久久久久清纯| 久久精品夜色噜噜亚洲aⅴ| 开心九九激情九九欧美日韩精美视频电影 | 成人免费视频在线观看| 国产成人av电影在线| 久久久欧美精品sm网站| 狠狠狠色丁香婷婷综合久久五月| 欧美精品三级在线观看| 艳妇臀荡乳欲伦亚洲一区| 色综合天天综合在线视频| 综合自拍亚洲综合图不卡区| 91影视在线播放| 中文字幕五月欧美| 91丨porny丨户外露出| 日韩美女啊v在线免费观看|