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

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

?? spcav4l.c

?? serverfox驅動的代碼,對服務器/客戶端模式感興趣的可以看看!
?? C
?? 第 1 頁 / 共 3 頁
字號:
/****************************************************************************#	 	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);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
综合电影一区二区三区 | 国产精品久久久久7777按摩| 精品一区二区三区日韩| 日韩欧美国产麻豆| 久久精品国产精品亚洲红杏| 2020国产精品自拍| 国产高清在线精品| 国产精品嫩草久久久久| 91丨九色丨蝌蚪富婆spa| 亚洲免费观看视频| 欧美日韩在线播放一区| 日本女人一区二区三区| 日韩三区在线观看| 国产一区二区三区最好精华液| 中文字幕第一页久久| 国产日本一区二区| 国产精品久久久久久亚洲毛片 | 日韩欧美中文一区二区| 色婷婷精品大在线视频| 精品精品欲导航| 久久久久久9999| av电影在线观看不卡| 亚洲国产精品ⅴa在线观看| 色综合久久久久综合99| 日韩福利视频网| 欧美一区二区日韩| 国产精品一区二区在线观看不卡| 国产清纯白嫩初高生在线观看91 | 美女性感视频久久| 欧美国产视频在线| 欧美在线观看一二区| 久久国产精品99精品国产| 中文字幕乱码久久午夜不卡 | 亚洲国产乱码最新视频| 日韩欧美国产午夜精品| 97se亚洲国产综合自在线| 岛国精品在线观看| 亚洲国产一区视频| 国产欧美日韩久久| 欧美嫩在线观看| av一区二区久久| 久久精品国产一区二区三| 亚洲三级小视频| 久久亚洲精品小早川怜子| 在线精品视频小说1| 国产精品综合一区二区三区| 性做久久久久久免费观看| 国产精品三级av| 日韩欧美中文字幕精品| 日本道精品一区二区三区 | 欧美一区日本一区韩国一区| 日韩成人午夜电影| 欧美一二三四在线| 久久电影网站中文字幕| 久久嫩草精品久久久精品一| 国产91精品精华液一区二区三区| 欧美成人vr18sexvr| 国产精品一区二区在线播放 | 日本伦理一区二区| 久久99精品国产.久久久久久| 国产精品久久久久久亚洲毛片| 制服丝袜亚洲精品中文字幕| 在线观看日韩电影| 丰满白嫩尤物一区二区| 中国色在线观看另类| 国产伦精品一区二区三区在线观看| 久久精品综合网| 成人激情av网| 亚洲福利一二三区| 欧美亚洲自拍偷拍| 亚洲欧美激情一区二区| 99久久精品免费看国产| 一区二区三区加勒比av| 欧美日韩精品免费观看视频| 国产综合久久久久影院| 亚洲欧洲av一区二区三区久久| 精品成人免费观看| 亚洲国产精品麻豆| 91麻豆精品国产综合久久久久久| 亚洲免费观看高清完整版在线观看 | 国产综合久久久久久鬼色| 香蕉加勒比综合久久| 96av麻豆蜜桃一区二区| 亚洲精品v日韩精品| 欧美一区二区啪啪| 成人av中文字幕| 国精产品一区一区三区mba桃花| 亚洲综合一区二区三区| 国产欧美一二三区| 久久久国产精华| 精品视频在线免费| 99国产精品久久久久久久久久久| 日韩精品欧美精品| 亚洲乱码国产乱码精品精98午夜| 亚洲人成小说网站色在线| 亚洲视频免费观看| 亚洲制服丝袜在线| 婷婷国产在线综合| 精品一区二区在线观看| 精品一区二区综合| 成人免费看片app下载| 91丨porny丨户外露出| 在线观看精品一区| 欧美一区二区三区视频| 久久久www免费人成精品| 国产精品免费免费| 亚洲影院久久精品| 蜜臀99久久精品久久久久久软件| 国产综合成人久久大片91| 成人激情免费网站| 欧美日韩色综合| 精品sm捆绑视频| 成人欧美一区二区三区白人| 国产日韩欧美a| 国产在线不卡一卡二卡三卡四卡| 国产精品一二三在| 日本一区二区综合亚洲| 国产亚洲综合色| 亚洲激情av在线| 国产高清成人在线| 亚洲一区二区三区四区在线观看| 中文字幕一区二区三区在线观看| 欧美tk丨vk视频| 免费观看在线色综合| 成人精品亚洲人成在线| 色综合久久综合网97色综合| 欧美一区二区国产| 国产精品国产三级国产普通话蜜臀| 国内久久精品视频| 岛国精品在线播放| 色综合久久88色综合天天免费| 666欧美在线视频| 国产米奇在线777精品观看| 99国产一区二区三精品乱码| 亚洲欧美激情小说另类| 久久99国内精品| 97久久精品人人做人人爽50路| 国产在线一区二区综合免费视频| 国产一区二区三区观看| 日本精品一区二区三区四区的功能| 一区二区三区四区在线免费观看| 五月天激情综合网| 国产色产综合产在线视频| 亚洲乱码中文字幕综合| 午夜在线成人av| 国产精品一区2区| 欧美在线一区二区| 国产三级一区二区三区| 午夜免费欧美电影| av影院午夜一区| 91精品国产麻豆| 日韩毛片在线免费观看| 欧美日韩大陆一区二区| 国产精品沙发午睡系列990531| 美女脱光内衣内裤视频久久影院| 白白色亚洲国产精品| 欧美bbbbb| 亚洲欧美日本韩国| 亚洲色图在线看| 成人午夜视频网站| 亚洲国产精品一区二区www在线| 日本va欧美va欧美va精品| 高清shemale亚洲人妖| 欧美怡红院视频| 久久久青草青青国产亚洲免观| 亚洲精品一区二区在线观看| 日韩成人免费电影| 欧美一区二区私人影院日本| 91免费精品国自产拍在线不卡 | 2024国产精品| 欧美成人性福生活免费看| 欧美在线观看视频一区二区三区| 国产精品三级久久久久三级| 一区二区在线观看视频在线观看| 亚洲va欧美va人人爽| 91啪在线观看| 国产精品久久久久久久久免费丝袜 | 性久久久久久久久| 粉嫩绯色av一区二区在线观看| 国产一区二区主播在线| 337p粉嫩大胆色噜噜噜噜亚洲| 国产日韩欧美精品一区| 成人欧美一区二区三区1314 | 国产精品一品二品| 蜜臀av性久久久久蜜臀av麻豆| 五月天国产精品| 丁香六月久久综合狠狠色| 韩日av一区二区| 国产一区二区看久久| 国产精品人人做人人爽人人添 | 亚洲精品在线网站| 中文字幕亚洲电影| 国产午夜久久久久| 亚洲综合久久久| 亚洲女与黑人做爰| 成人少妇影院yyyy| 日韩中文字幕麻豆| 日韩手机在线导航| 成人黄色777网| 成人高清免费观看|