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

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

?? tif_fax3.c

?? 支持各種柵格圖像和矢量圖像讀取的庫
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* $Id: tif_fax3.c,v 1.43.2.1 2007/03/28 21:48:16 fwarmerdam Exp $ *//* * Copyright (c) 1990-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. */#include "tiffiop.h"#ifdef CCITT_SUPPORT/* * TIFF Library. * * CCITT Group 3 (T.4) and Group 4 (T.6) Compression Support. * * This file contains support for decoding and encoding TIFF * compression algorithms 2, 3, 4, and 32771. * * Decoder support is derived, with permission, from the code * in Frank Cringle's viewfax program; *      Copyright (C) 1990, 1995  Frank D. Cringle. */#include "tif_fax3.h"#define	G3CODES#include "t4.h"#include <stdio.h>/* * Compression+decompression state blocks are * derived from this ``base state'' block. */typedef struct {        int     rw_mode;                /* O_RDONLY for decode, else encode */	int	mode;			/* operating mode */	uint32	rowbytes;		/* bytes in a decoded scanline */	uint32	rowpixels;		/* pixels in a scanline */	uint16	cleanfaxdata;		/* CleanFaxData tag */	uint32	badfaxrun;		/* BadFaxRun tag */	uint32	badfaxlines;		/* BadFaxLines tag */	uint32	groupoptions;		/* Group 3/4 options tag */	uint32	recvparams;		/* encoded Class 2 session params */	char*	subaddress;		/* subaddress string */	uint32	recvtime;		/* time spent receiving (secs) */	char*	faxdcs;			/* Table 2/T.30 encoded session params */	TIFFVGetMethod vgetparent;	/* super-class method */	TIFFVSetMethod vsetparent;	/* super-class method */	TIFFPrintMethod printdir;	/* super-class method */} Fax3BaseState;#define	Fax3State(tif)		((Fax3BaseState*) (tif)->tif_data)typedef enum { G3_1D, G3_2D } Ttag;typedef struct {	Fax3BaseState b;	/* Decoder state info */	const unsigned char* bitmap;	/* bit reversal table */	uint32	data;			/* current i/o byte/word */	int	bit;			/* current i/o bit in byte */	int	EOLcnt;			/* count of EOL codes recognized */	TIFFFaxFillFunc fill;		/* fill routine */	uint32*	runs;			/* b&w runs for current/previous row */	uint32*	refruns;		/* runs for reference line */	uint32*	curruns;		/* runs for current line */	/* Encoder state info */	Ttag    tag;			/* encoding state */	unsigned char*	refline;	/* reference line for 2d decoding */	int	k;			/* #rows left that can be 2d encoded */	int	maxk;			/* max #rows that can be 2d encoded */	int line;} Fax3CodecState;#define	DecoderState(tif)	((Fax3CodecState*) Fax3State(tif))#define	EncoderState(tif)	((Fax3CodecState*) Fax3State(tif))#define	is2DEncoding(sp) \	(sp->b.groupoptions & GROUP3OPT_2DENCODING)#define	isAligned(p,t)	((((unsigned long)(p)) & (sizeof (t)-1)) == 0)/* * Group 3 and Group 4 Decoding. *//* * These macros glue the TIFF library state to * the state expected by Frank's decoder. */#define	DECLARE_STATE(tif, sp, mod)					\    static const char module[] = mod;					\    Fax3CodecState* sp = DecoderState(tif);				\    int a0;				/* reference element */		\    int lastx = sp->b.rowpixels;	/* last element in row */	\    uint32 BitAcc;			/* bit accumulator */		\    int BitsAvail;			/* # valid bits in BitAcc */	\    int RunLength;			/* length of current run */	\    unsigned char* cp;			/* next byte of input data */	\    unsigned char* ep;			/* end of input data */		\    uint32* pa;				/* place to stuff next run */	\    uint32* thisrun;			/* current row's run array */	\    int EOLcnt;				/* # EOL codes recognized */	\    const unsigned char* bitmap = sp->bitmap;	/* input data bit reverser */	\    const TIFFFaxTabEnt* TabEnt#define	DECLARE_STATE_2D(tif, sp, mod)					\    DECLARE_STATE(tif, sp, mod);					\    int b1;				/* next change on prev line */	\    uint32* pb				/* next run in reference line */\/* * Load any state that may be changed during decoding. */#define	CACHE_STATE(tif, sp) do {					\    BitAcc = sp->data;							\    BitsAvail = sp->bit;						\    EOLcnt = sp->EOLcnt;						\    cp = (unsigned char*) tif->tif_rawcp;				\    ep = cp + tif->tif_rawcc;						\} while (0)/* * Save state possibly changed during decoding. */#define	UNCACHE_STATE(tif, sp) do {					\    sp->bit = BitsAvail;						\    sp->data = BitAcc;							\    sp->EOLcnt = EOLcnt;						\    tif->tif_rawcc -= (tidata_t) cp - tif->tif_rawcp;			\    tif->tif_rawcp = (tidata_t) cp;					\} while (0)/* * Setup state for decoding a strip. */static intFax3PreDecode(TIFF* tif, tsample_t s){	Fax3CodecState* sp = DecoderState(tif);	(void) s;	assert(sp != NULL);	sp->bit = 0;			/* force initial read */	sp->data = 0;	sp->EOLcnt = 0;			/* force initial scan for EOL */	/*	 * Decoder assumes lsb-to-msb bit order.  Note that we select	 * this here rather than in Fax3SetupState so that viewers can	 * hold the image open, fiddle with the FillOrder tag value,	 * and then re-decode the image.  Otherwise they'd need to close	 * and open the image to get the state reset.	 */	sp->bitmap =	    TIFFGetBitRevTable(tif->tif_dir.td_fillorder != FILLORDER_LSB2MSB);	if (sp->refruns) {		/* init reference line to white */		sp->refruns[0] = (uint32) sp->b.rowpixels;		sp->refruns[1] = 0;	}	sp->line = 0;	return (1);}/* * Routine for handling various errors/conditions. * Note how they are "glued into the decoder" by * overriding the definitions used by the decoder. */static voidFax3Unexpected(const char* module, TIFF* tif, uint32 line, uint32 a0){	TIFFErrorExt(tif->tif_clientdata, module, "%s: Bad code word at line %lu of %s %lu (x %lu)",		tif->tif_name, (unsigned long) line, isTiled(tif) ? "tile" : "strip",	   (unsigned long) (isTiled(tif) ? tif->tif_curtile : tif->tif_curstrip),	   (unsigned long) a0);}#define	unexpected(table, a0)	Fax3Unexpected(module, tif, sp->line, a0)static voidFax3Extension(const char* module, TIFF* tif, uint32 line, uint32 a0){	TIFFErrorExt(tif->tif_clientdata, module,	    "%s: Uncompressed data (not supported) at line %lu of %s %lu (x %lu)",	    tif->tif_name, (unsigned long) line, isTiled(tif) ? "tile" : "strip",       (unsigned long) (isTiled(tif) ? tif->tif_curtile : tif->tif_curstrip),       (unsigned long) a0);}#define	extension(a0)	Fax3Extension(module, tif, sp->line, a0)static voidFax3BadLength(const char* module, TIFF* tif, uint32 line, uint32 a0, uint32 lastx){	TIFFWarningExt(tif->tif_clientdata, module, "%s: %s at line %lu of %s %lu (got %lu, expected %lu)",	    tif->tif_name,	    a0 < lastx ? "Premature EOL" : "Line length mismatch",	    (unsigned long) line, isTiled(tif) ? "tile" : "strip",        (unsigned long) (isTiled(tif) ? tif->tif_curtile : tif->tif_curstrip),        (unsigned long) a0, lastx);}#define	badlength(a0,lastx)	Fax3BadLength(module, tif, sp->line, a0, lastx)static voidFax3PrematureEOF(const char* module, TIFF* tif, uint32 line, uint32 a0){	TIFFWarningExt(tif->tif_clientdata, module, "%s: Premature EOF at line %lu of %s %lu (x %lu)",	    tif->tif_name,	    (unsigned long) line, isTiled(tif) ? "tile" : "strip",        (unsigned long) (isTiled(tif) ? tif->tif_curtile : tif->tif_curstrip),        (unsigned long) a0);}#define	prematureEOF(a0)	Fax3PrematureEOF(module, tif, sp->line, a0)#define	Nop/* * Decode the requested amount of G3 1D-encoded data. */static intFax3Decode1D(TIFF* tif, tidata_t buf, tsize_t occ, tsample_t s){	DECLARE_STATE(tif, sp, "Fax3Decode1D");	(void) s;	CACHE_STATE(tif, sp);	thisrun = sp->curruns;	while ((long)occ > 0) {		a0 = 0;		RunLength = 0;		pa = thisrun;#ifdef FAX3_DEBUG		printf("\nBitAcc=%08X, BitsAvail = %d\n", BitAcc, BitsAvail);		printf("-------------------- %d\n", tif->tif_row);		fflush(stdout);#endif		SYNC_EOL(EOF1D);		EXPAND1D(EOF1Da);		(*sp->fill)(buf, thisrun, pa, lastx);		buf += sp->b.rowbytes;		occ -= sp->b.rowbytes;		sp->line++;		continue;	EOF1D:				/* premature EOF */		CLEANUP_RUNS();	EOF1Da:				/* premature EOF */		(*sp->fill)(buf, thisrun, pa, lastx);		UNCACHE_STATE(tif, sp);		return (-1);	}	UNCACHE_STATE(tif, sp);	return (1);}#define	SWAP(t,a,b)	{ t x; x = (a); (a) = (b); (b) = x; }/* * Decode the requested amount of G3 2D-encoded data. */static intFax3Decode2D(TIFF* tif, tidata_t buf, tsize_t occ, tsample_t s){	DECLARE_STATE_2D(tif, sp, "Fax3Decode2D");	int is1D;			/* current line is 1d/2d-encoded */	(void) s;	CACHE_STATE(tif, sp);	while ((long)occ > 0) {		a0 = 0;		RunLength = 0;		pa = thisrun = sp->curruns;#ifdef FAX3_DEBUG		printf("\nBitAcc=%08X, BitsAvail = %d EOLcnt = %d",		    BitAcc, BitsAvail, EOLcnt);#endif		SYNC_EOL(EOF2D);		NeedBits8(1, EOF2D);		is1D = GetBits(1);	/* 1D/2D-encoding tag bit */		ClrBits(1);#ifdef FAX3_DEBUG		printf(" %s\n-------------------- %d\n",		    is1D ? "1D" : "2D", tif->tif_row);		fflush(stdout);#endif		pb = sp->refruns;		b1 = *pb++;		if (is1D)			EXPAND1D(EOF2Da);		else			EXPAND2D(EOF2Da);		(*sp->fill)(buf, thisrun, pa, lastx);		SETVALUE(0);		/* imaginary change for reference */		SWAP(uint32*, sp->curruns, sp->refruns);		buf += sp->b.rowbytes;		occ -= sp->b.rowbytes;		sp->line++;		continue;	EOF2D:				/* premature EOF */		CLEANUP_RUNS();	EOF2Da:				/* premature EOF */		(*sp->fill)(buf, thisrun, pa, lastx);		UNCACHE_STATE(tif, sp);		return (-1);	}	UNCACHE_STATE(tif, sp);	return (1);}#undef SWAP/* * The ZERO & FILL macros must handle spans < 2*sizeof(long) bytes. * For machines with 64-bit longs this is <16 bytes; otherwise * this is <8 bytes.  We optimize the code here to reflect the * machine characteristics. */#if SIZEOF_LONG == 8# define FILL(n, cp)							    \    switch (n) {							    \    case 15:(cp)[14] = 0xff; case 14:(cp)[13] = 0xff; case 13: (cp)[12] = 0xff;\    case 12:(cp)[11] = 0xff; case 11:(cp)[10] = 0xff; case 10: (cp)[9] = 0xff;\    case  9: (cp)[8] = 0xff; case  8: (cp)[7] = 0xff; case  7: (cp)[6] = 0xff;\    case  6: (cp)[5] = 0xff; case  5: (cp)[4] = 0xff; case  4: (cp)[3] = 0xff;\    case  3: (cp)[2] = 0xff; case  2: (cp)[1] = 0xff;			      \    case  1: (cp)[0] = 0xff; (cp) += (n); case 0:  ;			      \    }# define ZERO(n, cp)							\    switch (n) {							\    case 15:(cp)[14] = 0; case 14:(cp)[13] = 0; case 13: (cp)[12] = 0;	\    case 12:(cp)[11] = 0; case 11:(cp)[10] = 0; case 10: (cp)[9] = 0;	\    case  9: (cp)[8] = 0; case  8: (cp)[7] = 0; case  7: (cp)[6] = 0;	\    case  6: (cp)[5] = 0; case  5: (cp)[4] = 0; case  4: (cp)[3] = 0;	\    case  3: (cp)[2] = 0; case  2: (cp)[1] = 0;				\    case  1: (cp)[0] = 0; (cp) += (n); case 0:  ;			\    }#else# define FILL(n, cp)							    \    switch (n) {							    \    case 7: (cp)[6] = 0xff; case 6: (cp)[5] = 0xff; case 5: (cp)[4] = 0xff; \    case 4: (cp)[3] = 0xff; case 3: (cp)[2] = 0xff; case 2: (cp)[1] = 0xff; \    case 1: (cp)[0] = 0xff; (cp) += (n); case 0:  ;			    \    }# define ZERO(n, cp)							\    switch (n) {							\    case 7: (cp)[6] = 0; case 6: (cp)[5] = 0; case 5: (cp)[4] = 0;	\    case 4: (cp)[3] = 0; case 3: (cp)[2] = 0; case 2: (cp)[1] = 0;	\    case 1: (cp)[0] = 0; (cp) += (n); case 0:  ;			\    }#endif/* * Bit-fill a row according to the white/black * runs generated during G3/G4 decoding. */void_TIFFFax3fillruns(unsigned char* buf, uint32* runs, uint32* erun, uint32 lastx){	static const unsigned char _fillmasks[] =	    { 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff };	unsigned char* cp;	uint32 x, bx, run;	int32 n, nw;	long* lp;	if ((erun-runs)&1)	    *erun++ = 0;	x = 0;	for (; runs < erun; runs += 2) {	    run = runs[0];	    if (x+run > lastx || run > lastx )		run = runs[0] = (uint32) (lastx - x);	    if (run) {		cp = buf + (x>>3);		bx = x&7;		if (run > 8-bx) {		    if (bx) {			/* align to byte boundary */			*cp++ &= 0xff << (8-bx);			run -= 8-bx;		    }		    if( (n = run >> 3) != 0 ) {	/* multiple bytes to fill */			if ((n/sizeof (long)) > 1) {			    /*			     * Align to longword boundary and fill.			     */			    for (; n && !isAligned(cp, long); n--)				    *cp++ = 0x00;			    lp = (long*) cp;			    nw = (int32)(n / sizeof (long));			    n -= nw * sizeof (long);			    do {				    *lp++ = 0L;			    } while (--nw);			    cp = (unsigned char*) lp;			}			ZERO(n, cp);			run &= 7;		    }		    if (run)			cp[0] &= 0xff >> run;		} else		    cp[0] &= ~(_fillmasks[run]>>bx);		x += runs[0];	    }	    run = runs[1];	    if (x+run > lastx || run > lastx )		run = runs[1] = lastx - x;	    if (run) {		cp = buf + (x>>3);		bx = x&7;		if (run > 8-bx) {		    if (bx) {			/* align to byte boundary */			*cp++ |= 0xff >> bx;			run -= 8-bx;		    }		    if( (n = run>>3) != 0 ) {	/* multiple bytes to fill */			if ((n/sizeof (long)) > 1) {			    /*			     * Align to longword boundary and fill.			     */			    for (; n && !isAligned(cp, long); n--)				*cp++ = 0xff;			    lp = (long*) cp;			    nw = (int32)(n / sizeof (long));			    n -= nw * sizeof (long);			    do {				*lp++ = -1L;			    } while (--nw);			    cp = (unsigned char*) lp;			}			FILL(n, cp);			run &= 7;		    }		    if (run)			cp[0] |= 0xff00 >> run;		} else		    cp[0] |= _fillmasks[run]>>bx;		x += runs[1];	    }	}	assert(x == lastx);}#undef	ZERO#undef	FILL/* * Setup G3/G4-related compression/decompression state * before data is processed.  This routine is called once * per image -- it sets up different state based on whether * or not decoding or encoding is being done and whether * 1D- or 2D-encoded data is involved. */static intFax3SetupState(TIFF* tif){	TIFFDirectory* td = &tif->tif_dir;	Fax3BaseState* sp = Fax3State(tif);	int needsRefLine;	Fax3CodecState* dsp = (Fax3CodecState*) Fax3State(tif);	uint32 rowbytes, rowpixels, nruns;	if (td->td_bitspersample != 1) {		TIFFErrorExt(tif->tif_clientdata, tif->tif_name,		    "Bits/sample must be 1 for Group 3/4 encoding/decoding");		return (0);	}	/*	 * Calculate the scanline/tile widths.	 */	if (isTiled(tif)) {		rowbytes = TIFFTileRowSize(tif);		rowpixels = td->td_tilewidth;	} else {		rowbytes = TIFFScanlineSize(tif);		rowpixels = td->td_imagewidth;	}	sp->rowbytes = (uint32) rowbytes;	sp->rowpixels = (uint32) rowpixels;	/*	 * Allocate any additional space required for decoding/encoding.	 */	needsRefLine = (	    (sp->groupoptions & GROUP3OPT_2DENCODING) ||	    td->td_compression == COMPRESSION_CCITTFAX4	);	nruns = needsRefLine ? 2*TIFFroundup(rowpixels,32) : rowpixels;	nruns += 3;	dsp->runs = (uint32*) _TIFFCheckMalloc(tif, 2*nruns, sizeof (uint32),					  "for Group 3/4 run arrays");	if (dsp->runs == NULL)		return (0);	dsp->curruns = dsp->runs;	if (needsRefLine)		dsp->refruns = dsp->runs + nruns;	else		dsp->refruns = NULL;	if (td->td_compression == COMPRESSION_CCITTFAX3	    && is2DEncoding(dsp)) {	/* NB: default is 1D routine */		tif->tif_decoderow = Fax3Decode2D;		tif->tif_decodestrip = Fax3Decode2D;		tif->tif_decodetile = Fax3Decode2D;	}	if (needsRefLine) {		/* 2d encoding */		Fax3CodecState* esp = EncoderState(tif);		/*		 * 2d encoding requires a scanline		 * buffer for the ``reference line''; the		 * scanline against which delta encoding		 * is referenced.  The reference line must		 * be initialized to be ``white'' (done elsewhere).		 */		esp->refline = (unsigned char*) _TIFFmalloc(rowbytes);		if (esp->refline == NULL) {			TIFFErrorExt(tif->tif_clientdata, "Fax3SetupState",			    "%s: No space for Group 3/4 reference line",			    tif->tif_name);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
麻豆一区二区99久久久久| 奇米综合一区二区三区精品视频| 国产午夜精品在线观看| 国产亚洲综合av| 日韩精品一区二区三区老鸭窝| 精品视频999| 91精品麻豆日日躁夜夜躁| 欧美一区二区三区在线视频| 在线不卡a资源高清| 久久品道一品道久久精品| 欧美tk丨vk视频| 日本一区二区动态图| 久久综合五月天婷婷伊人| 国产精品久久久久四虎| 亚洲国产色一区| 国产精品一区二区久久不卡| 色综合网色综合| 在线综合+亚洲+欧美中文字幕| 成人国产在线观看| 国产**成人网毛片九色 | 精品理论电影在线| 久久伊99综合婷婷久久伊| 欧美国产一区视频在线观看| 亚洲自拍偷拍网站| 精品一区二区在线看| 91免费在线播放| 日韩精品综合一本久道在线视频| 欧美激情综合五月色丁香小说| 国产欧美一区二区精品秋霞影院 | 精品久久久久久亚洲综合网 | 中文字幕五月欧美| 欧美日产在线观看| 欧美日韩精品电影| 国产欧美日韩卡一| 国产精品欧美一级免费| 亚洲精品欧美激情| 美女一区二区视频| 99精品久久久久久| 精品国产人成亚洲区| 樱花影视一区二区| 国产酒店精品激情| 在线成人av影院| 亚洲午夜久久久久中文字幕久| 成人av在线资源网站| 精品国产免费一区二区三区香蕉 | 91猫先生在线| 国产精品久久久久一区二区三区共| 午夜精品久久久| 日韩一区二区精品葵司在线| 美女视频网站久久| 日韩欧美亚洲一区二区| 日韩电影在线观看电影| 精品国产欧美一区二区| 国产91高潮流白浆在线麻豆| 中文字幕 久热精品 视频在线 | 精品国产一区二区三区久久久蜜月 | 亚洲精品一区二区三区香蕉| 黄色资源网久久资源365| 国产亚洲人成网站| 99re这里只有精品6| 亚洲私人黄色宅男| 在线不卡的av| 国产成人av电影在线观看| 亚洲男人天堂av网| 91精品国产一区二区| 在线亚洲人成电影网站色www| www.亚洲人| 国产成人一区在线| 亚洲动漫第一页| 亚洲三级视频在线观看| 国产亚洲制服色| 欧美一区二区三区的| 色婷婷综合久久久久中文一区二区| 国产综合色在线| 日韩精品乱码免费| 亚洲美女精品一区| 久久网站热最新地址| 欧美日韩国产在线观看| 色综合天天天天做夜夜夜夜做| 国产在线不卡一卡二卡三卡四卡| 亚洲女同女同女同女同女同69| 亚洲欧洲无码一区二区三区| 中文字幕在线免费不卡| 欧美极品少妇xxxxⅹ高跟鞋| 日本一区中文字幕| 国产精品毛片久久久久久久| 6080国产精品一区二区| 欧美精品丝袜中出| 欧美军同video69gay| 欧美性受xxxx| 欧美无人高清视频在线观看| 91蝌蚪porny| 色综合久久88色综合天天免费| 一本色道久久加勒比精品| 成人性生交大片免费看在线播放| 国产成人免费视频一区| 国产成人亚洲综合a∨猫咪| 国产永久精品大片wwwapp| 蜜臀av一区二区在线免费观看| 免费精品视频在线| 国产精品18久久久久| 99久久99久久精品国产片果冻| 色8久久人人97超碰香蕉987| 欧美男男青年gay1069videost| 在线综合视频播放| 久久综合色婷婷| 亚洲欧美激情插| 日本不卡在线视频| 国产在线精品免费av| 成人sese在线| 国产精品美女久久久久aⅴ | 国产综合色产在线精品| 不卡影院免费观看| 日韩一区二区三区电影在线观看 | 这里只有精品99re| 日韩视频免费观看高清完整版在线观看 | 欧美三级电影精品| 久久久国产综合精品女国产盗摄| 一区二区三区国产精华| 久久99精品一区二区三区| 国产成人在线视频网站| 91国模大尺度私拍在线视频| 国产色产综合色产在线视频 | 日韩一区日韩二区| 久久99国产精品久久99 | 精品欧美一区二区三区精品久久| 国产精品天干天干在线综合| 奇米色777欧美一区二区| 不卡电影免费在线播放一区| 91精选在线观看| 亚洲免费观看高清完整版在线观看| 国产成人免费视频精品含羞草妖精 | 日韩免费观看2025年上映的电影| 亚洲男人天堂一区| 国产成人啪免费观看软件| 91精品麻豆日日躁夜夜躁| 婷婷一区二区三区| 日本大香伊一区二区三区| 国产精品丝袜91| 成人中文字幕合集| 久久九九久精品国产免费直播| 九九精品视频在线看| 日韩亚洲欧美高清| 六月丁香婷婷久久| 日韩欧美国产精品| 精品一区二区三区在线观看国产| 欧美大胆一级视频| 日韩精品亚洲一区| 91麻豆精品国产91久久久久久| 日韩精品一区第一页| 欧美日韩黄色一区二区| 奇米色777欧美一区二区| 26uuu欧美日本| 在线观看区一区二| 日本欧洲一区二区| 精品久久久三级丝袜| 9人人澡人人爽人人精品| 婷婷成人综合网| 中文欧美字幕免费| 日本韩国欧美三级| 一区二区三区四区在线播放| 成人激情午夜影院| 亚洲成a天堂v人片| av资源网一区| 亚洲图片欧美激情| 欧美日韩五月天| 成人黄页毛片网站| 国产麻豆日韩欧美久久| 午夜伊人狠狠久久| 欧美激情在线看| 日韩免费视频一区二区| 91视频国产资源| 极品瑜伽女神91| 亚洲一区二区成人在线观看| 精品少妇一区二区三区| 91福利视频久久久久| 免费精品99久久国产综合精品| 国产精品二三区| 日韩欧美在线不卡| 欧美视频三区在线播放| 91蝌蚪porny| 色综合久久九月婷婷色综合| 国产真实乱偷精品视频免| 五月综合激情网| 亚洲成人av在线电影| 亚洲最新视频在线观看| 一区二区三区在线播| 亚洲人成伊人成综合网小说| 中日韩av电影| 337p粉嫩大胆色噜噜噜噜亚洲| 欧美一级理论片| 欧美一区二区三区公司| 欧美日韩精品一区二区三区蜜桃| 不卡的电视剧免费网站有什么| 九九在线精品视频| 极品少妇一区二区| 久久成人免费日本黄色| 久久99精品一区二区三区| 国内久久精品视频| 成人黄色免费短视频|