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

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

?? w9968cf.c

?? V4l driver for DVB HD
?? C
?? 第 1 頁 / 共 5 頁
字號:
/*************************************************************************** * Video4Linux driver for W996[87]CF JPEG USB Dual Mode Camera Chip.       * *                                                                         * * Copyright (C) 2002-2004 by Luca Risolia <luca.risolia@studio.unibo.it>  * *                                                                         * * - Memory management code from bttv driver by Ralph Metzler,             * *   Marcus Metzler and Gerd Knorr.                                        * * - I2C interface to kernel, high-level image sensor control routines and * *   some symbolic names from OV511 driver by Mark W. McClelland.          * * - Low-level I2C fast write function by Piotr Czerczak.                  * * - Low-level I2C read function by Frederic Jouault.                      * *                                                                         * * This program is free software; you can redistribute it and/or modify    * * it under the terms of the GNU General Public License as published by    * * the Free Software Foundation; either version 2 of the License, or       * * (at your option) any later version.                                     * *                                                                         * * This program is distributed in the hope that it will be useful,         * * but WITHOUT ANY WARRANTY; without even the implied warranty of          * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           * * GNU General Public License for more details.                            * *                                                                         * * You should have received a copy of the GNU General Public License       * * along with this program; if not, write to the Free Software             * * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.               * ***************************************************************************/#include <linux/module.h>#include <linux/kernel.h>#include <linux/kmod.h>#include <linux/init.h>#include <linux/fs.h>#include <linux/vmalloc.h>#include <linux/slab.h>#include <linux/mm.h>#include <linux/string.h>#include <linux/errno.h>#include <linux/sched.h>#include <linux/ioctl.h>#include <linux/delay.h>#include <linux/stddef.h>#include <asm/page.h>#include <asm/uaccess.h>#include <linux/page-flags.h>#include <linux/moduleparam.h>#include "w9968cf.h"#include "w9968cf_decoder.h"static struct w9968cf_vpp_t* w9968cf_vpp;static DECLARE_WAIT_QUEUE_HEAD(w9968cf_vppmod_wait);static LIST_HEAD(w9968cf_dev_list); /* head of V4L registered cameras list */static DEFINE_MUTEX(w9968cf_devlist_mutex); /* semaphore for list traversal */static DECLARE_RWSEM(w9968cf_disconnect); /* prevent races with open() *//**************************************************************************** * Module macros and parameters                                             * ****************************************************************************/MODULE_DEVICE_TABLE(usb, winbond_id_table);MODULE_AUTHOR(W9968CF_MODULE_AUTHOR" "W9968CF_AUTHOR_EMAIL);MODULE_DESCRIPTION(W9968CF_MODULE_NAME);MODULE_VERSION(W9968CF_MODULE_VERSION);MODULE_LICENSE(W9968CF_MODULE_LICENSE);MODULE_SUPPORTED_DEVICE("Video");static int ovmod_load = W9968CF_OVMOD_LOAD;static unsigned short simcams = W9968CF_SIMCAMS;static short video_nr[]={[0 ... W9968CF_MAX_DEVICES-1] = -1}; /*-1=first free*/static unsigned int packet_size[] = {[0 ... W9968CF_MAX_DEVICES-1] =				     W9968CF_PACKET_SIZE};static unsigned short max_buffers[] = {[0 ... W9968CF_MAX_DEVICES-1] =				       W9968CF_BUFFERS};static int double_buffer[] = {[0 ... W9968CF_MAX_DEVICES-1] =			      W9968CF_DOUBLE_BUFFER};static int clamping[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_CLAMPING};static unsigned short filter_type[]= {[0 ... W9968CF_MAX_DEVICES-1] =				      W9968CF_FILTER_TYPE};static int largeview[]= {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_LARGEVIEW};static unsigned short decompression[] = {[0 ... W9968CF_MAX_DEVICES-1] =					 W9968CF_DECOMPRESSION};static int upscaling[]= {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_UPSCALING};static unsigned short force_palette[] = {[0 ... W9968CF_MAX_DEVICES-1] = 0};static int force_rgb[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_FORCE_RGB};static int autobright[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_AUTOBRIGHT};static int autoexp[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_AUTOEXP};static unsigned short lightfreq[] = {[0 ... W9968CF_MAX_DEVICES-1] =				     W9968CF_LIGHTFREQ};static int bandingfilter[] = {[0 ... W9968CF_MAX_DEVICES-1]=			      W9968CF_BANDINGFILTER};static short clockdiv[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_CLOCKDIV};static int backlight[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_BACKLIGHT};static int mirror[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_MIRROR};static int monochrome[] = {[0 ... W9968CF_MAX_DEVICES-1]=W9968CF_MONOCHROME};static unsigned int brightness[] = {[0 ... W9968CF_MAX_DEVICES-1] =				    W9968CF_BRIGHTNESS};static unsigned int hue[] = {[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_HUE};static unsigned int colour[]={[0 ... W9968CF_MAX_DEVICES-1] = W9968CF_COLOUR};static unsigned int contrast[] = {[0 ... W9968CF_MAX_DEVICES-1] =				  W9968CF_CONTRAST};static unsigned int whiteness[] = {[0 ... W9968CF_MAX_DEVICES-1] =				   W9968CF_WHITENESS};#ifdef W9968CF_DEBUGstatic unsigned short debug = W9968CF_DEBUG_LEVEL;static int specific_debug = W9968CF_SPECIFIC_DEBUG;#endifstatic unsigned int param_nv[24]; /* number of values per parameter */#ifdef CONFIG_KMODmodule_param(ovmod_load, bool, 0644);#endifmodule_param(simcams, ushort, 0644);module_param_array(video_nr, short, &param_nv[0], 0444);module_param_array(packet_size, uint, &param_nv[1], 0444);module_param_array(max_buffers, ushort, &param_nv[2], 0444);module_param_array(double_buffer, bool, &param_nv[3], 0444);module_param_array(clamping, bool, &param_nv[4], 0444);module_param_array(filter_type, ushort, &param_nv[5], 0444);module_param_array(largeview, bool, &param_nv[6], 0444);module_param_array(decompression, ushort, &param_nv[7], 0444);module_param_array(upscaling, bool, &param_nv[8], 0444);module_param_array(force_palette, ushort, &param_nv[9], 0444);module_param_array(force_rgb, ushort, &param_nv[10], 0444);module_param_array(autobright, bool, &param_nv[11], 0444);module_param_array(autoexp, bool, &param_nv[12], 0444);module_param_array(lightfreq, ushort, &param_nv[13], 0444);module_param_array(bandingfilter, bool, &param_nv[14], 0444);module_param_array(clockdiv, short, &param_nv[15], 0444);module_param_array(backlight, bool, &param_nv[16], 0444);module_param_array(mirror, bool, &param_nv[17], 0444);module_param_array(monochrome, bool, &param_nv[18], 0444);module_param_array(brightness, uint, &param_nv[19], 0444);module_param_array(hue, uint, &param_nv[20], 0444);module_param_array(colour, uint, &param_nv[21], 0444);module_param_array(contrast, uint, &param_nv[22], 0444);module_param_array(whiteness, uint, &param_nv[23], 0444);#ifdef W9968CF_DEBUGmodule_param(debug, ushort, 0644);module_param(specific_debug, bool, 0644);#endif#ifdef CONFIG_KMODMODULE_PARM_DESC(ovmod_load,		 "\n<0|1> Automatic 'ovcamchip' module loading."		 "\n0 disabled, 1 enabled."		 "\nIf enabled,'insmod' searches for the required 'ovcamchip'"		 "\nmodule in the system, according to its configuration, and"		 "\nattempts to load that module automatically. This action is"		 "\nperformed once as soon as the 'w9968cf' module is loaded"		 "\ninto memory."		 "\nDefault value is "__MODULE_STRING(W9968CF_OVMOD_LOAD)"."		 "\n");#endifMODULE_PARM_DESC(simcams,		 "\n<n> Number of cameras allowed to stream simultaneously."		 "\nn may vary from 0 to "		 __MODULE_STRING(W9968CF_MAX_DEVICES)"."		 "\nDefault value is "__MODULE_STRING(W9968CF_SIMCAMS)"."		 "\n");MODULE_PARM_DESC(video_nr,		 "\n<-1|n[,...]> Specify V4L minor mode number."		 "\n -1 = use next available (default)"		 "\n  n = use minor number n (integer >= 0)"		 "\nYou can specify up to "__MODULE_STRING(W9968CF_MAX_DEVICES)		 " cameras this way."		 "\nFor example:"		 "\nvideo_nr=-1,2,-1 would assign minor number 2 to"		 "\nthe second camera and use auto for the first"		 "\none and for every other camera."		 "\n");MODULE_PARM_DESC(packet_size,		 "\n<n[,...]> Specify the maximum data payload"		 "\nsize in bytes for alternate settings, for each device."		 "\nn is scaled between 63 and 1023 "		 "(default is "__MODULE_STRING(W9968CF_PACKET_SIZE)")."		 "\n");MODULE_PARM_DESC(max_buffers,		 "\n<n[,...]> For advanced users."		 "\nSpecify the maximum number of video frame buffers"		 "\nto allocate for each device, from 2 to "		 __MODULE_STRING(W9968CF_MAX_BUFFERS)		 ". (default is "__MODULE_STRING(W9968CF_BUFFERS)")."		 "\n");MODULE_PARM_DESC(double_buffer,		 "\n<0|1[,...]> "		 "Hardware double buffering: 0 disabled, 1 enabled."		 "\nIt should be enabled if you want smooth video output: if"		 "\nyou obtain out of sync. video, disable it, or try to"		 "\ndecrease the 'clockdiv' module parameter value."		 "\nDefault value is "__MODULE_STRING(W9968CF_DOUBLE_BUFFER)		 " for every device."		 "\n");MODULE_PARM_DESC(clamping,		 "\n<0|1[,...]> Video data clamping: 0 disabled, 1 enabled."		 "\nDefault value is "__MODULE_STRING(W9968CF_CLAMPING)		 " for every device."		 "\n");MODULE_PARM_DESC(filter_type,		 "\n<0|1|2[,...]> Video filter type."		 "\n0 none, 1 (1-2-1) 3-tap filter, "		 "2 (2-3-6-3-2) 5-tap filter."		 "\nDefault value is "__MODULE_STRING(W9968CF_FILTER_TYPE)		 " for every device."		 "\nThe filter is used to reduce noise and aliasing artifacts"		 "\nproduced by the CCD or CMOS image sensor, and the scaling"		 " process."		 "\n");MODULE_PARM_DESC(largeview,		 "\n<0|1[,...]> Large view: 0 disabled, 1 enabled."		 "\nDefault value is "__MODULE_STRING(W9968CF_LARGEVIEW)		 " for every device."		 "\n");MODULE_PARM_DESC(upscaling,		 "\n<0|1[,...]> Software scaling (for non-compressed video):"		 "\n0 disabled, 1 enabled."		 "\nDisable it if you have a slow CPU or you don't have"		 " enough memory."		 "\nDefault value is "__MODULE_STRING(W9968CF_UPSCALING)		 " for every device."		 "\nIf 'w9968cf-vpp' is not present, this parameter is"		 " set to 0."		 "\n");MODULE_PARM_DESC(decompression,		 "\n<0|1|2[,...]> Software video decompression:"		 "\n- 0 disables decompression (doesn't allow formats needing"		 " decompression)"		 "\n- 1 forces decompression (allows formats needing"		 " decompression only);"		 "\n- 2 allows any permitted formats."		 "\nFormats supporting compressed video are YUV422P and"		 " YUV420P/YUV420 "		 "\nin any resolutions where both width and height are "		 "a multiple of 16."		 "\nDefault value is "__MODULE_STRING(W9968CF_DECOMPRESSION)		 " for every device."		 "\nIf 'w9968cf-vpp' is not present, forcing decompression is "		 "\nnot allowed; in this case this parameter is set to 2."		 "\n");MODULE_PARM_DESC(force_palette,		 "\n<0"		 "|" __MODULE_STRING(VIDEO_PALETTE_UYVY)		 "|" __MODULE_STRING(VIDEO_PALETTE_YUV420)		 "|" __MODULE_STRING(VIDEO_PALETTE_YUV422P)		 "|" __MODULE_STRING(VIDEO_PALETTE_YUV420P)		 "|" __MODULE_STRING(VIDEO_PALETTE_YUYV)		 "|" __MODULE_STRING(VIDEO_PALETTE_YUV422)		 "|" __MODULE_STRING(VIDEO_PALETTE_GREY)		 "|" __MODULE_STRING(VIDEO_PALETTE_RGB555)		 "|" __MODULE_STRING(VIDEO_PALETTE_RGB565)		 "|" __MODULE_STRING(VIDEO_PALETTE_RGB24)		 "|" __MODULE_STRING(VIDEO_PALETTE_RGB32)		 "[,...]>"		 " Force picture palette."		 "\nIn order:"		 "\n- 0 allows any of the following formats:"		 "\n- UYVY    16 bpp - Original video, compression disabled"		 "\n- YUV420  12 bpp - Original video, compression enabled"		 "\n- YUV422P 16 bpp - Original video, compression enabled"		 "\n- YUV420P 12 bpp - Original video, compression enabled"		 "\n- YUVY    16 bpp - Software conversion from UYVY"		 "\n- YUV422  16 bpp - Software conversion from UYVY"		 "\n- GREY     8 bpp - Software conversion from UYVY"		 "\n- RGB555  16 bpp - Software conversion from UYVY"		 "\n- RGB565  16 bpp - Software conversion from UYVY"		 "\n- RGB24   24 bpp - Software conversion from UYVY"		 "\n- RGB32   32 bpp - Software conversion from UYVY"		 "\nWhen not 0, this parameter will override 'decompression'."		 "\nDefault value is 0 for every device."		 "\nInitial palette is "		 __MODULE_STRING(W9968CF_PALETTE_DECOMP_ON)"."		 "\nIf 'w9968cf-vpp' is not present, this parameter is"		 " set to 9 (UYVY)."		 "\n");MODULE_PARM_DESC(force_rgb,		 "\n<0|1[,...]> Read RGB video data instead of BGR:"		 "\n 1 = use RGB component ordering."		 "\n 0 = use BGR component ordering."		 "\nThis parameter has effect when using RGBX palettes only."		 "\nDefault value is "__MODULE_STRING(W9968CF_FORCE_RGB)		 " for every device."		 "\n");MODULE_PARM_DESC(autobright,		 "\n<0|1[,...]> Image sensor automatically changes brightness:"		 "\n 0 = no, 1 = yes"		 "\nDefault value is "__MODULE_STRING(W9968CF_AUTOBRIGHT)		 " for every device."		 "\n");MODULE_PARM_DESC(autoexp,		 "\n<0|1[,...]> Image sensor automatically changes exposure:"		 "\n 0 = no, 1 = yes"		 "\nDefault value is "__MODULE_STRING(W9968CF_AUTOEXP)		 " for every device."		 "\n");MODULE_PARM_DESC(lightfreq,		 "\n<50|60[,...]> Light frequency in Hz:"		 "\n 50 for European and Asian lighting,"		 " 60 for American lighting."		 "\nDefault value is "__MODULE_STRING(W9968CF_LIGHTFREQ)		 " for every device."		 "\n");MODULE_PARM_DESC(bandingfilter,		 "\n<0|1[,...]> Banding filter to reduce effects of"		 " fluorescent lighting:"		 "\n 0 disabled, 1 enabled."		 "\nThis filter tries to reduce the pattern of horizontal"		 "\nlight/dark bands caused by some (usually fluorescent)"		 " lighting."		 "\nDefault value is "__MODULE_STRING(W9968CF_BANDINGFILTER)		 " for every device."		 "\n");MODULE_PARM_DESC(clockdiv,		 "\n<-1|n[,...]> "		 "Force pixel clock divisor to a specific value (for experts):"		 "\n  n may vary from 0 to 127."		 "\n -1 for automatic value."		 "\nSee also the 'double_buffer' module parameter."		 "\nDefault value is "__MODULE_STRING(W9968CF_CLOCKDIV)		 " for every device."		 "\n");MODULE_PARM_DESC(backlight,		 "\n<0|1[,...]> Objects are lit from behind:"		 "\n 0 = no, 1 = yes"		 "\nDefault value is "__MODULE_STRING(W9968CF_BACKLIGHT)		 " for every device."		 "\n");MODULE_PARM_DESC(mirror,		 "\n<0|1[,...]> Reverse image horizontally:"		 "\n 0 = no, 1 = yes"		 "\nDefault value is "__MODULE_STRING(W9968CF_MIRROR)		 " for every device."		 "\n");MODULE_PARM_DESC(monochrome,		 "\n<0|1[,...]> Use image sensor as monochrome sensor:"		 "\n 0 = no, 1 = yes"		 "\nNot all the sensors support monochrome color."		 "\nDefault value is "__MODULE_STRING(W9968CF_MONOCHROME)		 " for every device."		 "\n");MODULE_PARM_DESC(brightness,		 "\n<n[,...]> Set picture brightness (0-65535)."		 "\nDefault value is "__MODULE_STRING(W9968CF_BRIGHTNESS)		 " for every device."		 "\nThis parameter has no effect if 'autobright' is enabled."		 "\n");MODULE_PARM_DESC(hue,		 "\n<n[,...]> Set picture hue (0-65535)."		 "\nDefault value is "__MODULE_STRING(W9968CF_HUE)		 " for every device."		 "\n");MODULE_PARM_DESC(colour,		 "\n<n[,...]> Set picture saturation (0-65535)."		 "\nDefault value is "__MODULE_STRING(W9968CF_COLOUR)		 " for every device."		 "\n");MODULE_PARM_DESC(contrast,		 "\n<n[,...]> Set picture contrast (0-65535)."		 "\nDefault value is "__MODULE_STRING(W9968CF_CONTRAST)		 " for every device."		 "\n");MODULE_PARM_DESC(whiteness,		 "\n<n[,...]> Set picture whiteness (0-65535)."		 "\nDefault value is "__MODULE_STRING(W9968CF_WHITENESS)		 " for every device."		 "\n");#ifdef W9968CF_DEBUGMODULE_PARM_DESC(debug,		 "\n<n> Debugging information level, from 0 to 6:"		 "\n0 = none (use carefully)"		 "\n1 = critical errors"		 "\n2 = significant informations"		 "\n3 = configuration or general messages"		 "\n4 = warnings"		 "\n5 = called functions"		 "\n6 = function internals"		 "\nLevel 5 and 6 are useful for testing only, when only "		 "one device is used."		 "\nDefault value is "__MODULE_STRING(W9968CF_DEBUG_LEVEL)"."		 "\n");MODULE_PARM_DESC(specific_debug,		 "\n<0|1> Enable or disable specific debugging messages:"		 "\n0 = print messages concerning every level"		 " <= 'debug' level."		 "\n1 = print messages concerning the level"		 " indicated by 'debug'."		 "\nDefault value is "		 __MODULE_STRING(W9968CF_SPECIFIC_DEBUG)"."		 "\n");#endif /* W9968CF_DEBUG *//**************************************************************************** * Some prototypes                                                          *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区在线观看视频| 卡一卡二国产精品 | 欧美综合一区二区三区| 欧美色图一区二区三区| 久久精品综合网| 日韩精品乱码av一区二区| 国产91在线观看| 91精品国产欧美一区二区18| 亚洲欧美偷拍三级| 精品在线播放免费| 9191国产精品| 亚洲一区二区三区视频在线| www.在线成人| 久久精品亚洲一区二区三区浴池| 天天综合色天天| 在线观看一区二区视频| 中文字幕亚洲综合久久菠萝蜜| 国产主播一区二区| 欧美电影免费观看高清完整版在| 亚洲1区2区3区视频| 在线观看网站黄不卡| 中文字幕在线播放不卡一区| 国产成人综合在线| 久久久av毛片精品| 精品亚洲aⅴ乱码一区二区三区| 欧美蜜桃一区二区三区| 亚洲成人自拍网| 91激情五月电影| 亚洲精品中文在线观看| 色综合久久综合网| 一区二区三区91| 欧美视频一区二区三区| 亚洲一区二区成人在线观看| 欧美亚洲综合色| 亚洲一区二区三区国产| 欧美人伦禁忌dvd放荡欲情| 三级久久三级久久久| 欧美一区二区三区四区在线观看 | 欧美日韩日日夜夜| 亚洲国产精品视频| 欧美另类一区二区三区| 五月天婷婷综合| 日韩视频免费观看高清在线视频| 日韩国产成人精品| 日韩欧美你懂的| 久久av老司机精品网站导航| 26uuu色噜噜精品一区二区| 国产精品99久久久| 国产精品国产自产拍高清av| 91网址在线看| 午夜精品福利久久久| 欧美电影精品一区二区| 国产一区二三区| 国产精品久久久久婷婷| 在线精品国精品国产尤物884a| 亚洲成人资源网| 日韩精品在线网站| av在线播放不卡| 亚洲地区一二三色| 精品国产乱码久久久久久老虎| 国产麻豆9l精品三级站| 亚洲区小说区图片区qvod| 欧美日韩一区二区三区免费看| 免费成人结看片| 中文字幕一区免费在线观看| 欧美美女一区二区| 国产91丝袜在线观看| 亚洲bdsm女犯bdsm网站| 国产亚洲欧美日韩日本| 欧美丝袜自拍制服另类| 日日噜噜夜夜狠狠视频欧美人 | 欧美日韩一区二区三区不卡| 蜜桃久久av一区| 亚洲国产经典视频| 欧美精品在欧美一区二区少妇| 国产黄色精品网站| 天堂成人国产精品一区| 国产精品私人自拍| 日韩欧美第一区| 色婷婷综合中文久久一本| 黑人巨大精品欧美一区| 一区二区三区在线影院| 久久久亚洲精品一区二区三区| 日本精品一区二区三区高清| 国产一区二区三区四区五区入口| 亚洲一区av在线| 中文字幕av一区 二区| 欧美一区二区视频在线观看2022| 成人视屏免费看| 精品在线视频一区| 图片区小说区国产精品视频| 亚洲视频电影在线| 中文幕一区二区三区久久蜜桃| 欧美男生操女生| 欧美视频三区在线播放| 91久久精品一区二区三| 国产成人免费视频网站| 久久国产精品色婷婷| 日韩影院在线观看| 一个色综合网站| 亚洲欧美日韩国产手机在线| 日本一区二区三区电影| 精品国产髙清在线看国产毛片| 欧美日韩国产美| 欧美视频三区在线播放| 在线免费精品视频| 91福利国产精品| 日本精品一区二区三区高清| 色婷婷av一区二区三区gif| 成人av网在线| 成人精品鲁一区一区二区| 国产成人精品影院| 大桥未久av一区二区三区中文| 国产一本一道久久香蕉| 国产一区二区三区在线观看精品 | 国产精品麻豆视频| 国产精品美女久久久久久久久| 欧美激情资源网| 国产精品伦理一区二区| 成人免费在线视频观看| 亚洲视频在线观看一区| 亚洲精品免费视频| 亚洲一区二三区| 日本欧美韩国一区三区| 九九视频精品免费| 国产高清视频一区| www.一区二区| 欧美日韩一区二区三区在线| 日韩一区二区三区免费观看| 2017欧美狠狠色| 专区另类欧美日韩| 夜夜嗨av一区二区三区网页| 亚洲va欧美va人人爽午夜| 偷拍一区二区三区四区| 国产麻豆成人精品| 91一区二区在线| 欧美精品自拍偷拍| 久久久国产精品不卡| 亚洲欧美另类小说| 日韩av中文字幕一区二区 | 奇米四色…亚洲| 国产精品99久久久| 91社区在线播放| 91精品国产色综合久久ai换脸| 精品理论电影在线| 日韩美女久久久| 日韩国产高清在线| av不卡免费电影| 欧美日韩极品在线观看一区| 久久人人超碰精品| 亚洲高清在线视频| 国产精一区二区三区| 在线免费观看视频一区| 久久综合九色综合欧美98 | 欧美精品久久99| 国产亚洲成av人在线观看导航 | 国产麻豆成人传媒免费观看| 91视频免费看| 久久五月婷婷丁香社区| 亚洲一区二区在线免费观看视频 | 色综合久久88色综合天天6 | 91精品在线观看入口| 国产欧美一区二区精品性色| 亚洲一区二区三区四区五区中文 | 在线观看日韩毛片| 久久久国产精品不卡| 日韩中文字幕亚洲一区二区va在线| 不卡欧美aaaaa| 日韩欧美激情在线| 亚洲自拍偷拍网站| 国产99精品视频| 日韩视频在线观看一区二区| 亚洲综合免费观看高清完整版在线 | 日韩毛片视频在线看| 韩国精品久久久| 欧美日本不卡视频| 夜夜揉揉日日人人青青一国产精品| 福利一区二区在线观看| 精品成人一区二区三区| 首页国产欧美日韩丝袜| 欧美中文字幕一区二区三区| 国产精品毛片大码女人| 成人性视频免费网站| 欧美成人一区二区三区| 日本麻豆一区二区三区视频| 欧美三级电影在线看| 亚洲精品欧美激情| 一本到不卡免费一区二区| 自拍偷拍国产精品| 99久久99久久综合| 中文字幕第一区| 成人免费观看视频| 国产精品色婷婷| 国产成人免费视| 国产精品美女一区二区三区| 丁香一区二区三区| 国产视频一区在线观看 | 中文在线免费一区三区高中清不卡| 久久99精品国产麻豆婷婷| 欧美一级精品大片|