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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? tif_dirread.c

?? 支持各種柵格圖像和矢量圖像讀取的庫(kù)
?? C
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
/* $Id: tif_dirread.c,v 1.88 2006/10/13 15:06:52 dron Exp $ *//* * Copyright (c) 1988-1997 Sam Leffler * Copyright (c) 1991-1997 Silicon Graphics, Inc. * * Permission to use, copy, modify, distribute, and sell this software and  * its documentation for any purpose is hereby granted without fee, provided * that (i) the above copyright notices and this permission notice appear in * all copies of the software and related documentation, and (ii) the names of * Sam Leffler and Silicon Graphics may not be used in any advertising or * publicity relating to the software without the specific, prior written * permission of Sam Leffler and Silicon Graphics. *  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.   *  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE  * OF THIS SOFTWARE. *//* * TIFF Library. * * Directory Read Support Routines. */#include "tiffiop.h"#define	IGNORE	0		/* tag placeholder used below */#ifdef HAVE_IEEEFP# define	TIFFCvtIEEEFloatToNative(tif, n, fp)# define	TIFFCvtIEEEDoubleToNative(tif, n, dp)#elseextern	void TIFFCvtIEEEFloatToNative(TIFF*, uint32, float*);extern	void TIFFCvtIEEEDoubleToNative(TIFF*, uint32, double*);#endifstatic  TIFFDirEntry* TIFFReadDirectoryFind(TIFFDirEntry* dir,					    uint16 dircount, uint16 tagid);static	int EstimateStripByteCounts(TIFF*, TIFFDirEntry*, uint16);static	void MissingRequired(TIFF*, const char*);static	int TIFFCheckDirOffset(TIFF*, toff_t);static	int CheckDirCount(TIFF*, TIFFDirEntry*, uint32);static	uint16 TIFFFetchDirectory(TIFF*, toff_t, TIFFDirEntry**, toff_t *);static	tsize_t TIFFFetchData(TIFF*, TIFFDirEntry*, char*);static	tsize_t TIFFFetchString(TIFF*, TIFFDirEntry*, char*);static	float TIFFFetchRational(TIFF*, TIFFDirEntry*);static	int TIFFFetchNormalTag(TIFF*, TIFFDirEntry*);static	int TIFFFetchPerSampleShorts(TIFF*, TIFFDirEntry*, uint16*);static	int TIFFFetchPerSampleLongs(TIFF*, TIFFDirEntry*, uint32*);static	int TIFFFetchPerSampleAnys(TIFF*, TIFFDirEntry*, double*);static	int TIFFFetchShortArray(TIFF*, TIFFDirEntry*, uint16*);static	int TIFFFetchStripThing(TIFF*, TIFFDirEntry*, long, uint32**);static	int TIFFFetchRefBlackWhite(TIFF*, TIFFDirEntry*);static	float TIFFFetchFloat(TIFF*, TIFFDirEntry*);static	int TIFFFetchFloatArray(TIFF*, TIFFDirEntry*, float*);static	int TIFFFetchDoubleArray(TIFF*, TIFFDirEntry*, double*);static	int TIFFFetchAnyArray(TIFF*, TIFFDirEntry*, double*);static	int TIFFFetchShortPair(TIFF*, TIFFDirEntry*);static	void ChopUpSingleUncompressedStrip(TIFF*);/* * Read the next TIFF directory from a file and convert it to the internal * format. We read directories sequentially. */intTIFFReadDirectory(TIFF* tif){	static const char module[] = "TIFFReadDirectory";	int n;	TIFFDirectory* td;	TIFFDirEntry *dp, *dir = NULL;	uint16 iv;	uint32 v;	const TIFFFieldInfo* fip;	size_t fix;	uint16 dircount;	int diroutoforderwarning = 0, compressionknown = 0;	tif->tif_diroff = tif->tif_nextdiroff;	/*	 * Check whether we have the last offset or bad offset (IFD looping).	 */	if (!TIFFCheckDirOffset(tif, tif->tif_nextdiroff))		return 0;	/*	 * Cleanup any previous compression state.	 */	(*tif->tif_cleanup)(tif);	tif->tif_curdir++;	dircount = TIFFFetchDirectory(tif, tif->tif_nextdiroff,				      &dir, &tif->tif_nextdiroff);	if (!dircount) {		TIFFErrorExt(tif->tif_clientdata, module,			     "%s: Failed to read directory at offset %lu",			     tif->tif_name, tif->tif_nextdiroff);		return 0;	}	tif->tif_flags &= ~TIFF_BEENWRITING;	/* reset before new dir */	/*	 * Setup default value and then make a pass over	 * the fields to check type and tag information,	 * and to extract info required to size data	 * structures.  A second pass is made afterwards	 * to read in everthing not taken in the first pass.	 */	td = &tif->tif_dir;	/* free any old stuff and reinit */	TIFFFreeDirectory(tif);	TIFFDefaultDirectory(tif);	/*	 * Electronic Arts writes gray-scale TIFF files	 * without a PlanarConfiguration directory entry.	 * Thus we setup a default value here, even though	 * the TIFF spec says there is no default value.	 */	TIFFSetField(tif, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);	/*	 * Sigh, we must make a separate pass through the	 * directory for the following reason:	 *	 * We must process the Compression tag in the first pass	 * in order to merge in codec-private tag definitions (otherwise	 * we may get complaints about unknown tags).  However, the	 * Compression tag may be dependent on the SamplesPerPixel	 * tag value because older TIFF specs permited Compression	 * to be written as a SamplesPerPixel-count tag entry.	 * Thus if we don't first figure out the correct SamplesPerPixel	 * tag value then we may end up ignoring the Compression tag	 * value because it has an incorrect count value (if the	 * true value of SamplesPerPixel is not 1).	 *	 * It sure would have been nice if Aldus had really thought	 * this stuff through carefully.	 */	for (dp = dir, n = dircount; n > 0; n--, dp++) {		if (tif->tif_flags & TIFF_SWAB) {			TIFFSwabArrayOfShort(&dp->tdir_tag, 2);			TIFFSwabArrayOfLong(&dp->tdir_count, 2);		}		if (dp->tdir_tag == TIFFTAG_SAMPLESPERPIXEL) {			if (!TIFFFetchNormalTag(tif, dp))				goto bad;			dp->tdir_tag = IGNORE;		}	}	/*	 * First real pass over the directory.	 */	fix = 0;	for (dp = dir, n = dircount; n > 0; n--, dp++) {		if (fix >= tif->tif_nfields || dp->tdir_tag == IGNORE)			continue;		/*		 * Silicon Beach (at least) writes unordered		 * directory tags (violating the spec).  Handle		 * it here, but be obnoxious (maybe they'll fix it?).		 */		if (dp->tdir_tag < tif->tif_fieldinfo[fix]->field_tag) {			if (!diroutoforderwarning) {				TIFFWarningExt(tif->tif_clientdata, module,"%s: invalid TIFF directory; tags are not sorted in ascending order",					    tif->tif_name);				diroutoforderwarning = 1;			}			fix = 0;			/* O(n^2) */		}		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 );					/*					 * creating anonymous fields prior to					 * knowing the compression algorithm					 * (ie, when the field info has been					 * merged) could cause crashes with					 * pathological directories.					 */					if (compressionknown) {						TIFFMergeFieldInfo(tif,						_TIFFCreateAnonFieldInfo(tif,						dp->tdir_tag,						(TIFFDataType) dp->tdir_type),						1);					} else						goto ignore;                    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;		}		switch (dp->tdir_tag) {		case TIFFTAG_COMPRESSION:			/*			 * The 5.0 spec says the Compression tag has			 * one value, while earlier specs say it has			 * one value per sample.  Because of this, we			 * accept the tag if one value is supplied.			 */			if (dp->tdir_count == 1) {				v = TIFFExtractData(tif,				    dp->tdir_type, dp->tdir_offset);				if (!TIFFSetField(tif, dp->tdir_tag, (uint16)v))					goto bad;				else					compressionknown = 1;				break;			/* XXX: workaround for broken TIFFs */			} else if (dp->tdir_type == TIFF_LONG) {				if (!TIFFFetchPerSampleLongs(tif, dp, &v) ||				    !TIFFSetField(tif, dp->tdir_tag, (uint16)v))					goto bad;			} else {				if (!TIFFFetchPerSampleShorts(tif, dp, &iv)				    || !TIFFSetField(tif, dp->tdir_tag, iv))					goto bad;			}			dp->tdir_tag = IGNORE;			break;		case TIFFTAG_STRIPOFFSETS:		case TIFFTAG_STRIPBYTECOUNTS:		case TIFFTAG_TILEOFFSETS:		case TIFFTAG_TILEBYTECOUNTS:			TIFFSetFieldBit(tif, fip->field_bit);			break;		case TIFFTAG_IMAGEWIDTH:		case TIFFTAG_IMAGELENGTH:		case TIFFTAG_IMAGEDEPTH:		case TIFFTAG_TILELENGTH:		case TIFFTAG_TILEWIDTH:		case TIFFTAG_TILEDEPTH:		case TIFFTAG_PLANARCONFIG:		case TIFFTAG_ROWSPERSTRIP:		case TIFFTAG_EXTRASAMPLES:			if (!TIFFFetchNormalTag(tif, dp))				goto bad;			dp->tdir_tag = IGNORE;			break;		}	}	/*	 * XXX: OJPEG hack.	 * If a) compression is OJPEG, b) planarconfig tag says it's separate,	 * c) strip offsets/bytecounts tag are both present and	 * d) both contain exactly one value, then we consistently find	 * that the buggy implementation of the buggy compression scheme	 * matches contig planarconfig best. So we 'fix-up' the tag here	 */	if ((td->td_compression==COMPRESSION_OJPEG) &&	    (td->td_planarconfig==PLANARCONFIG_SEPARATE)) {		dp = TIFFReadDirectoryFind(dir,dircount,TIFFTAG_STRIPOFFSETS);		if ((dp!=0) && (dp->tdir_count==1)) {			dp = TIFFReadDirectoryFind(dir, dircount,						   TIFFTAG_STRIPBYTECOUNTS);			if ((dp!=0) && (dp->tdir_count==1)) {				td->td_planarconfig=PLANARCONFIG_CONTIG;				TIFFWarningExt(tif->tif_clientdata,					       "TIFFReadDirectory",				"Planarconfig tag value assumed incorrect, "				"assuming data is contig instead of chunky");			}		}	}	/*	 * Allocate directory structure and setup defaults.	 */	if (!TIFFFieldSet(tif, FIELD_IMAGEDIMENSIONS)) {		MissingRequired(tif, "ImageLength");		goto bad;	}	/* 	 * Setup appropriate structures (by strip or by tile)	 */	if (!TIFFFieldSet(tif, FIELD_TILEDIMENSIONS)) {		td->td_nstrips = TIFFNumberOfStrips(tif);		td->td_tilewidth = td->td_imagewidth;		td->td_tilelength = td->td_rowsperstrip;		td->td_tiledepth = td->td_imagedepth;		tif->tif_flags &= ~TIFF_ISTILED;	} else {		td->td_nstrips = TIFFNumberOfTiles(tif);		tif->tif_flags |= TIFF_ISTILED;	}	if (!td->td_nstrips) {		TIFFErrorExt(tif->tif_clientdata, module,			     "%s: cannot handle zero number of %s",			     tif->tif_name, isTiled(tif) ? "tiles" : "strips");		goto bad;	}	td->td_stripsperimage = td->td_nstrips;	if (td->td_planarconfig == PLANARCONFIG_SEPARATE)		td->td_stripsperimage /= td->td_samplesperpixel;	if (!TIFFFieldSet(tif, FIELD_STRIPOFFSETS)) {		if ((td->td_compression==COMPRESSION_OJPEG) &&		    (isTiled(tif)==0) &&		    (td->td_nstrips==1)) {			/*			 * XXX: OJPEG hack.			 * If a) compression is OJPEG, b) it's not a tiled TIFF,			 * and c) the number of strips is 1,			 * then we tolerate the absence of stripoffsets tag,			 * because, presumably, all required data is in the			 * JpegInterchangeFormat stream.			 */			TIFFSetFieldBit(tif, FIELD_STRIPOFFSETS);		} else {			MissingRequired(tif,				isTiled(tif) ? "TileOffsets" : "StripOffsets");			goto bad;		}	}	/*	 * Second pass: extract other information.	 */	for (dp = dir, n = dircount; n > 0; n--, dp++) {		if (dp->tdir_tag == IGNORE)			continue;		switch (dp->tdir_tag) {		case TIFFTAG_MINSAMPLEVALUE:		case TIFFTAG_MAXSAMPLEVALUE:		case TIFFTAG_BITSPERSAMPLE:		case TIFFTAG_DATATYPE:		case TIFFTAG_SAMPLEFORMAT:			/*			 * The 5.0 spec says the Compression tag has			 * one value, while earlier specs say it has			 * one value per sample.  Because of this, we			 * accept the tag if one value is supplied.			 *			 * The MinSampleValue, MaxSampleValue, BitsPerSample			 * DataType and SampleFormat tags are supposed to be			 * written as one value/sample, but some vendors			 * incorrectly write one value only -- so we accept			 * that as well (yech). Other vendors write correct			 * value for NumberOfSamples, but incorrect one for			 * BitsPerSample and friends, and we will read this			 * too.			 */			if (dp->tdir_count == 1) {				v = TIFFExtractData(tif,				    dp->tdir_type, dp->tdir_offset);				if (!TIFFSetField(tif, dp->tdir_tag, (uint16)v))					goto bad;			/* XXX: workaround for broken TIFFs */			} else if (dp->tdir_tag == TIFFTAG_BITSPERSAMPLE				   && dp->tdir_type == TIFF_LONG) {				if (!TIFFFetchPerSampleLongs(tif, dp, &v) ||				    !TIFFSetField(tif, dp->tdir_tag, (uint16)v))					goto bad;			} else {				if (!TIFFFetchPerSampleShorts(tif, dp, &iv) ||				    !TIFFSetField(tif, dp->tdir_tag, iv))					goto bad;			}			break;		case TIFFTAG_SMINSAMPLEVALUE:		case TIFFTAG_SMAXSAMPLEVALUE:			{				double dv = 0.0;				if (!TIFFFetchPerSampleAnys(tif, dp, &dv) ||				    !TIFFSetField(tif, dp->tdir_tag, dv))					goto bad;			}			break;		case TIFFTAG_STRIPOFFSETS:		case TIFFTAG_TILEOFFSETS:			if (!TIFFFetchStripThing(tif, dp,			    td->td_nstrips, &td->td_stripoffset))				goto bad;			break;		case TIFFTAG_STRIPBYTECOUNTS:		case TIFFTAG_TILEBYTECOUNTS:			if (!TIFFFetchStripThing(tif, dp,			    td->td_nstrips, &td->td_stripbytecount))				goto bad;			break;		case TIFFTAG_COLORMAP:		case TIFFTAG_TRANSFERFUNCTION:			{				char* cp;				/*				 * TransferFunction can have either 1x or 3x				 * data values; Colormap can have only 3x				 * items.				 */				v = 1L<<td->td_bitspersample;				if (dp->tdir_tag == TIFFTAG_COLORMAP ||				    dp->tdir_count != v) {					if (!CheckDirCount(tif, dp, 3 * v))						break;				}				v *= sizeof(uint16);				cp = (char *)_TIFFCheckMalloc(tif,							      dp->tdir_count,							      sizeof (uint16),					"to read \"TransferFunction\" tag");				if (cp != NULL) {					if (TIFFFetchData(tif, dp, cp)) {						/*						 * This deals with there being						 * only one array to apply to						 * all samples.						 */						uint32 c = 1L << td->td_bitspersample;						if (dp->tdir_count == c)							v = 0L;						TIFFSetField(tif, dp->tdir_tag,						    cp, cp+v, cp+2*v);					}					_TIFFfree(cp);				}				break;			}		case TIFFTAG_PAGENUMBER:		case TIFFTAG_HALFTONEHINTS:		case TIFFTAG_YCBCRSUBSAMPLING:		case TIFFTAG_DOTRANGE:			(void) TIFFFetchShortPair(tif, dp);			break;		case TIFFTAG_REFERENCEBLACKWHITE:			(void) TIFFFetchRefBlackWhite(tif, dp);			break;/* BEGIN REV 4.0 COMPATIBILITY */		case TIFFTAG_OSUBFILETYPE:			v = 0L;			switch (TIFFExtractData(tif, dp->tdir_type,

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
琪琪久久久久日韩精品| 国产不卡在线一区| 国产精品美女久久久久久久| 日本二三区不卡| 国产一区啦啦啦在线观看| 亚洲精品午夜久久久| 久久精品水蜜桃av综合天堂| 欧美综合一区二区| 国产精品一色哟哟哟| 天堂久久一区二区三区| 尤物视频一区二区| 久久一留热品黄| 欧美三级视频在线播放| eeuss鲁片一区二区三区在线看| 丝袜美腿亚洲一区二区图片| 亚洲欧美另类在线| 久久精品网站免费观看| 日韩免费视频一区| 欧美乱熟臀69xxxxxx| 91蜜桃在线观看| 国产·精品毛片| 麻豆国产91在线播放| 综合激情成人伊人| 欧美国产一区视频在线观看| 精品91自产拍在线观看一区| 777亚洲妇女| 欧美色精品天天在线观看视频| 一本色道亚洲精品aⅴ| 国产成a人亚洲| 国产另类ts人妖一区二区| 蜜臀va亚洲va欧美va天堂| 亚洲国产精品麻豆| 亚洲第一久久影院| 亚洲一区二区三区美女| 亚洲制服丝袜一区| 一区二区三区影院| 亚洲高清免费在线| 亚洲午夜电影在线观看| 亚洲国产美国国产综合一区二区| 亚洲人xxxx| 一区二区三区久久| 亚洲成人免费在线观看| 亚洲伦在线观看| 日本视频一区二区三区| 国产视频911| 亚洲一二三四久久| 日韩精品最新网址| 精品国产乱码久久久久久蜜臀 | 亚洲图片欧美一区| 亚洲自拍偷拍图区| 午夜欧美电影在线观看| 日本人妖一区二区| 精品一区二区成人精品| 国产高清不卡二三区| 成人a免费在线看| www.色综合.com| 欧美中文字幕亚洲一区二区va在线 | 亚洲美女屁股眼交| 天天免费综合色| 久久99国产精品久久99| 国产成人午夜精品影院观看视频| 成人av免费在线| 欧洲一区二区三区免费视频| 欧美一区国产二区| 欧美日韩国产美女| 欧美影院一区二区三区| 91看片淫黄大片一级在线观看| 久久电影国产免费久久电影 | 欧美性生活一区| 欧美一区二区在线免费播放| 精品国产免费一区二区三区四区 | 色婷婷久久久亚洲一区二区三区 | 日本丰满少妇一区二区三区| 欧美女孩性生活视频| 久久伊人中文字幕| 亚洲欧洲精品一区二区三区 | 日韩av午夜在线观看| 国产精品中文有码| 欧洲亚洲精品在线| www国产成人免费观看视频 深夜成人网| 久久久久久久久久久久电影| 美女国产一区二区三区| 麻豆91在线看| 一本久久a久久免费精品不卡| 欧美日韩成人在线| 中文字幕欧美国产| 亚州成人在线电影| aaa亚洲精品| 久久网这里都是精品| 一区二区三区91| 国产成人av一区二区三区在线 | 一本一道久久a久久精品| 日韩免费视频一区| 亚洲精品乱码久久久久久| 国内精品写真在线观看| 欧洲精品中文字幕| 国产欧美日韩另类视频免费观看| 性久久久久久久久久久久| 成人av手机在线观看| 精品第一国产综合精品aⅴ| 亚洲一区精品在线| 成人午夜视频免费看| 日韩三级在线免费观看| 一区二区三区高清在线| 国产69精品久久99不卡| 日韩欧美亚洲国产精品字幕久久久| 综合精品久久久| 成人一区在线观看| 精品国产1区2区3区| 日韩和欧美的一区| 欧美性极品少妇| 亚洲视频香蕉人妖| voyeur盗摄精品| 久久综合色鬼综合色| 日本特黄久久久高潮| 欧美性三三影院| 亚洲素人一区二区| 成人永久aaa| 国产欧美日韩久久| 国产精品一区二区久久不卡 | 欧美综合色免费| 亚洲美女视频在线观看| 97久久精品人人做人人爽| 久久久久国产精品麻豆ai换脸| 美女视频一区在线观看| 91麻豆精品国产自产在线观看一区 | 看电视剧不卡顿的网站| 欧美日本一道本在线视频| 亚洲第一狼人社区| 欧美午夜电影网| 亚洲18影院在线观看| 欧美日韩一区视频| 亚洲成av人片一区二区梦乃| 欧美午夜精品一区| 亚洲成人777| 欧美伦理影视网| 五月激情综合网| 日韩欧美国产精品| 韩日av一区二区| 国产亚洲一区二区三区四区| 国产99久久久国产精品潘金| 国产欧美精品国产国产专区| 成人综合在线观看| 亚洲欧美一区二区久久| 欧美综合一区二区| 日韩av高清在线观看| 欧美电影免费观看完整版| 精品一区二区三区免费| 久久免费偷拍视频| 99精品视频一区二区| 亚洲综合图片区| 91精品国产综合久久福利| 国内精品视频一区二区三区八戒| 国产亚洲欧美日韩日本| 99精品热视频| 视频一区视频二区中文| 久久综合中文字幕| 不卡的av网站| 亚洲一区二区三区四区在线| 欧美一区二区日韩| 国产高清亚洲一区| 一区二区视频在线| 91精品国产色综合久久ai换脸| 狠狠色丁香久久婷婷综| 中文字幕日本不卡| 欧美妇女性影城| 国产成人高清在线| 亚洲不卡av一区二区三区| 久久噜噜亚洲综合| 一本久久精品一区二区| 奇米在线7777在线精品| 国产精品少妇自拍| 欧美日韩在线播放三区| 麻豆精品在线播放| 亚洲男人天堂av网| 欧美福利视频一区| 国产精品一区二区久久不卡| 亚洲一区二区不卡免费| 欧美一级黄色片| 国产99久久久精品| 亚洲高清免费观看高清完整版在线观看| 欧美一级高清大全免费观看| 国产寡妇亲子伦一区二区| 亚洲精品videosex极品| 日韩一区二区三区观看| 91视频观看免费| 秋霞午夜av一区二区三区 | 欧美一级在线观看| 菠萝蜜视频在线观看一区| 国产精品一区二区久激情瑜伽| 99国产精品久久久久久久久久久| 麻豆精品视频在线| 日本不卡一二三| 在线观看亚洲精品| 欧美成人精品3d动漫h| 欧美日韩免费视频| 中文字幕国产一区| 九九九精品视频| 欧美三级韩国三级日本三斤| 一区二区三区中文字幕电影|