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

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

?? spca561.h

?? 凌陽SPCA5XX解碼芯片USB驅動源代碼
?? H
?? 第 1 頁 / 共 2 頁
字號:
#ifndef SPCA561_INIT_H#define SPCA561_INIT_H  /****************************************************************************#	 	Sunplus spca561 library                                     ## 		Copyright (C) 2004 Michel Xhaard   mxhaard@magic.fr         ##                                                                           ## 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA ##                                                                           #****************************************************************************//* Initialization data   I'm not very sure how to split initialization from open data   chunks. For now, we'll consider everything as initialization *//* Frame packet header offsets for the spca561 */#define SPCA561_OFFSET_SNAP 1#define SPCA561_OFFSET_TYPE 2#define SPCA561_OFFSET_COMPRESS 3#define SPCA561_OFFSET_FRAMSEQ   4#define SPCA561_OFFSET_GPIO 5#define SPCA561_OFFSET_USBBUFF 6#define SPCA561_OFFSET_WIN2GRAVE 7#define SPCA561_OFFSET_WIN2RAVE 8#define SPCA561_OFFSET_WIN2BAVE 9#define SPCA561_OFFSET_WIN2GBAVE 10#define SPCA561_OFFSET_WIN1GRAVE 11#define SPCA561_OFFSET_WIN1RAVE 12#define SPCA561_OFFSET_WIN1BAVE 13#define SPCA561_OFFSET_WIN1GBAVE 14#define SPCA561_OFFSET_FREQ 15#define SPCA561_OFFSET_VSYNC 16#define SPCA561_OFFSET_DATA 17#define SPCA561_INDEX_I2C_BASE 0x8800#define SPCA561_SNAPBIT 0x20#define SPCA561_SNAPCTRL 0x40static int spca561_init(struct usb_spca50x *spca50x);static void spca561_start(struct usb_spca50x *spca50x);static void spca561_stop(struct usb_spca50x *spca50x);static __u16 spca561_setbrightness(struct usb_spca50x *spca50x);static __u16 spca561_getbrightness(struct usb_spca50x *spca50x);static __u16 spca561_setcontrast(struct usb_spca50x *spca50x);static __u16 spca561_getcontrast(struct usb_spca50x *spca50x);static void spca561_setAutobright (struct usb_spca50x *spca50x);static void spca561_shutdown(struct usb_spca50x *spca50x);/******************************************************************/static void spca561_InitI2c(struct usb_spca50x *spca50x,__u8 mode){	spca5xxRegWrite(spca50x->dev,0x00,0x92,0x8804 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,mode,0x8802 ,NULL ,0 );}static void spca561_WriteI2c(struct usb_spca50x *spca50x,__u16 valeur,__u16 registre){	int  retry = 60;	__u8 DataLow = 0;	__u8 DataHight = 0;	__u8 Data = 0;	DataLow = valeur & 0xFF ;	DataHight = (valeur >> 8) & 0xFF;	spca5xxRegWrite(spca50x->dev,0x00,registre ,0x8801 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,DataLow ,0x8805 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,DataHight ,0x8800 ,NULL ,0 );	while (retry--) {		spca5xxRegRead(spca50x->dev,0x00 ,0 ,0x8803 , &Data ,1);	if (!Data) 		break;	}}/****************** not in use **********************************/static int spca561_ReadI2c(struct usb_spca50x *spca50x, __u16 registre,__u8 mode){	int  retry = 60;		unsigned char value = 0;	unsigned char vallsb = 0;	__u8 Data = 0;	spca5xxRegWrite(spca50x->dev,0x00,0x92,0x8804 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,registre ,0x8801 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,(mode | 0x01),0x8802 ,NULL ,0 );	while (retry--) {		spca5xxRegRead(spca50x->dev,0x00 ,0 ,0x8803 ,&Data ,1);	if (!Data) 		break;	}	if (retry == 0) return -1;	spca5xxRegRead(spca50x->dev,0x00 ,0 ,0x8800 , &value ,1);	spca5xxRegRead(spca50x->dev,0x00 ,0 ,0x8805 , &vallsb ,1);	return (int) value << 8 | vallsb;}#if 0static int spca561_readEEpromid(struct usb_spca50x *spca50x){int release_number = 0;__u8 val =0;	spca5xxRegWrite(spca50x->dev,0x00,0x02,0x8201 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,0x08,0x8200 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,0x01,0x8200 ,NULL ,0 );	spca5xxRegRead(spca50x->dev,0x00,0x00,0x8205 ,&val ,1 );	release_number = val;	spca5xxRegRead(spca50x->dev,0x00,0x00,0x8206 ,&val ,1 );	release_number = (release_number << 8) | val;	spca5xxRegWrite(spca50x->dev,0x00,0x07,0x8201 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,0x08,0x8200 ,NULL ,0 );	spca5xxRegWrite(spca50x->dev,0x00,0x01,0x8200 ,NULL ,0 );	spca5xxRegRead(spca50x->dev,0x00,0x00,0x8205 ,&val ,1 );	release_number = (release_number << 8) | val;	spca5xxRegRead(spca50x->dev,0x00,0x00,0x8206 ,&val ,1 );	release_number = (release_number << 8) | val; // should find 0x00010080 for the 0x403b}static __u16 Pb100_init_0561_1[][2]={	/*reg,  value */	{0x0001,0x000d},	{0x0002,0x0018},	{0x0004,0x0165},	{0x0005,0x0025},	{0x0007,0x00aa},	{0x0020,0x1504},	{0x0039,0x0002},	{0x0035,0x0010},	{0x0009,0x1049},	{0x0028,0x000b},	{0x003b,0x000f},	{0x003c,0x0000},	{0,0}};static __u16 Pb100_init_0561_2[][2]={	{0x0003,0x0121},	{0x0004,0x0165},	{0x0005,0x002f},	{0x0006,0x0000},	{0x000a,0x0001},	{0x0009,0x0861},	{0x0035,0x0014},	{0,0}};static __u16 Pb100_init_403b_1[][2]={	{0x0003,0x0125},	{0x0004,0x0169},	{0x0005,0x003a},	{0x002f,0x0f00},	{0x0020,0x3304},	{0x0006,0x0000},	{0x0007,0x00aa},	{0x0039,0x000b},	{0x0035,0x0010},	{0x0009,0x23ff},	{0x0028,0x000b},	{0x003b,0x000f},	{0x003c,0x0000},	{0,0}};static __u16 Pb100_init_403b_2[][2]={	{0x0001,0x0003},	{0x0002,0x000e},	{0,0}};/******************** End not in use **********************/#endif static __u16 spca561_init_data[][3]={	{ 0 , 0x0000 , 0x8114 }, // Software GPIO output data	{ 0 , 0x0001 , 0x8114 }, // Software GPIO output data	{ 0 , 0x0000 , 0x8112 }, // Some kind of reset	{ 0 , 0x0003 , 0x8701 }, // PCLK clock delay adjustment	{ 0 , 0x0001 , 0x8703 }, // HSYNC from cmos inverted	{ 0 , 0x0011 , 0x8118 }, // Enable and conf sensor	{ 0 , 0x0001 , 0x8118 }, // Conf sensor	{ 0 , 0x0092 , 0x8804 }, // I know nothing about these	{ 0 , 0x0010 , 0x8802 }, // 0x88xx registers, so I won't	/*********************/	{ 0 , 0x000d , 0x8805 }, // sensor default setting	{ 0 , 0x0001 , 0x8801 }, // 1 <- 0x0d	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0018 , 0x8805 },	{ 0 , 0x0002 , 0x8801 }, // 2 <- 0x18	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0065 , 0x8805 },	{ 0 , 0x0004 , 0x8801 }, // 4 <- 0x01 0x65	{ 0 , 0x0001 , 0x8800 },	{ 0 , 0x0021 , 0x8805 },	{ 0 , 0x0005 , 0x8801 }, // 5 <- 0x21	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x00aa , 0x8805 },	{ 0 , 0x0007 , 0x8801 }, // 7 <- 0xaa	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0004 , 0x8805 },	{ 0 , 0x0020 , 0x8801 }, // 0x20 <- 0x15 0x04	{ 0 , 0x0015 , 0x8800 }, 	{ 0 , 0x0002 , 0x8805 },	{ 0 , 0x0039 , 0x8801 }, // 0x39 <- 0x02	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0010 , 0x8805 },	{ 0 , 0x0035 , 0x8801 }, // 0x35 <- 0x10	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0049 , 0x8805 },	{ 0 , 0x0009 , 0x8801 }, // 0x09 <- 0x10 0x49	{ 0 , 0x0010 , 0x8800 },	{ 0 , 0x000b , 0x8805 },	{ 0 , 0x0028 , 0x8801 }, // 0x28 <- 0x0b	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x000f , 0x8805 },	{ 0 , 0x003b , 0x8801 }, // 0x3b <- 0x0f	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0000 , 0x8805 },	{ 0 , 0x003c , 0x8801 }, // 0x3c <- 0x00	{ 0 , 0x0000 , 0x8800 },	/**********************/	{ 0 , 0x0018 , 0x8601 }, // Pixel/line selection for color separation	{ 0 , 0x0000 , 0x8602 }, // Optical black level for user setting	{ 0 , 0x0060 , 0x8604 }, // Optical black horizontal offset	{ 0 , 0x0002 , 0x8605 }, // Optical black vertical offset	{ 0 , 0x0000 , 0x8603 }, // Non-automatic optical black level	{ 0 , 0x0002 , 0x865b }, // Horizontal offset for valid pixels	{ 0 , 0x0000 , 0x865f }, // Vertical valid pixels window (x2)	{ 0 , 0x00b0 , 0x865d }, // Horizontal valid pixels window (x2)	{ 0 , 0x0090 , 0x865e }, // Vertical valid lines window (x2)	{ 0 , 0x00e0 , 0x8406 }, // Memory buffer threshold	{ 0 , 0x0000 , 0x8660 }, // Compensation memory stuff	{ 0 , 0x0002 , 0x8201 }, // Output address for r/w serial EEPROM	{ 0 , 0x0008 , 0x8200 }, // Clear valid bit for serial EEPROM	{ 0 , 0x0001 , 0x8200 }, // OprMode to be executed by hardware	{ 0 , 0x0007 , 0x8201 }, // Output address for r/w serial EEPROM	{ 0 , 0x0008 , 0x8200 }, // Clear valid bit for serial EEPROM	{ 0 , 0x0001 , 0x8200 }, // OprMode to be executed by hardware	{ 0 , 0x0010 , 0x8660 }, // Compensation memory stuff	{ 0 , 0x0018 , 0x8660 }, // Compensation memory stuff		{ 0 , 0x0004 , 0x8611 }, // R offset for white balance	{ 0 , 0x0004 , 0x8612 }, // Gr offset for white balance	{ 0 , 0x0007 , 0x8613 }, // B offset for white balance	{ 0 , 0x0000 , 0x8614 }, // Gb offset for white balance	{ 0 , 0x008c , 0x8651 }, // R gain for white balance	{ 0 , 0x008c , 0x8652 }, // Gr gain for white balance	{ 0 , 0x00b5 , 0x8653 }, // B gain for white balance	{ 0 , 0x008c , 0x8654 }, // Gb gain for white balance	{ 0 , 0x0002 , 0x8502 }, // Maximum average bit rate stuff		{ 0 , 0x0011 , 0x8802 },	{ 0 , 0x0087 , 0x8700 }, // Set master clock (96Mhz????)	{ 0 , 0x0081 , 0x8702 }, // Master clock output enable		{ 0 , 0x0000 , 0x8500 }, // Set image type (352x288 no compression)				 // Originally was 0x0010 (352x288 compression)		{ 0 , 0x0002 , 0x865b }, // Horizontal offset for valid pixels	{ 0 , 0x0003 , 0x865c }, // Vertical offset for valid lines	/*************************/ // sensor active	{ 0 , 0x0003 , 0x8801 }, // 0x03 <- 0x01 0x21 //289	{ 0 , 0x0021 , 0x8805 },	{ 0 , 0x0001 , 0x8800 },	{ 0 , 0x0004 , 0x8801 }, // 0x04 <- 0x01 0x65 //357	{ 0 , 0x0065 , 0x8805 },	{ 0 , 0x0001 , 0x8800 },	{ 0 , 0x0005 , 0x8801 }, // 0x05 <- 0x2f	{ 0 , 0x002f , 0x8805 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0006 , 0x8801 }, // 0x06 <- 0	{ 0 , 0x0000 , 0x8805 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x000a , 0x8801 }, // 0x0a <- 2	{ 0 , 0x0002 , 0x8805 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0009 , 0x8801 }, // 0x09 <- 0x1061	{ 0 , 0x0061 , 0x8805 },	{ 0 , 0x0010 , 0x8800 },	{ 0 , 0x0035 , 0x8801 }, // 0x35 <-0x14	{ 0 , 0x0014 , 0x8805 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0030 , 0x8112 }, // ISO and drop packet enable	{ 0 , 0x0000 , 0x8112 }, // Some kind of reset ????	{ 0 , 0x0009 , 0x8118 }, // Enable sensor and set standby	{ 0 , 0x0000 , 0x8114 }, // Software GPIO output data	{ 0 , 0x0000 , 0x8114 }, // Software GPIO output data	{ 0 , 0x0001 , 0x8114 }, // Software GPIO output data	{ 0 , 0x0000 , 0x8112 }, // Some kind of reset ???	{ 0 , 0x0003 , 0x8701 }, 	{ 0 , 0x0001 , 0x8703 },	{ 0 , 0x0011 , 0x8118 },	{ 0 , 0x0001 , 0x8118 },	/**************************/	{ 0 , 0x0092 , 0x8804 },	{ 0 , 0x0010 , 0x8802 },	{ 0 , 0x000d , 0x8805 },		{ 0 , 0x0001 , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0018 , 0x8805 },		{ 0 , 0x0002 , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0065 , 0x8805 },		{ 0 , 0x0004 , 0x8801 },	{ 0 , 0x0001 , 0x8800 },	{ 0 , 0x0021 , 0x8805 },		{ 0 , 0x0005 , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x00aa , 0x8805 },		{ 0 , 0x0007 , 0x8801 }, // mode 0xaa	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0004 , 0x8805 },		{ 0 , 0x0020 , 0x8801 },	{ 0 , 0x0015 , 0x8800 }, //mode 0x0415	{ 0 , 0x0002 , 0x8805 },		{ 0 , 0x0039 , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0010 , 0x8805 },		{ 0 , 0x0035 , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0049 , 0x8805 },		{ 0 , 0x0009 , 0x8801 },	{ 0 , 0x0010 , 0x8800 },	{ 0 , 0x000b , 0x8805 },		{ 0 , 0x0028 , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x000f , 0x8805 },		{ 0 , 0x003b , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0000 , 0x8805 },		{ 0 , 0x003c , 0x8801 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0002 , 0x8502 },		{ 0 , 0x0039 , 0x8801 },	{ 0 , 0x0000 , 0x8805 },	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0087 , 0x8700 }, //overwrite by start	{ 0 , 0x0081 , 0x8702 },	{ 0 , 0x0000 , 0x8500 },//	{ 0 , 0x0010 , 0x8500 },  -- Previous line was this	{ 0 , 0x0002 , 0x865b },	{ 0 , 0x0003 , 0x865c },	/************************/			{ 0 , 0x0003 , 0x8801 }, // 0x121-> 289	{ 0 , 0x0021 , 0x8805 },	{ 0 , 0x0001 , 0x8800 },		{ 0 , 0x0004 , 0x8801 }, //0x165 -> 357	{ 0 , 0x0065 , 0x8805 },	{ 0 , 0x0001 , 0x8800 },		{ 0 , 0x0005 , 0x8801 }, //0x2f //blanking control colonne	{ 0 , 0x002f , 0x8805 },	{ 0 , 0x0000 , 0x8800 },		{ 0 , 0x0006 , 0x8801 }, //0x00 //blanking mode row	{ 0 , 0x0000 , 0x8805 },	{ 0 , 0x0000 , 0x8800 },		{ 0 , 0x000a , 0x8801 }, //0x01 //0x02	{ 0 , 0x0001 , 0x8805 },	{ 0 , 0x0000 , 0x8800 },		{ 0 , 0x0009 , 0x8801 },// 0x1061 // setexposure times && pixel clock 0001 0 | 000 0110 0001	{ 0 , 0x0061 , 0x8805 },//61 31	{ 0 , 0x0008 , 0x8800 },// 08		{ 0 , 0x0035 , 0x8801 },// 0x14 // set gain general	{ 0 , 0x001F , 0x8805 },//0x14	{ 0 , 0x0000 , 0x8800 },	{ 0 , 0x0030 , 0x8112 },	{ 0 , 0 , 0 }} ;/***************** Vista stuff ******************************/static __u16 spca561_vista_data[][3]={/***********************/ { 0x00, 0xC8, 0x8631}, { 0x00, 0xC8, 0x8634}, { 0x00, 0x00, 0x8112}, /********************/ { 0x00, 0x01, 0x8114}, { 0x00, 0x21, 0x8118}, /********************/ { 0x00, 0x92, 0x8804}, { 0x00, 0x14, 0x8802}, //0x04  { 0x00, 0x03, 0x8801}, { 0x00, 0x25, 0x8805}, { 0x00, 0x01, 0x8800},  { 0x00, 0x04, 0x8801}, { 0x00, 0x69, 0x8805}, { 0x00, 0x01, 0x8800},  { 0x00, 0x05, 0x8801}, { 0x00, 0x3A, 0x8805}, { 0x00, 0x00, 0x8800},  { 0x00, 0x2F, 0x8801}, { 0x00, 0x00, 0x8805}, { 0x00, 0x0F, 0x8800},  { 0x00, 0x20, 0x8801}, { 0x00, 0x04, 0x8805}, { 0x00, 0x33, 0x8800},  { 0x00, 0x00, 0x8805}, { 0x00, 0x06, 0x8801}, { 0x00, 0x00, 0x8800},  { 0x00, 0xAA, 0x8805}, { 0x00, 0x07, 0x8801}, { 0x00, 0x00, 0x8800},  { 0x00, 0x0B, 0x8805}, { 0x00, 0x39, 0x8801}, { 0x00, 0x00, 0x8800},  { 0x00, 0x10, 0x8805}, //10 { 0x00, 0x35, 0x8801}, { 0x00, 0x00, 0x8800},  { 0x00, 0xff, 0x8805}, //00 31 { 0x00, 0x09, 0x8801}, // 0010 0 010 0000 0000 { 0x00, 0x23, 0x8800}, //22 08  { 0x00, 0x0B, 0x8805}, { 0x00, 0x28, 0x8801}, { 0x00, 0x00, 0x8800}, { 0 , 0x000f , 0x8805 },{ 0 , 0x003b , 0x8801 },{ 0 , 0x0000 , 0x8800 },	 { 0x00, 0x00, 0x8805}, { 0x00, 0x3C, 0x8801}, { 0x00, 0x00, 0x8800},  { 0x00, 0x90, 0x8604}, //144 { 0x00, 0x00, 0x8605}, { 0x00, 0xB0, 0x8603}, //176 { 0x00, 0x02, 0x8201}, { 0x00, 0x08, 0x8200}, { 0x00, 0x01, 0x8200},   { 0x00, 0x07, 0x8201}, { 0x00, 0x08, 0x8200}, { 0x00, 0x01, 0x8200},  { 0x00, 0x08, 0x8620}, { 0x00, 0x0C, 0x8620}, { 0x00, 0x00, 0x8610},// white balance { 0x00, 0x3F, 0x8611}, { 0x00, 0x3F, 0x8612}, { 0x00, 0x3F, 0x8613}, { 0x00, 0x3F, 0x8614}, { 0x00, 0x3F, 0x8615},   { 0x00, 0x55, 0x8616}, { 0x00, 0x3F, 0x8617}, { 0x00, 0xF0, 0x8505}, { 0x00, 0x32, 0x850A}, /*******************/// { 0 , 0x0081 , 0x8702 }, /*******************/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日日欢夜夜爽一区| 99riav久久精品riav| 丁香六月久久综合狠狠色| 欧美猛男超大videosgay| 久久精品免费在线观看| 日韩国产在线观看| 日本道精品一区二区三区| 国产午夜亚洲精品午夜鲁丝片| 午夜精品福利一区二区蜜股av| 99re热视频精品| 国产欧美一区二区精品忘忧草| 另类调教123区| 5月丁香婷婷综合| 亚洲永久精品国产| 91免费在线看| 中文字幕中文在线不卡住| 国产1区2区3区精品美女| 欧美岛国在线观看| 青青草精品视频| 欧美精品在欧美一区二区少妇| 亚洲美女精品一区| 99久久er热在这里只有精品15 | 欧美一区二区三区精品| 亚洲福利视频一区二区| 欧美性大战久久久| 亚洲综合久久久| 欧美优质美女网站| 亚洲欧美另类小说| 色一区在线观看| 亚洲三级在线观看| 色婷婷综合久久久中文一区二区| 国产日韩成人精品| 国产成人精品免费看| 国产欧美日韩综合| 成人av免费网站| 中文字幕亚洲欧美在线不卡| av电影一区二区| 天天影视色香欲综合网老头| 韩国v欧美v亚洲v日本v| www激情久久| 国产成人精品一区二| 制服丝袜亚洲网站| 精品影视av免费| 国产69精品久久99不卡| av激情亚洲男人天堂| 欧美日韩国产美| 亚洲国产精品一区二区www在线| 亚洲精品在线一区二区| 欧美日韩一区高清| caoporn国产一区二区| 久久精品国产一区二区三| 亚洲激情中文1区| 国产性色一区二区| 精品国精品自拍自在线| 欧美三电影在线| 91浏览器在线视频| 国产·精品毛片| 国产在线视频一区二区| 男人的j进女人的j一区| 亚洲一区中文日韩| 亚洲精品免费在线观看| 国产精品美女www爽爽爽| 精品国一区二区三区| 日韩午夜激情免费电影| 欧美日韩成人一区| 欧美日韩第一区日日骚| 欧美午夜宅男影院| 欧洲精品视频在线观看| 91蜜桃网址入口| 91一区在线观看| 97久久人人超碰| 色综合网站在线| 一本色道久久综合狠狠躁的推荐| 不卡一区中文字幕| 成人免费高清视频在线观看| 丁香一区二区三区| 成人午夜电影久久影院| 成人手机电影网| 白白色 亚洲乱淫| 97se亚洲国产综合自在线不卡| 91污在线观看| 欧美色图激情小说| 欧美人与性动xxxx| 欧美tickling网站挠脚心| 日韩精品中文字幕一区二区三区| 日韩免费在线观看| 久久综合九色综合欧美亚洲| 久久精品亚洲一区二区三区浴池| 久久久久国产精品免费免费搜索| 久久―日本道色综合久久 | 日韩午夜av电影| 欧美电视剧免费观看| 日韩欧美成人午夜| 欧美高清一级片在线观看| 国产精品超碰97尤物18| 一区二区三区日韩精品| 午夜精品久久久久久久99樱桃 | 欧美精品xxxxbbbb| 日韩欧美的一区二区| 国产婷婷色一区二区三区四区| 中文字幕日韩精品一区| 亚洲一区在线电影| 卡一卡二国产精品 | 视频一区视频二区在线观看| 麻豆国产一区二区| www.欧美.com| 欧美四级电影网| 欧美成人精品高清在线播放 | 中文字幕一区在线观看视频| 亚洲一区二区三区四区在线免费观看 | 成人免费毛片片v| 在线精品观看国产| 日韩欧美一区二区不卡| 一区在线播放视频| 日本怡春院一区二区| 国产成人久久精品77777最新版本| 99精品国产视频| 日韩一级大片在线| 中文字幕亚洲一区二区va在线| 性久久久久久久久久久久| 国产精选一区二区三区| 在线欧美日韩国产| 国产偷国产偷亚洲高清人白洁| 亚洲制服丝袜在线| 国产一区二区三区精品欧美日韩一区二区三区 | 欧美日韩高清一区二区不卡| 国产农村妇女毛片精品久久麻豆| 午夜久久电影网| eeuss影院一区二区三区| 日韩一区二区三区在线视频| 综合欧美亚洲日本| 国产精品自在在线| 在线91免费看| 亚洲激情男女视频| 国产精品一区二区久久不卡| 8v天堂国产在线一区二区| 日韩理论片一区二区| 国产电影一区二区三区| 欧美一区二区在线不卡| 一区二区三区国产精华| 懂色av一区二区三区免费看| 欧美成人高清电影在线| 亚洲成av人**亚洲成av**| 94-欧美-setu| 中文字幕成人网| 国产自产高清不卡| 日韩欧美的一区| 日韩精品每日更新| 在线观看免费一区| 亚洲色欲色欲www| 成人久久18免费网站麻豆| 久久婷婷国产综合精品青草| 丝袜美腿亚洲色图| 欧美日韩国产乱码电影| 亚洲福利一二三区| 欧美影院午夜播放| 亚洲在线观看免费| 色拍拍在线精品视频8848| 亚洲欧洲日韩女同| fc2成人免费人成在线观看播放| 国产欧美精品在线观看| 国产一区二区三区四区在线观看| 欧美电影免费观看完整版| 日韩成人伦理电影在线观看| 在线成人免费视频| 天天色综合成人网| 91.成人天堂一区| 日韩福利电影在线观看| 欧美男男青年gay1069videost| 亚洲成人精品一区二区| 欧美精品国产精品| 美女mm1313爽爽久久久蜜臀| 日韩一区二区免费在线观看| 久久国产生活片100| 精品奇米国产一区二区三区| 国产在线精品一区二区| 国产午夜精品美女毛片视频| 成人久久视频在线观看| 亚洲欧美国产三级| 欧美午夜精品久久久久久超碰| 一区二区免费在线| 欧美日韩成人综合| 激情综合一区二区三区| 国产色产综合色产在线视频| 成人avav影音| 一区二区成人在线视频| 欧美精品第1页| 国产精品系列在线观看| 国产精品二区一区二区aⅴ污介绍| 91亚洲精品久久久蜜桃网站 | 欧美日产国产精品| 蜜桃视频一区二区| 中国av一区二区三区| 欧美影片第一页| 久久超碰97中文字幕| 中文字幕在线观看不卡| 欧美日韩三级在线| 国产精品一区二区在线观看不卡| 成人免费一区二区三区视频| 在线看国产一区二区|