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

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

?? tif_dirread.c

?? 支持各種柵格圖像和矢量圖像讀取的庫
?? C
?? 第 1 頁 / 共 4 頁
字號:
			    dp->tdir_offset)) {			case OFILETYPE_REDUCEDIMAGE:				v = FILETYPE_REDUCEDIMAGE;				break;			case OFILETYPE_PAGE:				v = FILETYPE_PAGE;				break;			}			if (v)				TIFFSetField(tif, TIFFTAG_SUBFILETYPE, v);			break;/* END REV 4.0 COMPATIBILITY */		default:			(void) TIFFFetchNormalTag(tif, dp);			break;		}	}	/*	 * Joris: OJPEG hack:	 * - If a) compression is OJPEG, and b) photometric tag is missing,	 * then we consistently find that photometric should be YCbCr	 * - If a) compression is OJPEG, and b) photometric tag says it's RGB,	 * then we consistently find that the buggy implementation of the	 * buggy compression scheme matches photometric YCbCr instead.	 * - If a) compression is OJPEG, and b) bitspersample tag is missing,	 * then we consistently find bitspersample should be 8.	 * - If a) compression is OJPEG, b) samplesperpixel tag is missing,	 * and c) photometric is RGB or YCbCr, then we consistently find	 * samplesperpixel should be 3	 * - If a) compression is OJPEG, b) samplesperpixel tag is missing,	 * and c) photometric is MINISWHITE or MINISBLACK, then we consistently	 * find samplesperpixel should be 3	 */	if (td->td_compression==COMPRESSION_OJPEG)	{		if (!TIFFFieldSet(tif,FIELD_PHOTOMETRIC))		{			TIFFWarningExt(tif->tif_clientdata, "TIFFReadDirectory",			"Photometric tag is missing, assuming data is YCbCr");			if (!TIFFSetField(tif,TIFFTAG_PHOTOMETRIC,PHOTOMETRIC_YCBCR))				goto bad;		}		else if (td->td_photometric==PHOTOMETRIC_RGB)		{			td->td_photometric=PHOTOMETRIC_YCBCR;			TIFFWarningExt(tif->tif_clientdata, "TIFFReadDirectory",			"Photometric tag value assumed incorrect, "			"assuming data is YCbCr instead of RGB");		}		if (!TIFFFieldSet(tif,FIELD_BITSPERSAMPLE))		{			TIFFWarningExt(tif->tif_clientdata,"TIFFReadDirectory",		"BitsPerSample tag is missing, assuming 8 bits per sample");			if (!TIFFSetField(tif,TIFFTAG_BITSPERSAMPLE,8))				goto bad;		}		if (!TIFFFieldSet(tif,FIELD_SAMPLESPERPIXEL))		{			if ((td->td_photometric==PHOTOMETRIC_RGB)			    || (td->td_photometric==PHOTOMETRIC_YCBCR))			{				TIFFWarningExt(tif->tif_clientdata,					       "TIFFReadDirectory",				"SamplesPerPixel tag is missing, "				"assuming correct SamplesPerPixel value is 3");				if (!TIFFSetField(tif,TIFFTAG_SAMPLESPERPIXEL,3))					goto bad;			}			else if ((td->td_photometric==PHOTOMETRIC_MINISWHITE)				 || (td->td_photometric==PHOTOMETRIC_MINISBLACK))			{				TIFFWarningExt(tif->tif_clientdata,					       "TIFFReadDirectory",				"SamplesPerPixel tag is missing, "				"assuming correct SamplesPerPixel value is 1");				if (!TIFFSetField(tif,TIFFTAG_SAMPLESPERPIXEL,1))					goto bad;			}		}	}	/*	 * Verify Palette image has a Colormap.	 */	if (td->td_photometric == PHOTOMETRIC_PALETTE &&	    !TIFFFieldSet(tif, FIELD_COLORMAP)) {		MissingRequired(tif, "Colormap");		goto bad;	}	/*	 * Joris: OJPEG hack:	 * We do no further messing with strip/tile offsets/bytecounts in OJPEG	 * TIFFs	 */	if (td->td_compression!=COMPRESSION_OJPEG)	{		/*		 * Attempt to deal with a missing StripByteCounts tag.		 */		if (!TIFFFieldSet(tif, FIELD_STRIPBYTECOUNTS)) {			/*			 * Some manufacturers violate the spec by not giving			 * the size of the strips.  In this case, assume there			 * is one uncompressed strip of data.			 */			if ((td->td_planarconfig == PLANARCONFIG_CONTIG &&			    td->td_nstrips > 1) ||			    (td->td_planarconfig == PLANARCONFIG_SEPARATE &&			     td->td_nstrips != td->td_samplesperpixel)) {			    MissingRequired(tif, "StripByteCounts");			    goto bad;			}			TIFFWarningExt(tif->tif_clientdata, module,				"%s: TIFF directory is missing required "				"\"%s\" field, calculating from imagelength",				tif->tif_name,				_TIFFFieldWithTag(tif,TIFFTAG_STRIPBYTECOUNTS)->field_name);			if (EstimateStripByteCounts(tif, dir, dircount) < 0)			    goto bad;		/*		 * Assume we have wrong StripByteCount value (in case		 * of single strip) in following cases:		 *   - it is equal to zero along with StripOffset;		 *   - it is larger than file itself (in case of uncompressed		 *     image);		 *   - it is smaller than the size of the bytes per row		 *     multiplied on the number of rows.  The last case should		 *     not be checked in the case of writing new image,		 *     because we may do not know the exact strip size		 *     until the whole image will be written and directory		 *     dumped out.		 */		#define	BYTECOUNTLOOKSBAD \		    ( (td->td_stripbytecount[0] == 0 && td->td_stripoffset[0] != 0) || \		      (td->td_compression == COMPRESSION_NONE && \		       td->td_stripbytecount[0] > TIFFGetFileSize(tif) - td->td_stripoffset[0]) || \		      (tif->tif_mode == O_RDONLY && \		       td->td_compression == COMPRESSION_NONE && \		       td->td_stripbytecount[0] < TIFFScanlineSize(tif) * td->td_imagelength) )		} else if (td->td_nstrips == 1			   && td->td_stripoffset[0] != 0			   && BYTECOUNTLOOKSBAD) {			/*			 * XXX: Plexus (and others) sometimes give a value of			 * zero for a tag when they don't know what the			 * correct value is!  Try and handle the simple case			 * of estimating the size of a one strip image.			 */			TIFFWarningExt(tif->tif_clientdata, module,	"%s: Bogus \"%s\" field, ignoring and calculating from imagelength",				    tif->tif_name,				    _TIFFFieldWithTag(tif,TIFFTAG_STRIPBYTECOUNTS)->field_name);			if(EstimateStripByteCounts(tif, dir, dircount) < 0)			    goto bad;		} else if (td->td_planarconfig == PLANARCONFIG_CONTIG			   && td->td_nstrips > 2			   && td->td_compression == COMPRESSION_NONE			   && td->td_stripbytecount[0] != td->td_stripbytecount[1]                           && td->td_stripbytecount[0] != 0                            && td->td_stripbytecount[1] != 0 ) {			/*			 * XXX: Some vendors fill StripByteCount array with                          * absolutely wrong values (it can be equal to                          * StripOffset array, for example). Catch this case                          * here.			 */			TIFFWarningExt(tif->tif_clientdata, module,	"%s: Wrong \"%s\" field, ignoring and calculating from imagelength",				    tif->tif_name,				    _TIFFFieldWithTag(tif,TIFFTAG_STRIPBYTECOUNTS)->field_name);			if (EstimateStripByteCounts(tif, dir, dircount) < 0)			    goto bad;		}	}	if (dir) {		_TIFFfree((char *)dir);		dir = NULL;	}	if (!TIFFFieldSet(tif, FIELD_MAXSAMPLEVALUE))		td->td_maxsamplevalue = (uint16)((1L<<td->td_bitspersample)-1);	/*	 * Setup default compression scheme.	 */	/*	 * XXX: We can optimize checking for the strip bounds using the sorted	 * bytecounts array. See also comments for TIFFAppendToStrip()	 * function in tif_write.c.	 */	if (td->td_nstrips > 1) {		tstrip_t strip;		td->td_stripbytecountsorted = 1;		for (strip = 1; strip < td->td_nstrips; strip++) {			if (td->td_stripoffset[strip - 1] >			    td->td_stripoffset[strip]) {				td->td_stripbytecountsorted = 0;				break;			}		}	}	if (!TIFFFieldSet(tif, FIELD_COMPRESSION))		TIFFSetField(tif, TIFFTAG_COMPRESSION, COMPRESSION_NONE);	/*	 * Some manufacturers make life difficult by writing	 * large amounts of uncompressed data as a single strip.	 * This is contrary to the recommendations of the spec.	 * The following makes an attempt at breaking such images	 * into strips closer to the recommended 8k bytes.  A	 * side effect, however, is that the RowsPerStrip tag	 * value may be changed.	 */	if (td->td_nstrips == 1 && td->td_compression == COMPRESSION_NONE &&	    (tif->tif_flags & (TIFF_STRIPCHOP|TIFF_ISTILED)) == TIFF_STRIPCHOP)		ChopUpSingleUncompressedStrip(tif);	/*	 * Reinitialize i/o since we are starting on a new directory.	 */	tif->tif_row = (uint32) -1;	tif->tif_curstrip = (tstrip_t) -1;	tif->tif_col = (uint32) -1;	tif->tif_curtile = (ttile_t) -1;	tif->tif_tilesize = (tsize_t) -1;	tif->tif_scanlinesize = TIFFScanlineSize(tif);	if (!tif->tif_scanlinesize) {		TIFFErrorExt(tif->tif_clientdata, module,			     "%s: cannot handle zero scanline size",			     tif->tif_name);		return (0);	}	if (isTiled(tif)) {		tif->tif_tilesize = TIFFTileSize(tif);		if (!tif->tif_tilesize) {			TIFFErrorExt(tif->tif_clientdata, module,				     "%s: cannot handle zero tile size",				     tif->tif_name);			return (0);		}	} else {		if (!TIFFStripSize(tif)) {			TIFFErrorExt(tif->tif_clientdata, module,				     "%s: cannot handle zero strip size",				     tif->tif_name);			return (0);		}	}	return (1);bad:	if (dir)		_TIFFfree(dir);	return (0);}static TIFFDirEntry*TIFFReadDirectoryFind(TIFFDirEntry* dir, uint16 dircount, uint16 tagid){	TIFFDirEntry* m;	uint16 n;	for (m=dir, n=0; n<dircount; m++, n++)	{		if (m->tdir_tag==tagid)			return(m);	}	return(0);}/* * Read custom directory from the arbitarry offset. * The code is very similar to TIFFReadDirectory(). */intTIFFReadCustomDirectory(TIFF* tif, toff_t diroff,			const TIFFFieldInfo info[], size_t n){	static const char module[] = "TIFFReadCustomDirectory";	TIFFDirectory* td = &tif->tif_dir;	TIFFDirEntry *dp, *dir = NULL;	const TIFFFieldInfo* fip;	size_t fix;	uint16 i, dircount;	_TIFFSetupFieldInfo(tif, info, n);	dircount = TIFFFetchDirectory(tif, diroff, &dir, NULL);	if (!dircount) {		TIFFErrorExt(tif->tif_clientdata, module,			"%s: Failed to read custom directory at offset %lu",			     tif->tif_name, diroff);		return 0;	}	TIFFFreeDirectory(tif);	fix = 0;	for (dp = dir, i = dircount; i > 0; i--, dp++) {		if (tif->tif_flags & TIFF_SWAB) {			TIFFSwabArrayOfShort(&dp->tdir_tag, 2);			TIFFSwabArrayOfLong(&dp->tdir_count, 2);		}		if (fix >= tif->tif_nfields || dp->tdir_tag == IGNORE)			continue;		while (fix < tif->tif_nfields &&		       tif->tif_fieldinfo[fix]->field_tag < dp->tdir_tag)			fix++;		if (fix >= tif->tif_nfields ||		    tif->tif_fieldinfo[fix]->field_tag != dp->tdir_tag) {			TIFFWarningExt(tif->tif_clientdata, module,                        "%s: unknown field with tag %d (0x%x) encountered",				    tif->tif_name, dp->tdir_tag, dp->tdir_tag,				    dp->tdir_type);			TIFFMergeFieldInfo(tif,					   _TIFFCreateAnonFieldInfo(tif,						dp->tdir_tag,						(TIFFDataType)dp->tdir_type),					   1);			fix = 0;			while (fix < tif->tif_nfields &&			       tif->tif_fieldinfo[fix]->field_tag < dp->tdir_tag)				fix++;		}		/*		 * Null out old tags that we ignore.		 */		if (tif->tif_fieldinfo[fix]->field_bit == FIELD_IGNORE) {	ignore:			dp->tdir_tag = IGNORE;			continue;		}		/*		 * Check data type.		 */		fip = tif->tif_fieldinfo[fix];		while (dp->tdir_type != (unsigned short) fip->field_type                       && fix < tif->tif_nfields) {			if (fip->field_type == TIFF_ANY)	/* wildcard */				break;                        fip = tif->tif_fieldinfo[++fix];			if (fix >= tif->tif_nfields ||			    fip->field_tag != dp->tdir_tag) {				TIFFWarningExt(tif->tif_clientdata, module,			"%s: wrong data type %d for \"%s\"; tag ignored",					    tif->tif_name, dp->tdir_type,					    tif->tif_fieldinfo[fix-1]->field_name);				goto ignore;			}		}		/*		 * Check count if known in advance.		 */		if (fip->field_readcount != TIFF_VARIABLE		    && fip->field_readcount != TIFF_VARIABLE2) {			uint32 expected = (fip->field_readcount == TIFF_SPP) ?			    (uint32) td->td_samplesperpixel :			    (uint32) fip->field_readcount;			if (!CheckDirCount(tif, dp, expected))				goto ignore;		}		(void) TIFFFetchNormalTag(tif, dp);	}		if (dir)		_TIFFfree(dir);	return 1;}/* * EXIF is important special case of custom IFD, so we have a special * function to read it. */intTIFFReadEXIFDirectory(TIFF* tif, toff_t diroff){	size_t exifFieldInfoCount;	const TIFFFieldInfo *exifFieldInfo =		_TIFFGetExifFieldInfo(&exifFieldInfoCount);	return TIFFReadCustomDirectory(tif, diroff, exifFieldInfo,				       exifFieldInfoCount);}static intEstimateStripByteCounts(TIFF* tif, TIFFDirEntry* dir, uint16 dircount){	static const char module[] = "EstimateStripByteCounts";	TIFFDirEntry *dp;	TIFFDirectory *td = &tif->tif_dir;	uint32 strip;	if (td->td_stripbytecount)		_TIFFfree(td->td_stripbytecount);	td->td_stripbytecount = (uint32*)	    _TIFFCheckMalloc(tif, td->td_nstrips, sizeof (uint32),		"for \"StripByteCounts\" array");	if (td->td_compression != COMPRESSION_NONE) {		uint32 space = (uint32)(sizeof (TIFFHeader)		    + sizeof (uint16)		    + (dircount * sizeof (TIFFDirEntry))		    + sizeof (uint32));		toff_t filesize = TIFFGetFileSize(tif);		uint16 n;		/* calculate amount of space used by indirect values */		for (dp = dir, n = dircount; n > 0; n--, dp++)		{			uint32 cc = TIFFDataWidth((TIFFDataType) dp->tdir_type);			if (cc == 0) {				TIFFErrorExt(tif->tif_clientdata, module,			"%s: Cannot determine size of unknown tag type %d",					  tif->tif_name, dp->tdir_type);				return -1;			}			cc = cc * dp->tdir_count;			if (cc > sizeof (uint32))				space += cc;		}		space = filesize - space;		if (td->td_planarconfig == PLANARCONFIG_SEPARATE)			space /= td->td_samplesperpixel;		for (strip = 0; strip < td->td_nstrips; strip++)			td->td_stripbytecount[strip] = space;		/*		 * This gross hack handles the case were the offset to		 * the last strip is past the place where we think the strip		 * should begin.  Since a strip of data must be contiguous,		 * it's safe to assume that we've overestimated the amount		 * of data in the strip and trim this number back accordingly.		 */ 		strip--;		if (((toff_t)(td->td_stripoffset[strip]+			      td->td_stripbytecount[strip])) > filesize)			td->td_stripbytecount[strip] =			    filesize - td->td_stripoffset[strip];	} else if (isTiled(tif)) {		uint32 bytespertile = TIFFTileSize(tif);		for (strip = 0; strip < td->td_nstrips; strip++)                    td->td_stripbytecount[strip] = bytespertile;	} else {		uint32 rowbytes = TIFFScanlineSize(tif);		uint32 rowsperstrip = td->td_imagelength/td->td_stripsperimage;		for (strip = 0; strip < td->td_nstrips; strip++)			td->td_stripbytecount[strip] = rowbytes * rowsperstrip;	}	TIFFSetFieldBit(tif, FIELD_STRIPBYTECOUNTS);	if (!TIFFFieldSet(tif, FIELD_ROWSPERSTRIP))		td->td_rowsperstrip = td->td_imagelength;	return 1;}static voidMissingRequired(TIFF* tif, const char* tagname){	static const char module[] = "MissingRequired";	TIFFErrorExt(tif->tif_clientdata, module,		  "%s: TIFF directory is missing required \"%s\" field",		  tif->tif_name, tagname);}/* * Check the directory offset against the list of already seen directory * offsets. This is a trick to prevent IFD looping. The one can create TIFF * file with looped directory pointers. We will maintain a list of already * seen directories and check every IFD offset against that list. */static intTIFFCheckDirOffset(TIFF* tif, toff_t diroff){	uint16 n;	if (diroff == 0)			/* no more directories */		return 0;	for (n = 0; n < tif->tif_dirnumber && tif->tif_dirlist; n++) {		if (tif->tif_dirlist[n] == diroff)			return 0;	}	tif->tif_dirnumber++;	if (tif->tif_dirnumber > tif->tif_dirlistsize) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一级高清片在线观看| 2023国产一二三区日本精品2022| 免费在线观看精品| 在线不卡a资源高清| 国产欧美一区二区精品性色超碰 | 88在线观看91蜜桃国自产| 久久精品一级爱片| 免费成人性网站| 欧美一个色资源| 亚洲图片你懂的| 亚洲成av人片在线观看无码| 国产成人午夜精品影院观看视频 | 7777精品伊人久久久大香线蕉最新版| 天天综合色天天综合| 蜜桃av一区二区三区| av电影天堂一区二区在线| 欧美一区永久视频免费观看| 亚洲欧美偷拍卡通变态| 成人午夜激情影院| 成人免费黄色在线| 3d动漫精品啪啪| 欧美电影精品一区二区| 亚洲国产精品精华液2区45| 欧美一区二区三区免费视频| 国产精品欧美一区喷水| 91色婷婷久久久久合中文| 欧美日韩精品欧美日韩精品| 最新国产成人在线观看| 成人综合婷婷国产精品久久免费| 欧洲一区二区三区在线| 亚洲风情在线资源站| 欧美性色综合网| 亚洲二区在线观看| 91精品国产入口| 精彩视频一区二区三区| 久久综合色鬼综合色| 国产91精品入口| 成人免费在线视频观看| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 五月天一区二区三区| 7777精品伊人久久久大香线蕉| 欧美久久久久久久久| 国产精品久久网站| 日韩不卡一二三区| 国产一区二区三区| 精品区一区二区| 看电视剧不卡顿的网站| 日韩一级欧美一级| 国产精品―色哟哟| 亚洲福中文字幕伊人影院| 高潮精品一区videoshd| 中文字幕在线不卡一区二区三区| 午夜精品一区二区三区电影天堂 | 亚洲欧美另类图片小说| 色综合久久中文字幕综合网| 香蕉久久夜色精品国产使用方法| 91麻豆精品久久久久蜜臀 | 国产精品久久久久久久久搜平片| 色婷婷精品大视频在线蜜桃视频| 捆绑变态av一区二区三区 | 欧美影视一区在线| 国产成人自拍网| 久久99精品国产.久久久久| 亚洲天堂2014| 久久夜色精品国产噜噜av| 3d成人h动漫网站入口| 色呦呦日韩精品| 91麻豆福利精品推荐| 国产成人av一区二区| 国产亚洲短视频| 欧美zozo另类异族| 精品剧情v国产在线观看在线| 欧美视频三区在线播放| 欧美亚洲综合一区| 欧美色视频在线| 日韩丝袜美女视频| 国产欧美精品区一区二区三区 | 久久精品视频网| 国产欧美精品一区| 夜夜嗨av一区二区三区网页| 亚洲一区在线观看网站| 性感美女极品91精品| 日韩高清欧美激情| 激情综合色丁香一区二区| 狠狠色狠狠色综合| 91福利在线免费观看| 欧美日韩国产精品成人| 2020国产精品自拍| 亚洲国产精品精华液网站| 狠狠网亚洲精品| 色哟哟国产精品| 26uuu另类欧美| 欧美日韩中字一区| 一色桃子久久精品亚洲| 日本成人在线电影网| 成人97人人超碰人人99| 欧美xxxxx裸体时装秀| 国产精品理论在线观看| 捆绑调教一区二区三区| 欧美性极品少妇| 亚洲欧洲日韩一区二区三区| 日本成人在线一区| 国产成人高清在线| 激情综合五月婷婷| 久久精品夜色噜噜亚洲aⅴ| 亚洲夂夂婷婷色拍ww47 | 风间由美一区二区av101 | 国产91清纯白嫩初高中在线观看| 美女一区二区三区在线观看| 国产在线一区二区综合免费视频| 日本伊人精品一区二区三区观看方式| 国产成人一区二区精品非洲| 欧美精选午夜久久久乱码6080| 亚洲一区二区视频| 欧美自拍偷拍一区| 亚洲一区二区三区四区五区中文| 97久久久精品综合88久久| 国产精品视频一二三区| 国产乱人伦精品一区二区在线观看 | 国产一区二区三区免费播放| 久久新电视剧免费观看| 成人黄色av电影| 一区二区三区波多野结衣在线观看| 久久狠狠亚洲综合| 欧美一区二区三区在线| 久久国产精品99久久久久久老狼 | 亚洲一区二区av在线| 欧美一区二区播放| 99久久久无码国产精品| 亚洲成人资源在线| 中文字幕一区二区不卡| 欧美丰满少妇xxxxx高潮对白| 国产一区999| 欧美bbbbb| 亚洲成年人网站在线观看| 国产欧美日韩久久| 日韩三级av在线播放| 欧美日韩一区二区三区在线| 国产一区二区视频在线| 蜜桃一区二区三区在线观看| 亚洲情趣在线观看| 国产精品久久久久久久久晋中| 欧美一区二区三区小说| 欧美日韩高清一区二区不卡| 成人精品电影在线观看| 国产高清在线精品| 国产精品亚洲专一区二区三区| 午夜伦理一区二区| 日韩制服丝袜先锋影音| 亚洲男帅同性gay1069| 国产精品久久久久久久久免费相片| 欧美二区乱c少妇| 欧美精品一区二区三区蜜桃视频| 制服丝袜中文字幕一区| 337p日本欧洲亚洲大胆精品| 日韩欧美一区二区在线视频| 日韩欧美综合在线| 日韩欧美一级片| 精品国产一区a| 国产精品传媒视频| 天天做天天摸天天爽国产一区| 亚洲图片有声小说| 另类小说图片综合网| 成人黄色小视频| 欧美色欧美亚洲另类二区| 欧美精品一区二区久久婷婷| 亚洲色图视频网| 免费精品视频在线| 色哟哟国产精品| 国产精品人妖ts系列视频| 亚洲动漫第一页| 国产成人精品亚洲777人妖| 欧美做爰猛烈大尺度电影无法无天| 日韩av高清在线观看| 九色综合狠狠综合久久| 日韩三级电影网址| 中文字幕一区三区| 自拍偷拍亚洲激情| 麻豆精品新av中文字幕| 美国av一区二区| www.欧美精品一二区| 91视频在线看| 国产欧美日韩精品在线| 久久久精品一品道一区| 亚洲精品中文在线影院| 中文字幕中文乱码欧美一区二区 | 亚洲国产一区二区视频| 99精品视频在线观看免费| 国产香蕉久久精品综合网| 麻豆精品国产传媒mv男同| 欧美一区二区二区| 美女视频网站黄色亚洲| 欧美大片国产精品| 伦理电影国产精品| 久久久蜜桃精品| 成人夜色视频网站在线观看| 国产精品久久久久婷婷| 99国产精品久久久久久久久久| 亚洲欧美怡红院| 欧美精品日韩精品|