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

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

?? jpegfileformat.java

?? 源碼為Eclipse開源開發平臺桌面開發工具SWT的源代碼,
?? JAVA
?? 第 1 頁 / 共 4 頁
字號:
/******************************************************************************* * Copyright (c) 2000, 2004 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-v10.html *  * Contributors: *     IBM Corporation - initial API and implementation *******************************************************************************/package org.eclipse.swt.internal.image;import org.eclipse.swt.*;import org.eclipse.swt.graphics.*;import java.io.*;final class JPEGFileFormat extends FileFormat {	int restartInterval;	JPEGFrameHeader frameHeader;	int imageWidth, imageHeight;	int interleavedMcuCols, interleavedMcuRows;	int maxV, maxH;	boolean progressive;	int samplePrecision;	int nComponents;	int[][] frameComponents;	int[] componentIds;	byte[][] imageComponents;	int[] dataUnit;	int[][][] dataUnits;	int[] precedingDCs;	JPEGScanHeader scanHeader;	byte[] dataBuffer;	int currentBitCount;	int bufferCurrentPosition;	int restartsToGo;	int nextRestartNumber;	JPEGArithmeticConditioningTable arithmeticTables;	JPEGHuffmanTable[] acHuffmanTables;	JPEGHuffmanTable[] dcHuffmanTables;	int[][] quantizationTables;	int currentByte;	int decoderQFactor;	int encoderQFactor = 75;	int eobrun = 0;	/* JPEGConstants */	public static final int DCTSIZE = 8;	public static final int DCTSIZESQR = 64;	/* JPEGFixedPointConstants */	public static final int FIX_0_899976223 = 7373;	public static final int FIX_1_961570560 = 16069;	public static final int FIX_2_053119869 = 16819;	public static final int FIX_0_298631336 = 2446;	public static final int FIX_1_847759065 = 15137;	public static final int FIX_1_175875602 = 9633;	public static final int FIX_3_072711026 = 25172;	public static final int FIX_0_765366865 = 6270;	public static final int FIX_2_562915447 = 20995;	public static final int FIX_0_541196100 = 4433;	public static final int FIX_0_390180644 = 3196;	public static final int FIX_1_501321110 = 12299;	/* JPEGMarkerCodes */	public static final int APP0  = 0xFFE0;	public static final int APP15 = 0xFFEF;	public static final int COM   = 0xFFFE;	public static final int DAC   = 0xFFCC;	public static final int DHP   = 0xFFDE;	public static final int DHT   = 0xFFC4;	public static final int DNL   = 0xFFDC;	public static final int DRI   = 0xFFDD;	public static final int DQT   = 0xFFDB;	public static final int EOI   = 0xFFD9;	public static final int EXP   = 0xFFDF;	public static final int JPG   = 0xFFC8;	public static final int JPG0  = 0xFFF0;	public static final int JPG13 = 0xFFFD;	public static final int RST0  = 0xFFD0;	public static final int RST1  = 0xFFD1;	public static final int RST2  = 0xFFD2;	public static final int RST3  = 0xFFD3;	public static final int RST4  = 0xFFD4;	public static final int RST5  = 0xFFD5;	public static final int RST6  = 0xFFD6;	public static final int RST7  = 0xFFD7;	public static final int SOF0  = 0xFFC0;	public static final int SOF1  = 0xFFC1;	public static final int SOF2  = 0xFFC2;	public static final int SOF3  = 0xFFC3;	public static final int SOF5  = 0xFFC5;	public static final int SOF6  = 0xFFC6;	public static final int SOF7  = 0xFFC7;	public static final int SOF9  = 0xFFC9;	public static final int SOF10 = 0xFFCA;	public static final int SOF11 = 0xFFCB;	public static final int SOF13 = 0xFFCD;	public static final int SOF14 = 0xFFCE;	public static final int SOF15 = 0xFFCF;	public static final int SOI   = 0xFFD8;	public static final int SOS   = 0xFFDA;	public static final int TEM   = 0xFF01;	/* JPEGFrameComponentParameterConstants */	public static final int TQI	= 0;	public static final int HI	= 1;	public static final int VI	= 2;	public static final int CW	= 3;	public static final int CH	= 4;	/* JPEGScanComponentParameterConstants */	public static final int DC	= 0;	public static final int AC	= 1;	/* JFIF Component Constants */	public static final int ID_Y		= 1 - 1;	public static final int ID_CB	= 2 - 1;	public static final int ID_CR	= 3 - 1;	public static final int[] ExtendTest = {		0, 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 		4096, 8192, 16384, 32768, 65536, 131072, 262144	};	public static final int[] ExtendOffset = new int[] {		0, -1, -3, -7, -15, -31, -63, -127, -255, -511, -1023, -2047, 		-4095, -8191, -16383, -32767, -65535, -131071, -262143	};	public static final int[] ZigZag8x8 = {		0, 1, 8, 16, 9, 2, 3, 10,		17, 24, 32, 25, 18, 11, 4, 5,		12, 19, 26, 33, 40, 48, 41, 34,		27, 20, 13, 6, 7, 14, 21, 28,		35, 42, 49, 56, 57, 50, 43, 36,		29, 22, 15, 23, 30, 37, 44, 51,		58, 59, 52, 45, 38, 31, 39, 46,		53, 60, 61, 54, 47, 55, 62, 63	};	public static int[] CrRTable, CbBTable, CrGTable, CbGTable;	public static int[] RYTable, GYTable, BYTable,		RCbTable, GCbTable, BCbTable, RCrTable, GCrTable, BCrTable, NBitsTable;	static {		initialize();	}void compress(ImageData image, byte[] dataYComp, byte[] dataCbComp, byte[] dataCrComp) {	int srcWidth = image.width;	int srcHeight = image.height;	int vhFactor = maxV * maxH;	int[] frameComponent;	imageComponents = new byte[nComponents][];	for (int i = 0; i < nComponents; i++) {		frameComponent = frameComponents[componentIds[i]];		imageComponents[i] = new byte[frameComponent[CW] * frameComponent[CH]];	}	frameComponent = frameComponents[componentIds[ID_Y]];	for (int yPos = 0; yPos < srcHeight; yPos++) {		int srcOfs = yPos * srcWidth;		int dstOfs = yPos * frameComponent[CW];		System.arraycopy(dataYComp, srcOfs, imageComponents[ID_Y], dstOfs, srcWidth);	}	frameComponent = frameComponents[componentIds[ID_CB]];	for (int yPos = 0; yPos < srcHeight / maxV; yPos++) {		int destRowIndex = yPos * frameComponent[CW];		for (int xPos = 0; xPos < srcWidth / maxH; xPos++) {			int sum = 0;			for (int iv = 0; iv < maxV; iv++) {				int srcIndex = (yPos * maxV + iv) * srcWidth + (xPos * maxH);				for (int ih = 0; ih < maxH; ih++) {					sum += dataCbComp[srcIndex + ih] & 0xFF;				}			}			imageComponents[ID_CB][destRowIndex + xPos] = (byte)(sum / vhFactor);		}	}	frameComponent = frameComponents[componentIds[ID_CR]];	for (int yPos = 0; yPos < srcHeight / maxV; yPos++) {		int destRowIndex = yPos * frameComponent[CW];		for (int xPos = 0; xPos < srcWidth / maxH; xPos++) {			int sum = 0;			for (int iv = 0; iv < maxV; iv++) {				int srcIndex = (yPos * maxV + iv) * srcWidth + (xPos * maxH);				for (int ih = 0; ih < maxH; ih++) {					sum += dataCrComp[srcIndex + ih] & 0xFF;				}			}			imageComponents[ID_CR][destRowIndex + xPos] = (byte)(sum / vhFactor);		}	}	for (int iComp = 0; iComp < nComponents; iComp++) {		byte[] imageComponent = imageComponents[iComp];		frameComponent = frameComponents[componentIds[iComp]];		int hFactor = frameComponent[HI];		int vFactor = frameComponent[VI];		int componentWidth = frameComponent[CW];		int componentHeight = frameComponent[CH];		int compressedWidth = srcWidth / (maxH / hFactor);		int compressedHeight = srcHeight / (maxV / vFactor);		if (compressedWidth < componentWidth) {			int delta = componentWidth - compressedWidth;			for (int yPos = 0; yPos < compressedHeight; yPos++) {				int dstOfs = ((yPos + 1) * componentWidth - delta);				int dataValue = imageComponent[dstOfs - 1] & 0xFF;				for (int i = 0; i < delta; i++) {					imageComponent[dstOfs + i] = (byte)dataValue;				}			}		}		if (compressedHeight < componentHeight) {			int srcOfs = (compressedHeight - 1) * componentWidth;			for (int yPos = compressedHeight; yPos <= componentHeight; yPos++) {				int dstOfs = (yPos - 1) * componentWidth;				System.arraycopy(imageComponent, srcOfs, imageComponent, dstOfs, componentWidth);			}		}	}}void convert4BitRGBToYCbCr(ImageData image) {	RGB[] rgbs = image.getRGBs();	int paletteSize = rgbs.length;	byte[] yComp = new byte[paletteSize];	byte[] cbComp = new byte[paletteSize];	byte[] crComp = new byte[paletteSize];	int srcWidth = image.width;	int srcHeight = image.height;	for (int i = 0; i < paletteSize; i++) {		RGB color = rgbs[i];		int r = color.red;		int g = color.green;		int b = color.blue;		int n = RYTable[r] + GYTable[g] + BYTable[b];		yComp[i] = (byte)(n / 65536);		if ((n < 0) && (n % 65536 != 0)) yComp[i]--;		n = RCbTable[r] + GCbTable[g] + BCbTable[b];		cbComp[i] = (byte)(n / 65536);		if ((n < 0) && (n % 65536 != 0)) cbComp[i]--;		n = RCrTable[r] + GCrTable[g] + BCrTable[b];		crComp[i] = (byte)(n / 65536);		if ((n < 0) && (n % 65536 != 0)) crComp[i]--;	}	int bSize = srcWidth * srcHeight;	byte[] dataYComp = new byte[bSize];	byte[] dataCbComp = new byte[bSize];	byte[] dataCrComp = new byte[bSize];	byte[] origData = image.data;	for (int yPos = 0; yPos < srcHeight; yPos++) {		for (int xPos = 0; xPos < srcWidth / 2; xPos++) {			int srcIndex = yPos * (srcWidth / 2) + xPos;			int dstIndex = yPos * srcWidth + (xPos * 2);			int value2 = origData[srcIndex] & 0xFF;			int value1 = value2 / 16;			value2 = value2 % 16;			dataYComp[dstIndex] = yComp[value1];			dataCbComp[dstIndex] = cbComp[value1];			dataCrComp[dstIndex] = crComp[value1];			dataYComp[dstIndex + 1] = yComp[value2];			dataCbComp[dstIndex + 1] = cbComp[value2];			dataCrComp[dstIndex + 1] = crComp[value2];		}	}	compress(image, dataYComp, dataCbComp, dataCrComp);}void convert8BitRGBToYCbCr(ImageData image) {	RGB[] rgbs = image.getRGBs();	int paletteSize = rgbs.length;	byte[] yComp = new byte[paletteSize];	byte[] cbComp = new byte[paletteSize];	byte[] crComp = new byte[paletteSize];	int srcWidth = image.width;	int srcHeight = image.height;	for (int i = 0; i < paletteSize; i++) {		RGB color = rgbs[i];		int r = color.red;		int g = color.green;		int b = color.blue;		int n = RYTable[r] + GYTable[g] + BYTable[b];		yComp[i] = (byte)(n / 65536);		if ((n < 0) && (n % 65536 != 0)) yComp[i]--;		n = RCbTable[r] + GCbTable[g] + BCbTable[b];		cbComp[i] = (byte)(n / 65536);		if ((n < 0) && (n % 65536 != 0)) cbComp[i]--;		n = RCrTable[r] + GCrTable[g] + BCrTable[b];		crComp[i] = (byte)(n / 65536);		if ((n < 0) && (n % 65536 != 0)) crComp[i]--;	}	int dstWidth = image.width;	int dstHeight = srcHeight;	int stride = (srcWidth + 3) / 4 * 4;	int bSize = dstWidth * dstHeight;	byte[] dataYComp = new byte[bSize];	byte[] dataCbComp = new byte[bSize];	byte[] dataCrComp = new byte[bSize];	byte[] origData = image.data;	for (int yPos = 0; yPos < srcHeight; yPos++) {		int srcRowIndex = yPos * stride;		int dstRowIndex = yPos * dstWidth;		for (int xPos = 0; xPos < srcWidth; xPos++) {			int value = origData[srcRowIndex + xPos] & 0xFF;			int dstIndex = dstRowIndex + xPos;			dataYComp[dstIndex] = yComp[value];			dataCbComp[dstIndex] = cbComp[value];			dataCrComp[dstIndex] = crComp[value];		}	}	compress(image, dataYComp, dataCbComp, dataCrComp);}byte[] convertCMYKToRGB() {	/* Unsupported CMYK format. Answer an empty byte array. */	return new byte[0];}void convertImageToYCbCr(ImageData image) {	switch (image.depth) {		case 4:			convert4BitRGBToYCbCr(image);			return;		case 8:			convert8BitRGBToYCbCr(image);			return;		case 16:		case 24:		case 32:			convertMultiRGBToYCbCr(image);			return;		default:			SWT.error(SWT.ERROR_UNSUPPORTED_DEPTH);	}	return;}void convertMultiRGBToYCbCr(ImageData image) {	int srcWidth = image.width;	int srcHeight = image.height;	int bSize = srcWidth * srcHeight;	byte[] dataYComp = new byte[bSize];	byte[] dataCbComp = new byte[bSize];	byte[] dataCrComp = new byte[bSize];	PaletteData palette = image.palette;	int[] buffer = new int[srcWidth];	if (palette.isDirect) {		int redMask = palette.redMask;		int greenMask = palette.greenMask;		int blueMask = palette.blueMask;		int redShift = palette.redShift;		int greenShift = palette.greenShift;		int blueShift = palette.blueShift;		for (int yPos = 0; yPos < srcHeight; yPos++) {			image.getPixels(0, yPos, srcWidth, buffer, 0);			int dstRowIndex = yPos * srcWidth;			for (int xPos = 0; xPos < srcWidth; xPos++) {				int pixel = buffer[xPos];				int dstDataIndex = dstRowIndex + xPos;				int r = pixel & redMask;				r = (redShift < 0) ? r >>> -redShift : r << redShift;				int g = pixel & greenMask;				g = (greenShift < 0) ? g >>> -greenShift : g << greenShift;				int b = pixel & blueMask;				b = (blueShift < 0) ? b >>> -blueShift : b << blueShift;								dataYComp[dstDataIndex] = (byte)((RYTable[r] + GYTable[g] + BYTable[b]) / 65536);				dataCbComp[dstDataIndex] = (byte)((RCbTable[r] + GCbTable[g] + BCbTable[b]) / 65536);				dataCrComp[dstDataIndex] = (byte)((RCrTable[r] + GCrTable[g] + BCrTable[b]) / 65536);			}		}	} else {		for (int yPos = 0; yPos < srcHeight; yPos++) {			image.getPixels(0, yPos, srcWidth, buffer, 0);			int dstRowIndex = yPos * srcWidth;			for (int xPos = 0; xPos < srcWidth; xPos++) {				int pixel = buffer[xPos];				int dstDataIndex = dstRowIndex + xPos;				RGB rgb = palette.getRGB(pixel);				int r = rgb.red;				int g = rgb.green;				int b = rgb.blue;				dataYComp[dstDataIndex] = (byte)((RYTable[r] + GYTable[g] + BYTable[b]) / 65536);				dataCbComp[dstDataIndex] = (byte)((RCbTable[r] + GCbTable[g] + BCbTable[b]) / 65536);				dataCrComp[dstDataIndex] = (byte)((RCrTable[r] + GCrTable[g] + BCrTable[b]) / 65536);			}		}	}	compress(image, dataYComp, dataCbComp, dataCrComp);}byte[] convertYToRGB() {	int compWidth = frameComponents[componentIds[ID_Y]][CW];	int bytesPerLine = (((imageWidth * 8 + 7) / 8) + 3) / 4 * 4;	byte[] data = new byte[bytesPerLine * imageHeight];	byte[] yComp = imageComponents[ID_Y];	int destIndex = 0;	for (int i = 0; i < imageHeight; i++) {		int srcIndex = i * compWidth;		for (int j = 0; j < bytesPerLine; j++) {			int y = yComp[srcIndex] & 0xFF;			if (y < 0) {				y = 0;			} else {				if (y > 255) y = 255;			}			if (j >= imageWidth) {				y = 0;			}			data[destIndex] = (byte)y;			srcIndex++;			destIndex++;		}	}	return data;}byte[] convertYCbCrToRGB() {	/**	 * Convert existing image components into an RGB format.	 * YCbCr is defined per CCIR 601-1, except that Cb and Cr are	 * normalized to the range 0..MAXJSAMPLE rather than -0.5 .. 0.5.	 * The conversion equations to be implemented are therefore	 * 	R = Y                + 1.40200 * Cr	 * 	G = Y - 0.34414 * Cb - 0.71414 * Cr	 * 	B = Y + 1.77200 * Cb	 * where Cb and Cr represent the incoming values less MAXJSAMPLE/2.	 * (These numbers are derived from TIFF 6.0 section 21, dated 3-June-92.)	 * 	 * To avoid floating-point arithmetic, we represent the fractional constants	 * as integers scaled up by 2^16 (about 4 digits precision); we have to divide	 * the products by 2^16, with appropriate rounding, to get the correct answer.	 * Notice that Y, being an integral input, does not contribute any fraction	 * so it need not participate in the rounding.	 * 	 * For even more speed, we avoid doing any multiplications in the inner loop	 * by precalculating the constants times Cb and Cr for all possible values.	 * For 8-bit JSAMPLEs this is very reasonable (only 256 entries per table);	 * for 12-bit samples it is still acceptable.  It's not very reasonable for	 * 16-bit samples, but if you want lossless storage you shouldn't be changing	 * colorspace anyway.	 * The Cr=>R and Cb=>B values can be rounded to integers in advance; the	 * values for the G calculation are left scaled up, since we must add them	 * together before rounding.	 */	int bSize = imageWidth * imageHeight * nComponents;	byte[] rgbData = new byte[bSize];	int destIndex = 0;	expandImageComponents();	byte[] yComp = imageComponents[ID_Y];	byte[] cbComp = imageComponents[ID_CB];	byte[] crComp = imageComponents[ID_CR];	int compWidth = frameComponents[componentIds[ID_Y]][CW];	for (int v = 0; v < imageHeight; v++) {		int srcIndex = v * compWidth;		for (int i = 0; i < imageWidth; i++) {			int y = yComp[srcIndex] & 0xFF;			int cb = cbComp[srcIndex] & 0xFF;			int cr = crComp[srcIndex] & 0xFF;			int r = y + CrRTable[cr];			int g = y + ((CbGTable[cb] + CrGTable[cr]) / 65536);			int b = y + CbBTable[cb];			if (r < 0) {				r = 0;			} else {				if (r > 255) r = 255;			}			if (g < 0) {				g = 0;			} else {				if (g > 255) g = 255;			}			if (b < 0) {				b = 0;			} else {				if (b > 255) b = 255;			}			rgbData[destIndex] = (byte)b;			rgbData[destIndex + 1] = (byte)g;			rgbData[destIndex + 2] = (byte)r;			destIndex += 3;			srcIndex++;		}	}	return rgbData;}byte[] convertYIQToRGB() {	/* Unsupported CMYK format. Answer an empty byte array. */	return new byte[0];}void decodeACCoefficients(int[] dataUnit, int iComp) {	int[] sParams = scanHeader.componentParameters[componentIds[iComp]];	JPEGHuffmanTable acTable = acHuffmanTables[sParams[AC]];

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
秋霞午夜av一区二区三区| 久久精子c满五个校花| 一区二区三区国产精品| 波多野洁衣一区| 中文字幕一区二区三区不卡在线| 成人一级黄色片| 国产精品的网站| 色婷婷香蕉在线一区二区| 亚洲曰韩产成在线| 在线电影一区二区三区| 青青草成人在线观看| 精品卡一卡二卡三卡四在线| 国内精品久久久久影院一蜜桃| 久久久久久久久久美女| 成人教育av在线| 亚洲综合免费观看高清完整版| 91精品免费在线观看| 久久国产欧美日韩精品| 欧美国产日产图区| 色综合咪咪久久| 日韩精品亚洲专区| 久久免费的精品国产v∧| www.日韩精品| 亚洲成av人综合在线观看| 日韩三级电影网址| 99热99精品| 日韩国产高清影视| 国产三级一区二区| 色爱区综合激月婷婷| 久久成人久久爱| 国产精品久久久久aaaa樱花| 欧美精品少妇一区二区三区| 国产精品一区二区在线看| 亚洲乱码国产乱码精品精98午夜| 在线播放欧美女士性生活| 国产一区欧美二区| 亚洲曰韩产成在线| 欧美高清在线一区二区| 欧美一区二区三区在线观看| 不卡在线视频中文字幕| 久久精品99国产精品| 亚洲综合999| 中文字幕成人在线观看| 欧美一区二区久久久| 99久久精品国产精品久久| 久久精品国产一区二区三区免费看| 国产精品久久久久aaaa| 久久综合九色综合97婷婷| 欧美性感一区二区三区| av成人免费在线观看| 国产在线视频不卡二| 午夜久久福利影院| 一区二区三区国产精华| 欧美激情综合五月色丁香| 精品乱人伦一区二区三区| 在线观看一区日韩| 国产成人av电影在线| 亚洲国产精品久久不卡毛片| 欧美中文字幕一区| 顶级嫩模精品视频在线看| 亚洲v精品v日韩v欧美v专区| 国产精品亲子伦对白| 欧美一区二区三区影视| 99久久99久久综合| 国产在线精品一区二区夜色 | av不卡在线播放| 亚洲444eee在线观看| 亚洲欧洲性图库| 久久免费电影网| 欧美一区二区精品久久911| 91久久久免费一区二区| 成人av资源站| 国产成a人亚洲| 美女视频黄频大全不卡视频在线播放| 亚洲精品中文字幕在线观看| 久久久另类综合| 欧美精品欧美精品系列| 色婷婷精品久久二区二区蜜臂av | 日本成人中文字幕在线视频| 亚洲欧洲美洲综合色网| 久久精品一区蜜桃臀影院| 欧美猛男男办公室激情| 91小视频免费观看| eeuss鲁片一区二区三区| 老司机精品视频线观看86| 另类中文字幕网| 精品国产免费人成在线观看| 成人深夜福利app| 久久9热精品视频| 日韩国产一二三区| 一区二区三区美女视频| 亚洲精品午夜久久久| 美美哒免费高清在线观看视频一区二区| 国产精品污www在线观看| 欧美国产日本视频| 亚洲国产精品国自产拍av| 欧美激情一区二区三区四区| 国产日韩欧美不卡| 亚洲国产精品二十页| 国产精品色婷婷久久58| 国产精品久久久久桃色tv| 亚洲色图制服诱惑 | 国产亚洲婷婷免费| 国产精品国产三级国产普通话99 | 午夜精品福利一区二区三区av| 亚洲激情在线播放| 亚洲一卡二卡三卡四卡五卡| 亚洲精品视频免费观看| 亚洲成人精品在线观看| 婷婷六月综合亚洲| 蜜臀99久久精品久久久久久软件| 精一区二区三区| 国产成人精品1024| 成人精品电影在线观看| 色婷婷综合激情| 欧美美女喷水视频| 欧美精品九九99久久| 一本大道综合伊人精品热热| 9191精品国产综合久久久久久| 欧美一级片在线| 久久久久久综合| 国产精品三级久久久久三级| 亚洲精品国产无天堂网2021| 亚洲1区2区3区视频| 久久国产生活片100| 99精品欧美一区| 欧美日韩国产天堂| 欧美va亚洲va在线观看蝴蝶网| 91精品久久久久久蜜臀| 26uuu亚洲| 亚洲精品视频免费看| 日韩精品成人一区二区三区| 国产成人综合自拍| 色哟哟一区二区在线观看 | kk眼镜猥琐国模调教系列一区二区| 色综合咪咪久久| 日韩欧美一级精品久久| 国产精品免费观看视频| 日韩国产精品久久久| 成人免费视频一区| 欧美精品丝袜中出| 中文成人综合网| 日本不卡一二三区黄网| 国产精品18久久久久| 91精选在线观看| 国产精品久久久久久久岛一牛影视| 天天影视色香欲综合网老头| 国产激情视频一区二区在线观看| 欧美影视一区在线| 国产欧美日韩亚州综合| 日韩av一二三| 91亚洲精品久久久蜜桃网站| 欧美一卡二卡三卡四卡| 最新不卡av在线| 日本女优在线视频一区二区| 91一区一区三区| 久久久三级国产网站| 日韩综合在线视频| 99精品视频一区二区三区| 久久久蜜桃精品| 日本v片在线高清不卡在线观看| 91国偷自产一区二区开放时间| 国产无人区一区二区三区| 男男视频亚洲欧美| fc2成人免费人成在线观看播放 | 成人午夜av在线| 久久这里都是精品| 日本aⅴ亚洲精品中文乱码| 欧美专区在线观看一区| 亚洲欧洲成人精品av97| 国产成人免费高清| 欧美xxxx在线观看| 日韩精品一级二级| 91久久精品日日躁夜夜躁欧美| 一个色综合网站| 91小视频在线| 亚洲视频在线一区观看| 丁香另类激情小说| 国产日韩av一区| 国产美女在线观看一区| 日韩欧美电影一区| 男女男精品视频网| 制服丝袜国产精品| 日韩中文字幕一区二区三区| 欧美系列日韩一区| 亚洲一区二区三区影院| 欧洲激情一区二区| 亚洲黄色小说网站| 欧美色图片你懂的| 亚洲成a人在线观看| 欧美日韩一级片在线观看| 蜜桃av噜噜一区| 欧美精品一区二区精品网| 麻豆精品新av中文字幕| 精品剧情v国产在线观看在线| 精品影院一区二区久久久| 久久亚洲捆绑美女| 国产精品香蕉一区二区三区| 国产精品午夜电影| 国产馆精品极品|