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

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

?? spcav4l.c

?? 嵌入式實時視頻監控系統的實現源碼。很經典的程序
?? C
?? 第 1 頁 / 共 2 頁
字號:
/****************************************************************************#	 	spcav4l: v4l library.				            ##This package work with the spca5xx based webcam with the raw jpeg feature. ##All the decoding is in user space with the help of libjpeg.                ##.                                                                          ## 		Copyright (C) 2003 2004 2005 Michel Xhaard                  ##                                                                           ## 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 ##                                                                           #****************************************************************************//* MOFIFIED by MX for Acme FOX Eltrax 100LX and Arm9 only accept jpeg webcam */#include "spcaframe.h"#include "spcav4l.h"#include "utils.h"#define OUTFRMNUMB 4static int debug = 0;static int init_v4l (struct vdIn *vd);#if 0static int checkpalette (struct vdIn *vd);static int check_palettesize(struct vdIn *vd );static int probePalette ( struct vdIn *vd );static int probeSize ( struct vdIn *vd );#endifstatic int isSpcaChip ( const char * BridgeName );/* return Bridge otherwhise -1 */static int GetStreamId ( const char * BridgeName );/* return Stream_id otherwhise -1 */static intGetDepth (int format);static struct bridge_list Blist[]={	{BRIDGE_SPCA505,"SPCA505"},	{BRIDGE_SPCA506,"SPCA506"},	{BRIDGE_SPCA501,"SPCA501"},	{BRIDGE_SPCA508,"SPCA508"},	{BRIDGE_SPCA504,"SPCA504"},	{BRIDGE_SPCA500,"SPCA500"},	{BRIDGE_SPCA504B,"SPCA504B"},	{BRIDGE_SPCA533,"SPCA533"},	{BRIDGE_SPCA504C,"SPCA504C"},	{BRIDGE_SPCA561,"SPCA561"},	{BRIDGE_SPCA536,"SPCA536"},	{BRIDGE_SONIX,"SN9C102"},	{BRIDGE_ZR364XX,"ZR364XX"},	{BRIDGE_ZC3XX,"ZC301-2"},	{BRIDGE_CX11646,"CX11646"},	{BRIDGE_TV8532,"TV8532"},	{BRIDGE_ETOMS,"ET61XX51"},	{BRIDGE_SN9CXXX,"SN9CXXX"},	{BRIDGE_MR97311,"MR97311"},	{BRIDGE_UNKNOW,"UNKNOW"},	{-1,NULL}};#if 0/* Camera type jpeg yuvy yyuv yuyv grey gbrg*/static struct palette_list Plist[] ={	{JPEG,"JPEG"},	{YUVY,"YUVY"},	{YYUV,"YYUV"},	{YUYV,"YUYV"},	{GREY,"GREY"},	{GBRG,"GBRG"},	{SN9C,"SN9C"},	{GBGR,"GBGR"},	{UNOW,"UNOW"},	{-1,NULL}};#endif/*****************************************************************************			Public****************************************************************************/intinit_videoIn (struct vdIn *vd, char *device, int width, int height,	      int format, int grabmethod){  int err = -1;  int i;  if (vd == NULL || device == NULL)    return -1;  if (width == 0 || height == 0)    return -1;  if(grabmethod < 0 || grabmethod > 1)  	grabmethod = 1; //read by default;	// check format   vd->videodevice = NULL;  vd->cameraname = NULL;  vd->videodevice = NULL;  vd->videodevice = (char *) realloc (vd->videodevice, 16);  vd->cameraname = (char *) realloc (vd->cameraname, 32);  snprintf (vd->videodevice, 12, "%s", device);  if(debug) printf("video %s \n",vd->videodevice);  memset (vd->cameraname, 0, sizeof (vd->cameraname));  memset(vd->bridge, 0, sizeof(vd->bridge));   vd->signalquit = 1;  vd->hdrwidth = width;  vd->hdrheight = height;  /*          compute the max frame size   */  vd->formatIn = format;   vd->bppIn = GetDepth (vd->formatIn);  vd->grabMethod = grabmethod;		//mmap or read   vd->pFramebuffer = NULL;  /* init and check all setting */  err = init_v4l (vd);  /* allocate the 4 frames output buffer */  for (i = 0; i < OUTFRMNUMB; i++)    {      vd->ptframe[i] = NULL;      vd->ptframe[i] =	(unsigned char *) realloc (vd->ptframe[i], sizeof(struct frame_t) + (size_t) vd->framesizeIn );      vd->framelock[i] = 0;    }  vd->frame_cour = 0;       pthread_mutex_init (&vd->grabmutex, NULL);  return err;}intclose_v4l (struct vdIn *vd){  int i;  if (vd->grabMethod)    {      if(debug) printf ("unmapping frame buffer\n");      munmap (vd->pFramebuffer, vd->mmapsize);    } else {    	free(vd->pFramebuffer);	vd->pFramebuffer = NULL;    }  if(debug) printf ("close video_device\n");    close (vd->fd);  /* dealloc the whole buffers */  if (vd->videodevice)    {      free (vd->videodevice);      vd->videodevice = NULL;    }  if (vd->cameraname)    {      free (vd->cameraname);      vd->cameraname = NULL;    }  for (i = 0; i < OUTFRMNUMB; i++)    {      if (vd->ptframe[i])	{	  free (vd->ptframe[i]);	  vd->ptframe[i] = NULL;	  vd->framelock[i] = 0;	  if(debug) printf ("freeing output buffer %d\n",i);	}    }     pthread_mutex_destroy (&vd->grabmutex);}int convertframe(unsigned char *dst,unsigned char *src, int width,int height, int formatIn, int size){ 	int jpegsize =0;	switch (formatIn){	case VIDEO_PALETTE_JPEG:	jpegsize = get_jpegsize(src, size);	if (jpegsize < 0) break;	memcpy(dst,src,jpegsize);		break;	default:	break;	}return jpegsize;}int v4lGrab (struct vdIn *vd ){	static	int frame = 0;		  int len;    int size;  int erreur = 0;  int jpegsize = 0;  struct frame_t *headerframe;  double timecourant =0;  double temps = 0;  timecourant = ms_time();  if (vd->grabMethod)    {           vd->vmmap.height = vd->hdrheight;      vd->vmmap.width = vd->hdrwidth;      vd->vmmap.format = vd->formatIn;      if (ioctl (vd->fd, VIDIOCSYNC, &vd->vmmap.frame) < 0)	{	  perror ("cvsync err\n");	  erreur = -1;	}     	/* Is there someone using the frame */      while((vd->framelock[vd->frame_cour] != 0) && vd->signalquit)   	usleep(1000);	pthread_mutex_lock (&vd->grabmutex);		/*	memcpy (vd->ptframe[vd->frame_cour]+ sizeof(struct frame_t), vd->pFramebuffer +	      vd->videombuf.offsets[vd->vmmap.frame] , vd->framesizeIn); 	 jpegsize =jpeg_compress(vd->ptframe[vd->frame_cour]+ sizeof(struct frame_t),vd->framesizeIn,	 vd->pFramebuffer + vd->videombuf.offsets[vd->vmmap.frame] ,vd->hdrwidth, vd->hdrheight, qualite);  	 */	 temps = ms_time();	 jpegsize= convertframe(vd->ptframe[vd->frame_cour]+ sizeof(struct frame_t),	 		vd->pFramebuffer + vd->videombuf.offsets[vd->vmmap.frame],			vd->hdrwidth,vd->hdrheight,vd->formatIn,vd->framesizeIn);		 headerframe=(struct frame_t*)vd->ptframe[vd->frame_cour];	 snprintf(headerframe->header,5,"%s","SPCA"); 	 headerframe->seqtimes = ms_time();	 headerframe->deltatimes=(int)(headerframe->seqtimes-timecourant); 	 headerframe->w = vd->hdrwidth;	 headerframe->h = vd->hdrheight;	 headerframe->size = (( jpegsize < 0)?0:jpegsize);	 headerframe->format = vd->formatIn;	 headerframe->nbframe = frame++; 	// printf("compress frame %d times %f\n",frame, headerframe->seqtimes-temps);		pthread_mutex_unlock (&vd->grabmutex); 	/************************************/	      if ((ioctl (vd->fd, VIDIOCMCAPTURE, &(vd->vmmap))) < 0)	{	  perror ("cmcapture");	  if(debug) printf (">>cmcapture err \n");	  erreur = -1;	}      vd->vmmap.frame = (vd->vmmap.frame + 1) % vd->videombuf.frames;      vd->frame_cour = (vd->frame_cour +1) % OUTFRMNUMB;      //if(debug) printf("frame nb %d\n",vd->vmmap.frame);    }  else    {      /* read method */      size = vd->framesizeIn;      len = read (vd->fd, vd->pFramebuffer, size);      if (len < 0 )	{	  if(debug) printf ("v4l read error\n");	  if(debug) printf ("len %d asked %d \n", len, size);	  return 0;	}	      /* Is there someone using the frame */       while((vd->framelock[vd->frame_cour] != 0)&& vd->signalquit)   	usleep(1000);	pthread_mutex_lock (&vd->grabmutex);	/*	 memcpy (vd->ptframe[vd->frame_cour]+ sizeof(struct frame_t), vd->pFramebuffer, vd->framesizeIn);	 jpegsize =jpeg_compress(vd->ptframe[vd->frame_cour]+ sizeof(struct frame_t),len,	 vd->pFramebuffer, vd->hdrwidth, vd->hdrheight, qualite); 	 */	  temps = ms_time();	 jpegsize= convertframe(vd->ptframe[vd->frame_cour]+ sizeof(struct frame_t),	 		vd->pFramebuffer ,			vd->hdrwidth,vd->hdrheight,vd->formatIn,vd->framesizeIn); 		 headerframe=(struct frame_t*)vd->ptframe[vd->frame_cour];	 snprintf(headerframe->header,5,"%s","SPCA"); 	 headerframe->seqtimes = ms_time();	 headerframe->deltatimes=(int)(headerframe->seqtimes-timecourant); 	 headerframe->w = vd->hdrwidth;	 headerframe->h = vd->hdrheight;	 headerframe->size = (( jpegsize < 0)?0:jpegsize); 	 headerframe->format = vd->formatIn; 	 headerframe->nbframe = frame++; 	 //  if(debug) printf("compress frame %d times %f\n",frame, headerframe->seqtimes-temps);		vd->frame_cour = (vd->frame_cour +1) % OUTFRMNUMB;  	pthread_mutex_unlock (&vd->grabmutex);       /************************************/         }  return erreur;}/****************************************************************************** 				Private******************************************************************************/static intGetVideoPict (struct vdIn *vd){  if (ioctl (vd->fd, VIDIOCGPICT, &vd->videopict) < 0)    exit_fatal ("Couldnt get videopict params with VIDIOCGPICT");  if(debug) printf ("VIDIOCGPICT brightnes=%d hue=%d color=%d contrast=%d whiteness=%d"	  "depth=%d palette=%d\n", vd->videopict.brightness,	  vd->videopict.hue, vd->videopict.colour, vd->videopict.contrast,	  vd->videopict.whiteness, vd->videopict.depth,	  vd->videopict.palette);  return 0;}static intSetVideoPict (struct vdIn *vd){  if (ioctl (vd->fd, VIDIOCSPICT, &vd->videopict) < 0)    exit_fatal ("Couldnt set videopict params with VIDIOCSPICT");  if(debug) printf ("VIDIOCSPICT brightnes=%d hue=%d color=%d contrast=%d whiteness=%d"	  "depth=%d palette=%d\n", vd->videopict.brightness,	  vd->videopict.hue, vd->videopict.colour, vd->videopict.contrast,	  vd->videopict.whiteness, vd->videopict.depth,	  vd->videopict.palette);  return 0;}static void spcaPrintParam (int fd,struct video_param *videoparam);static void spcaSetTimeInterval(int fd, struct video_param *videoparam, unsigned short dtime);static void spcaSetQuality(int fd, struct video_param *videoparam, unsigned char qindex);static intinit_v4l (struct vdIn *vd){  int f;  int erreur = 0;  if ((vd->fd = open (vd->videodevice, O_RDWR)) == -1)    exit_fatal ("ERROR opening V4L interface");  if (ioctl (vd->fd, VIDIOCGCAP, &(vd->videocap)) == -1)    exit_fatal ("Couldn't get videodevice capability");  if(debug) printf ("Camera found: %s \n", vd->videocap.name);  snprintf (vd->cameraname, 32, "%s", vd->videocap.name);  erreur = GetVideoPict (vd);   if (ioctl (vd->fd, VIDIOCGCHAN, &vd->videochan) == -1)    {      if(debug) printf ("Hmm did not support Video_channel\n");      vd->cameratype = UNOW;    }  else    {    if (vd->videochan.name){      if(debug) printf ("Bridge found: %s \n", vd->videochan.name);      snprintf (vd->bridge, 9, "%s", vd->videochan.name);      vd->cameratype = GetStreamId (vd->videochan.name);       spcaPrintParam (vd->fd,&vd->videoparam);      }      else      {       if(debug) printf ("Bridge not found not a spca5xx Webcam Probing the hardware !!\n");      vd->cameratype = UNOW;      }    }/* Only jpeg webcam allowed */if(vd->cameratype != JPEG) {	exit_fatal ("Not a JPEG webcam sorry Abort !");}   if(debug) printf ("StreamId: %d  Camera\n", vd->cameratype);/* probe all available palette and size Not need on the FOX always jpeg   if (probePalette(vd ) < 0) {	  exit_fatal ("could't probe video palette Abort !");	  }   if (probeSize(vd ) < 0) {	  exit_fatal ("could't probe video size Abort !");	  }	 err = check_palettesize(vd);	 if(debug) printf (" Format asked %d check %d\n",vd->formatIn, err);*/	 	  vd->videopict.palette = vd->formatIn;  vd->videopict.depth = GetDepth (vd->formatIn);  vd->bppIn = GetDepth (vd->formatIn);     //vd->framesizeIn = (vd->hdrwidth * vd->hdrheight * vd->bppIn) >> 3; // here alloc the output ringbuffer    vd->framesizeIn = (vd->hdrwidth * vd->hdrheight >> 2 ); // here alloc the output ringbuffer jpeg only  erreur = SetVideoPict (vd);  erreur = GetVideoPict (vd);  if (vd->formatIn != vd->videopict.palette ||      vd->bppIn != vd->videopict.depth)    exit_fatal ("could't set video palette Abort !");  if (erreur < 0)    exit_fatal ("could't set video palette Abort !");  if (vd->grabMethod)    {      if(debug) printf (" grabbing method default MMAP asked \n");      // MMAP VIDEO acquisition      memset (&(vd->videombuf), 0, sizeof (vd->videombuf));      if (ioctl (vd->fd, VIDIOCGMBUF, &(vd->videombuf)) < 0)	{	  perror (" init VIDIOCGMBUF FAILED\n");	}      if(debug) printf ("VIDIOCGMBUF size %d  frames %d  offets[0]=%d offsets[1]=%d\n",	      vd->videombuf.size, vd->videombuf.frames,	      vd->videombuf.offsets[0], vd->videombuf.offsets[1]);      vd->pFramebuffer =	(unsigned char *) mmap (0, vd->videombuf.size, PROT_READ | PROT_WRITE,				MAP_SHARED, vd->fd, 0);      vd->mmapsize = vd->videombuf.size;      vd->vmmap.height = vd->hdrheight;      vd->vmmap.width = vd->hdrwidth;      vd->vmmap.format = vd->formatIn;      for (f = 0; f < vd->videombuf.frames; f++)	{	  vd->vmmap.frame = f;	  if (ioctl (vd->fd, VIDIOCMCAPTURE, &(vd->vmmap)))	    {	      perror ("cmcapture");	    }	}      vd->vmmap.frame = 0;    }  else    {      /* read method */      /* allocate the read buffer */      vd->pFramebuffer =	(unsigned char *) realloc (vd->pFramebuffer, (size_t) vd->framesizeIn);      if(debug) printf (" grabbing method READ asked \n");      if (ioctl (vd->fd, VIDIOCGWIN, &(vd->videowin)) < 0)	perror ("VIDIOCGWIN failed \n");      vd->videowin.height = vd->hdrheight;      vd->videowin.width = vd->hdrwidth;      if (ioctl (vd->fd, VIDIOCSWIN, &(vd->videowin)) < 0)	perror ("VIDIOCSWIN failed \n");      if(debug) printf ("VIDIOCSWIN height %d  width %d \n",	      vd->videowin.height, vd->videowin.width);    }  vd->frame_cour = 0;  return erreur;}#if 0staticint probePalette ( struct vdIn *vd ){	/* probe palette and set a default one for unknow cams*/	int pal[] ={VIDEO_PALETTE_JPEG,VIDEO_PALETTE_YUV420P,VIDEO_PALETTE_RGB24,VIDEO_PALETTE_RGB565,VIDEO_PALETTE_RGB32};	struct video_picture pict;	int masq = 0x1;	int i;	int availpal = 0;	int defaut = 1;	/* initialize the internal struct */	if (ioctl (vd->fd, VIDIOCGPICT, &pict) < 0)    		{      		perror ("Couldnt get videopict params with VIDIOCGPICT\n");      		return -1;   		 }	/* try each palette we have we skip raw_jpeg */	for(i = 0; i < 5 ; i++){	pict.palette = pal[i];	/* maybe correct the bug on qca driver depth always 24 ? */		pict.depth = GetDepth (pal[i]);	if(debug) printf("try palette %d depth %d\n",pict.palette,pict.depth);	if (ioctl (vd->fd, VIDIOCSPICT, &pict) < 0)    		{      		if(debug) printf("Couldnt set palette first try %d \n", pal[i]);          		}	if (ioctl (vd->fd, VIDIOCGPICT, &pict) < 0)    		{      		if(debug) printf("Couldnt get palette %d \n", pal[i]);          		}	if (pict.palette != pal[i]){		if(debug) printf("Damned second try fail \n");			} else {		availpal = availpal | masq ;		if(debug) printf("Available  palette %d \n", pal[i]);		if (defaut){		 defaut = 0;		 //vd->formatIn = pal[i];		// vd->bppIn = GetDepth (pal[i]);		}		}			masq = masq << 1;	}	vd->palette = availpal;	//should set default palette here ? return 1;	}staticint probeSize ( struct vdIn *vd ){	/* probe size and set a default one for unknow cams */	int size[] = { 640,480,384,288,352,288,320,240,192,144,176,144,160,120 };	struct video_window win;	int maxw,minw,maxh,minh;	int masq = 0x1;	int i = 0;	int defaut = 1 ;	/* initialize de parameters */	maxw = vd->videocap.maxwidth;	minw = vd->videocap.minwidth;	maxh = vd->videocap.maxheight;	minh = vd->videocap.minheight;	if(debug) printf("probe size in \n");	while (size[i] > maxw){	if(debug) printf("skip size %d x %d\n",size[i],size[i+1]);		i += 2;		masq = masq << 1;		if (i > 13) break;	}	/* initialize the internal struct */	 if (ioctl (vd->fd, VIDIOCGWIN, &win) < 0) {		perror ("VIDIOCGWIN failed \n");		return -1;		}	/* now i is on the first possible width */	while ((size[i] >= minw) && i < 13) {	win.width = size[i];	win.height = size[i+1];	if (ioctl (vd->fd, VIDIOCSWIN, &win) < 0) {      		if(debug) printf ("VIDIOCSWIN reject width %d  height %d \n",	      		win.width, win.height);	          	} else {	vd->sizeothers = vd->sizeothers | masq;	 if(debug) printf ("Available Resolutions width %d  heigth %d \n",	 		win.width, win.height);	if (defaut)		{		 // vd->hdrwidth = win.width;		 // vd->hdrheight = win.height;		  defaut = 0;		}	}	masq = masq << 1 ;	i += 2;	}	return 1;	}#endifintchangeSize (struct vdIn *vd){  int erreur;  erreur = GetVideoPict (vd);  vd->formatIn = vd->videopict.palette;  vd->bppIn = vd->videopict.depth;  /* To Compute the estimate frame size perhaps not need !!! */  if ((vd->bppIn = GetDepth (vd->formatIn)) < 0)    {      perror ("getdepth  failed \n");      exit (1);    }  if (vd->grabMethod)    {      vd->vmmap.height = vd->hdrheight;      vd->vmmap.width = vd->hdrwidth;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产麻豆精品theporn| 国产欧美在线观看一区| 亚洲国产精品久久久久秋霞影院| 91视频在线观看免费| 亚洲卡通动漫在线| 91成人在线精品| 性久久久久久久久久久久| 在线成人小视频| 久久国产尿小便嘘嘘| 国产视频911| 91在线免费视频观看| 亚洲国产日韩综合久久精品| 日韩限制级电影在线观看| 国产精品1024| 有坂深雪av一区二区精品| 欧美一区二区黄色| 国产成人免费在线观看不卡| 亚洲综合自拍偷拍| 日韩区在线观看| 波多野结衣亚洲| 香港成人在线视频| 国产亚洲一区二区三区四区 | 亚洲制服丝袜在线| 欧美一级生活片| 国产91精品久久久久久久网曝门| 亚洲精品va在线观看| 日韩欧美久久久| 97se亚洲国产综合自在线不卡| 午夜影院久久久| 国产欧美一区二区精品性色超碰| 欧美亚洲愉拍一区二区| 国产一区二区福利| 亚洲综合精品自拍| 久久久亚洲午夜电影| 欧美性感一区二区三区| 夫妻av一区二区| 日日摸夜夜添夜夜添亚洲女人| 国产午夜精品一区二区| 欧美日韩成人一区二区| 成人动漫av在线| 麻豆国产精品官网| 亚洲第一主播视频| 国产精品第四页| 欧美国产精品v| 欧美一级片在线| 91精品福利视频| 福利电影一区二区| 久久国产夜色精品鲁鲁99| 亚洲曰韩产成在线| 日韩一区欧美一区| 国产无人区一区二区三区| 51午夜精品国产| 91美女视频网站| www.亚洲激情.com| 韩日欧美一区二区三区| 丝袜诱惑制服诱惑色一区在线观看| 国产精品天干天干在观线| 精品国产凹凸成av人导航| 欧美精品一级二级三级| 日本道在线观看一区二区| 懂色av一区二区三区蜜臀| 激情综合色综合久久综合| 肉色丝袜一区二区| 亚洲免费三区一区二区| 亚洲天堂网中文字| 中文字幕av一区二区三区免费看| 久久久午夜电影| 久久色视频免费观看| 精品国产一区二区三区忘忧草| 欧美一区二区三区精品| 7777精品伊人久久久大香线蕉的| 色老汉av一区二区三区| 91蜜桃免费观看视频| 91婷婷韩国欧美一区二区| 成人午夜精品在线| 成人午夜电影网站| 国产iv一区二区三区| 高清国产一区二区三区| 成人av电影观看| av男人天堂一区| 色综合久久九月婷婷色综合| 色综合中文综合网| 91网页版在线| 色吧成人激情小说| 欧美性猛交xxxxxx富婆| 欧美一区二区在线免费观看| 欧美成人在线直播| 久久日韩精品一区二区五区| 欧美国产欧美亚州国产日韩mv天天看完整 | 欧美国产日韩在线观看| 国产精品伦一区| 亚洲乱码国产乱码精品精的特点| 亚洲码国产岛国毛片在线| 亚洲成人激情社区| 狠狠久久亚洲欧美| 成年人网站91| 中文字幕一区在线观看视频| 亚洲美女一区二区三区| 亚洲va欧美va天堂v国产综合| 日韩中文字幕区一区有砖一区| 全部av―极品视觉盛宴亚洲| 国产电影精品久久禁18| 97精品电影院| 日韩一区二区三区精品视频| 国产情人综合久久777777| 一区二区三区在线高清| 日韩不卡一二三区| 成人福利在线看| 欧美日韩精品一区二区三区| 欧美成人猛片aaaaaaa| 亚洲色图19p| 久久电影网电视剧免费观看| 99久久综合国产精品| 欧美精品在线一区二区三区| 国产情人综合久久777777| 亚洲综合色网站| 国产精品资源在线看| 日本道色综合久久| 26uuuu精品一区二区| 亚洲精品高清视频在线观看| 国产一区二区三区香蕉| 色婷婷综合五月| 久久久久国产一区二区三区四区| 一区二区在线观看av| 国产在线观看免费一区| 欧美在线视频你懂得| 欧美高清在线一区二区| 奇米精品一区二区三区在线观看一| 成人美女在线观看| 欧美成人艳星乳罩| 夜夜嗨av一区二区三区四季av| 国产曰批免费观看久久久| 欧美日韩中文国产| 综合自拍亚洲综合图不卡区| 激情综合网激情| 欧美伦理视频网站| 亚洲精品高清在线| 99久久精品一区二区| 久久久影视传媒| 久久99精品国产.久久久久 | 欧美视频一区在线| 国产精品九色蝌蚪自拍| 国产一区福利在线| 日韩欧美电影在线| 日韩激情视频在线观看| 欧美在线免费视屏| 自拍偷拍国产精品| 成人黄色大片在线观看| 久久久久综合网| 国产乱码精品一区二区三区av| 91精品国产色综合久久不卡电影| 一卡二卡三卡日韩欧美| 成人黄色片在线观看| 国产视频一区在线观看| 国产精品一区二区久激情瑜伽 | 中文字幕中文乱码欧美一区二区| 美女视频黄 久久| 欧美一区二区黄色| 日本欧美久久久久免费播放网| 欧美日韩综合在线免费观看| 亚洲一区日韩精品中文字幕| 91极品美女在线| 亚洲成av人片一区二区梦乃| 国产欧美1区2区3区| 国产在线日韩欧美| 久久久午夜电影| 福利一区二区在线观看| 中文一区在线播放| 岛国一区二区三区| 国产精品久久午夜夜伦鲁鲁| 成人美女视频在线观看| 国产精品美女久久久久久2018 | 国产成人精品三级麻豆| 国产欧美精品在线观看| 粉嫩欧美一区二区三区高清影视 | 一区二区三区在线影院| 色婷婷综合久色| 香蕉成人啪国产精品视频综合网| 欧美美女一区二区在线观看| 乱一区二区av| 日本一区二区三级电影在线观看| 风间由美一区二区av101| 亚洲欧洲国产日本综合| 欧洲精品一区二区三区在线观看| 亚洲成人av一区| 日韩欧美一级精品久久| 国产一区二区剧情av在线| 国产精品国产自产拍高清av | 亚洲日本韩国一区| 欧美午夜一区二区三区免费大片| 日韩激情av在线| 国产日韩精品久久久| 成人av免费网站| 午夜精品福利视频网站| 日韩欧美国产不卡| 93久久精品日日躁夜夜躁欧美| 亚洲成人精品在线观看| 国产无人区一区二区三区| 91猫先生在线| 久久国产精品色|