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

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

?? text_code.c

?? MPEG4的壓縮和解壓縮代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:

/**************************************************************************
 *                                                                        *
 * This code is developed by Adam Li.  This software is an                *
 * implementation of a part of one or more MPEG-4 Video tools as          *
 * specified in ISO/IEC 14496-2 standard.  Those intending to use this    *
 * software module in hardware or software products are advised that its  *
 * use may infringe existing patents or copyrights, and any such use      *
 * would be at such party's own risk.  The original developer of this     *
 * software module and his/her company, and subsequent editors and their  *
 * companies (including Project Mayo), will have no liability for use of  *
 * this software or modifications or derivatives thereof.                 *
 *                                                                        *
 * Project Mayo gives users of the Codec a license to this software       *
 * module or modifications thereof for use in hardware or software        *
 * products claiming conformance to the MPEG-4 Video Standard as          *
 * described in the Open DivX license.                                    *
 *                                                                        *
 * The complete Open DivX license can be found at                         *
 * http://www.projectmayo.com/opendivx/license.php .                      *
 *                                                                        *
 **************************************************************************/

/**************************************************************************
 *
 *  text_code.c
 *
 *  Copyright (C) 2001  Project Mayo
 *
 *  Adam Li
 *
 *  DivX Advance Research Center <darc@projectmayo.com>
 *
 **************************************************************************/

/* This file contains some functions for text coding of image.            */
/* Some codes of this project come from MoMuSys MPEG-4 implementation.    */
/* Please see seperate acknowledgement file for a list of contributors.   */

#include "text_defs.h"
#include "mot_code.h"
#include "bitstream.h"
#include "putvlc.h"
#include "mot_util.h"
#include "text_code_mb.h"
#include "text_code.h"

#define SKIPP       6

extern FILE *ftrace;

Void  	Bits_CountMB_combined (	Int DQUANT,
			Int Mode,
			Int COD,
			Int ACpred_flag,
			Int CBP,
			Int vop_type,
			Bits *bits,
			Image *mottext_bitstream,
			Int *MB_transp_pattern
	);
Int  	doDCACpred (	Int *qcoeff,
			Int *CBP,
			Int ncoeffs,
			Int x_pos,
			Int y_pos,
			Int ***DC_store,
			Int QP,
			Int MB_width,
			Int direction[],
			Int mid_grey
	);
Void nullfill(Int pred[], Int mid_grey);
Int Idir_c(Int val, Int QP);
Int  	IntraDCSwitch_Decision _P_((	Int Mode,
			Int intra_dc_vlc_thr,
			Int Qp
	));
Int  	FindCBP _P_((	Int *qcoeff,
			Int Mode,
			Int ncoeffs
	));


/***********************************************************CommentBegin******
 *
 * -- VopCodeShapeTextIntraCom --Intra texture encoding of one vop,
 *                          Combined shape/(motion)/texture mode
 *
 * Purpose :
 *	Intra texture encoding of one vop (combined shape/(mot)/text mode)
 *
 * Arguments in :
 *	    Vop curr : the current vop to be coded
 *      Int intra_dcpred_disable : disable intradc prediction
 *      Image* AB_SizeConversionDecisions:
 *      Image* AB_first_MMR_values
 *      VolConfig *vol_config : configuration information
 *      Int rc_type : rate control type:
 *
 * Arguments out :
 *	    Vop *rec_curr : the reconstructed current vop
 * 	    Image *texture_bitstream : the output bitstream
 *      Bits : statistics information
 *
 * Description :
 *	This function performs Intra texture encoding of one vop.
 *
 ***********************************************************CommentEnd********/

Void VopCodeShapeTextIntraCom(Vop *curr,
Vop *rec_curr, Image *mottext_bitstream)
{
	Int QP = GetVopIntraQuantizer(curr);
	Int Mode = MODE_INTRA;
	Int* qcoeff;
	Int i, j;
	Int CBP, COD;
	Int CBPY, CBPC;
	Int num_pixels = GetImageSizeX(GetVopY(curr));
	Int num_lines = GetImageSizeY(GetVopY(curr));
	Int vop_type;
	Int ***DC_store;
	Int MB_width = num_pixels / MB_SIZE;
	Int MB_height = num_lines / MB_SIZE;
	Int m;
	Int ACpred_flag=-1;
	Int direction[6];
	Int switched=0;
	Int DQUANT =0;

	Bits nbits, *bits;
	bits = &nbits;

	qcoeff = (Int *) malloc (sizeof (Int) * 384);

	#ifdef _RC_DEBUG_
	fprintf(ftrace, "RC - VopCodeShapeTextIntraCom(): ---> CODING WITH: %d \n",QP);
	#endif

	for (i = 0; i < 6; i++)
		direction[i] = 0;

	/* allocate space for 3D matrix to keep track of prediction values
	   for DC/AC prediction */

	DC_store = (Int ***)calloc(MB_width*MB_height, sizeof(Int **));
	for (i = 0; i < MB_width*MB_height; i++)
	{
		DC_store[i] = (Int **)calloc(6, sizeof(Int *));
		for (j = 0; j < 6; j++)
			DC_store[i][j] = (Int *)calloc(15, sizeof(Int));
	}

	Bits_Reset (bits);
	vop_type = PCT_INTRA;

	for (j = 0; j < num_lines/MB_SIZE; j++)		  /* Macro Block loop */
	{
		for (i = 0; i < num_pixels/MB_SIZE; i++)
		{
			DQUANT = 0;

			COD = 0;
			bits->no_intra++;

			CodeMB (curr, rec_curr, NULL, i*MB_SIZE, j*MB_SIZE,
				num_pixels, QP+DQUANT, MODE_INTRA, qcoeff);

			m =0;

			DC_store[j*MB_width+i][0][m] = qcoeff[m]*cal_dc_scaler(QP+DQUANT,1);
			DC_store[j*MB_width+i][1][m] = qcoeff[m+64]*cal_dc_scaler(QP+DQUANT,1);
			DC_store[j*MB_width+i][2][m] = qcoeff[m+128]*cal_dc_scaler(QP+DQUANT,1);
			DC_store[j*MB_width+i][3][m] = qcoeff[m+192]*cal_dc_scaler(QP+DQUANT,1);
			DC_store[j*MB_width+i][4][m] = qcoeff[m+256]*cal_dc_scaler(QP+DQUANT,2);
			DC_store[j*MB_width+i][5][m] = qcoeff[m+320]*cal_dc_scaler(QP+DQUANT,2);
				
			for (m = 1; m < 8; m++)
			{
				DC_store[j*MB_width+i][0][m] = qcoeff[m];
				DC_store[j*MB_width+i][1][m] = qcoeff[m+64];
				DC_store[j*MB_width+i][2][m] = qcoeff[m+128];
				DC_store[j*MB_width+i][3][m] = qcoeff[m+192];
				DC_store[j*MB_width+i][4][m] = qcoeff[m+256];
				DC_store[j*MB_width+i][5][m] = qcoeff[m+320];
			}
			for (m = 0; m < 7; m++)
			{
				DC_store[j*MB_width+i][0][m+8] = qcoeff[(m+1)*8];
				DC_store[j*MB_width+i][1][m+8] = qcoeff[(m+1)*8+64];
				DC_store[j*MB_width+i][2][m+8] = qcoeff[(m+1)*8+128];
				DC_store[j*MB_width+i][3][m+8] = qcoeff[(m+1)*8+192];
				DC_store[j*MB_width+i][4][m+8] = qcoeff[(m+1)*8+256];
				DC_store[j*MB_width+i][5][m+8] = qcoeff[(m+1)*8+320];
			}

			CBP = FindCBP(qcoeff,Mode,64);

			/* Do the DC/AC prediction, changing the qcoeff values as
			   appropriate */
			if (GetVopIntraACDCPredDisable(curr) == 0)
			{
				ACpred_flag = doDCACpred(qcoeff, &CBP, 64, i, j, DC_store,
					QP+DQUANT, MB_width,
					direction,GetVopMidGrey(curr));
			}
			else
				ACpred_flag = -1;

			switched = IntraDCSwitch_Decision(Mode,
				GetVopIntraDCVlcThr(curr),
				QP);
			if (switched)
				CBP = FindCBP(qcoeff,MODE_INTER,64);
			if (DQUANT) Mode=MODE_INTRA_Q;else Mode=MODE_INTRA;

			QP+=DQUANT;

			CBPY = CBP >> 2;
			CBPY = CBPY & 15;			  /* last 4 bits */
			CBPC = CBP & 3;				  /* last 2 bits */

			Bits_CountMB_combined (DQUANT, Mode, COD, ACpred_flag, CBP,
				vop_type,
				bits, mottext_bitstream,/*MB_transp_pattern*/NULL);

			/* added the variable intra_dcpred_diable */
			MB_CodeCoeff(bits, qcoeff, Mode, CBP, 64,
				GetVopIntraACDCPredDisable(curr),
				NULL, mottext_bitstream,
				/*MB_transp_pattern*/NULL, direction,
				1 /*GetVopErrorResDisable(curr)*/,
				0 /*GetVopReverseVlc(curr)*/,
				switched,
				0 /*curr->alternate_scan*/);
		}
	}

	/* Free allocated memory for 3D matrix */
	for (i = 0; i < MB_width*MB_height; i++)
	{
		for (j = 0; j < 6; j++)
			free(DC_store[i][j]);
		free(DC_store[i]);
	}
	free(DC_store);

	free ((Char*)qcoeff);
}

/***********************************************************CommentBegin******
 *
 * -- VopShapeMotText -- Combined Inter encoding of shape motion and texture
 *
 * Purpose :
 *	Combined Inter encoding of texture and motion.
 * 	Used by VopCodeMotTextInter
 *
 * Arguments in :
 *	Vop *curr : the current vop to be encoded
 * 	Vop *rec_prev: the previous reconstructed vop
 * 	Image *mot_x : the x-coordinates of the motion vectors
 * 	Image *mot_y : the y-coordinates of the motion vectors
 * 	Image *MB_decisions: Contains for each macroblock the encoding mode
 *	Int	f_code_for: MV search range 1/2 pel: 1=32,2=64,...,7=2048
 *      Image* AB_SizeConversionDecisions:
 *      Image* AB_first_MMR_values :
 *      Int intra_dcpred_disable : disable the intra dc prediction
 *      VolConfig *vol_config : configuration information
 *      Int rc_type : rate control type
 *
 * Arguments out :
 *	Vop *rec_curr : the reconstructed current vop
 * 	Image *mottext_bitstream : the output texture/motion bitstream
 *  Bits *bits : Coding statistics
 *
 ***********************************************************CommentEnd********/

Void VopShapeMotText (Vop *curr, Vop *comp, 
Image *MB_decisions, Image *mot_x, Image *mot_y,
Int f_code_for, 
Int intra_acdc_pred_disable,
Vop *rec_curr,
Image *mottext_bitstream
)
{
	Int Mode=0;
	Int QP = GetVopQuantizer(curr);
	Int* qcoeff=NULL;
	Int i, j;
	Int CBP;
	Int COD;
	Int CBPY, CBPC;
	Int MB_in_width, MB_in_height, B_in_width, mbnum, boff;
	SInt p;
	SInt *ptr=NULL;
	Float *motx_ptr=NULL, *moty_ptr=NULL;
	Int num_pixels;
	Int num_lines;
	Int vop_type=PCT_INTER;
	Int ***DC_store=NULL;
	Int m, n;
	Int ACpred_flag=-1;
	Int direction[6];
	Int switched=0;
	Int DQUANT=0;

	Bits nbits, *bits;
	bits = &nbits;

	qcoeff = (Int *) malloc (sizeof (Int) * 384);

	num_pixels = GetImageSizeX(GetVopY(curr));
	num_lines = GetImageSizeY(GetVopY(curr));
	MB_in_width = num_pixels / MB_SIZE;
	MB_in_height = num_lines / MB_SIZE;
	B_in_width = 2 * MB_in_width;

	for (i = 0; i < 6; i++) direction[i] = 0;

	#ifdef _RC_DEBUG_
	printf("RC - VopShapeMotText(): ---> CODING WITH: %d \n",QP);
	#endif

	/* allocate space for 3D matrix to keep track of prediction values
	for DC/AC prediction */
	DC_store = (Int ***)calloc(MB_in_width*MB_in_height,
		sizeof(Int **));
	for (i = 0; i < MB_in_width*MB_in_height; i++)
	{
		DC_store[i] = (Int **)calloc(6, sizeof(Int *));
		for (j = 0; j < 6; j++)
			DC_store[i][j] = (Int *)calloc(15, sizeof(Int));
	}

	Bits_Reset (bits);

	vop_type = PCT_INTER;

	ptr = (SInt *) GetImageData(MB_decisions);
	motx_ptr = (Float *) GetImageData(mot_x);
	moty_ptr = (Float *) GetImageData(mot_y);

	for (j = 0; j < num_lines/MB_SIZE; j++)
	{
		for (i = 0; i < MB_in_width; i++)
		{
			switched=0;
			p = *ptr;
			DQUANT = 0;

			/* Fill DC_store with default coeff values */
			for (m = 0; m < 6; m++)
			{
				DC_store[j*MB_in_width+i][m][0] = GetVopMidGrey(curr)*8;
				for (n = 1; n < 15; n++)
					DC_store[j*MB_in_width+i][m][n] = 0;
			}

			switch (p)
			{

				case MBM_INTRA:
					Mode = (DQUANT == 0) ? MODE_INTRA : MODE_INTRA_Q;
					bits->no_intra++;
					break;

				case MBM_INTER16:
					Mode = (DQUANT == 0) ? MODE_INTER : MODE_INTER_Q;
					bits->no_inter++;
					break;

				case MBM_INTER8:
					Mode = MODE_INTER4V;
					bits->no_inter4v++;
					DQUANT = 0;				  /* Can't change QP for 8x8 mode */
					break;

				default:
					printf("invalid MB_decision value :%d\n", p);
					exit(0);
			}

			CodeMB (curr, rec_curr, comp, i*MB_SIZE, j*MB_SIZE,
				num_pixels, QP + DQUANT, Mode, qcoeff);

			mbnum  = j*MB_in_width + i;
			boff = (2 * (mbnum  / MB_in_width) * B_in_width
				+ 2 * (mbnum % MB_in_width));

			CBP = FindCBP(qcoeff,Mode,64);

			if ((CBP == 0) && (p == 1) && (*(motx_ptr +boff) == 0.0)
				&& (*(moty_ptr +boff) == 0.0))
			{
				COD = 1;				  /* skipped macroblock */
				BitstreamPutBits(mottext_bitstream, (long) (COD), 1L);
				bits->COD ++;

				*ptr = SKIPP;
				Mode = MODE_INTER;
			}
			else
			{
				COD = 0;				  /* coded macroblock */

				if ((Mode == MODE_INTRA) || (Mode == MODE_INTRA_Q))
				{

					/* Store the qcoeff-values needed later for prediction */
					m =0;

					DC_store[j*MB_in_width+i][0][m] = qcoeff[m]*cal_dc_scaler(QP+DQUANT,1);
					DC_store[j*MB_in_width+i][1][m] = qcoeff[m+64]*cal_dc_scaler(QP+DQUANT,1);
					DC_store[j*MB_in_width+i][2][m] = qcoeff[m+128]*cal_dc_scaler(QP+DQUANT,1);
					DC_store[j*MB_in_width+i][3][m] = qcoeff[m+192]*cal_dc_scaler(QP+DQUANT,1);
					DC_store[j*MB_in_width+i][4][m] = qcoeff[m+256]*cal_dc_scaler(QP+DQUANT,2);
					DC_store[j*MB_in_width+i][5][m] = qcoeff[m+320]*cal_dc_scaler(QP+DQUANT,2);

					for (m = 1; m < 8; m++)
					{
						DC_store[j*MB_in_width+i][0][m] = qcoeff[m];
						DC_store[j*MB_in_width+i][1][m] = qcoeff[m+64];
						DC_store[j*MB_in_width+i][2][m] = qcoeff[m+128];
						DC_store[j*MB_in_width+i][3][m] = qcoeff[m+192];
						DC_store[j*MB_in_width+i][4][m] = qcoeff[m+256];
						DC_store[j*MB_in_width+i][5][m] = qcoeff[m+320];
					}
					for (m = 0; m < 7; m++)
					{
						DC_store[j*MB_in_width+i][0][m+8] = qcoeff[(m+1)*8];
						DC_store[j*MB_in_width+i][1][m+8] = qcoeff[(m+1)*8+64];
						DC_store[j*MB_in_width+i][2][m+8] = qcoeff[(m+1)*8+128];
						DC_store[j*MB_in_width+i][3][m+8] = qcoeff[(m+1)*8+192];
						DC_store[j*MB_in_width+i][4][m+8] = qcoeff[(m+1)*8+256];
						DC_store[j*MB_in_width+i][5][m+8] = qcoeff[(m+1)*8+320];
					}

					if (intra_acdc_pred_disable == 0)
						ACpred_flag = doDCACpred(qcoeff, &CBP, 64, i, j,
							DC_store,
							QP+DQUANT, MB_in_width,
							direction,GetVopMidGrey(curr));
					else
						ACpred_flag = -1;  /* Not to go into bitstream */
				}

				switched = IntraDCSwitch_Decision(Mode,
					GetVopIntraDCVlcThr(curr),
					QP);
				if (switched)
					CBP = FindCBP(qcoeff,MODE_INTER,64);

				CBPY = CBP >> 2;
				CBPY = CBPY & 15;		  /* last 4 bits */
				CBPC = CBP & 3;			  /* last 2 bits */

				Bits_CountMB_combined (DQUANT, Mode, COD, ACpred_flag, CBP,
					vop_type, bits,
					mottext_bitstream,/*MB_transp_pattern*/NULL);

				Bits_CountMB_Motion( mot_x, mot_y, NULL, 
					MB_decisions, i, j, f_code_for, 0 /*quarter_pel*/,
					mottext_bitstream,
					1 /*GetVopErrorResDisable(curr)*/, 0,
					(Int **)NULL, 0 /*GetVopShape(curr)*/);

				MB_CodeCoeff(bits, qcoeff, Mode, CBP, 64,
					intra_acdc_pred_disable,
					NULL, mottext_bitstream,
					/*MB_transp_pattern*/NULL, direction,
					1/*GetVopErrorResDisable(curr)*/,
					0/*GetVopReverseVlc(curr)*/,
					switched,
					0 /*curr->alternate_scan*/);
			}

			ptr++;

		} /* for i loop */
	} /* for j loop */

	/* Free allocated memory for 3D matrix */
	for (i = 0; i < MB_in_width*MB_in_height; i++)
	{

		for (j = 0; j < 6; j++)
			free(DC_store[i][j]);
		free(DC_store[i]);
	}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久99| 国产一区二区福利| 国产又黄又大久久| 色综合久久中文综合久久牛| 日韩精品中文字幕在线不卡尤物| 亚洲四区在线观看| 国产乱人伦偷精品视频免下载 | 中文字幕一区在线| 亚洲电影在线播放| 94-欧美-setu| 国产欧美精品一区二区色综合朱莉| 日日摸夜夜添夜夜添国产精品| 高清视频一区二区| 2024国产精品| 久久99国内精品| 91精品国产综合久久久久久| 亚洲一区二三区| 91一区二区三区在线观看| 欧美激情综合网| 国产一区二区三区综合| 亚洲精品一区二区三区在线观看| 亚洲精品乱码久久久久久久久 | 极品瑜伽女神91| 欧美精品日韩一本| 亚洲一区二区三区精品在线| 99r精品视频| 国产精品美女久久久久久久网站| 国内精品久久久久影院一蜜桃| 91精品国产综合久久久久久久 | 国产乱人伦偷精品视频免下载| 欧美一区二区三区四区高清| 性做久久久久久免费观看欧美| 在线视频一区二区三| 亚洲自拍偷拍综合| 91久久精品一区二区二区| 亚洲日本va午夜在线电影| 不卡大黄网站免费看| 中文字幕亚洲欧美在线不卡| 成年人国产精品| 国产精品成人免费精品自在线观看| 成人免费看视频| 国产精品少妇自拍| 色又黄又爽网站www久久| 亚洲一区二区在线视频| 欧美视频中文字幕| 日本vs亚洲vs韩国一区三区二区 | 日韩午夜在线观看视频| 另类的小说在线视频另类成人小视频在线 | 国产欧美日韩综合精品一区二区| 丁香婷婷综合网| 日韩一区中文字幕| 欧美人与禽zozo性伦| 青椒成人免费视频| 久久久久一区二区三区四区| 北条麻妃一区二区三区| 亚洲综合成人在线| 欧美xxxxxxxx| 99re这里只有精品6| 日韩电影在线一区| 久久久精品免费网站| 色婷婷综合激情| 美女视频黄久久| 亚洲欧美日韩国产成人精品影院| 欧美日韩成人在线| 国产在线看一区| 亚洲免费伊人电影| 精品国产免费一区二区三区四区 | 国产欧美一区二区精品性色超碰| 成人黄色软件下载| 日韩精品一级二级| 中文字幕精品一区| 日韩一级二级三级| 91亚洲国产成人精品一区二区三| 奇米888四色在线精品| 亚洲国产成人午夜在线一区| 欧美亚洲综合网| 国产成人av一区二区三区在线| 亚洲综合男人的天堂| 亚洲精品在线电影| 欧美午夜视频网站| 成人av在线资源网站| 美脚の诱脚舐め脚责91 | 在线免费观看视频一区| 国产原创一区二区| 爽好多水快深点欧美视频| 国产精品沙发午睡系列990531| 91精品国产手机| 91国偷自产一区二区使用方法| 久久精品国产亚洲一区二区三区| 一区二区三区中文在线观看| 国产女主播一区| 欧美v亚洲v综合ⅴ国产v| 精品视频在线免费观看| 成人动漫av在线| 国产在线国偷精品免费看| 亚洲一区二区三区不卡国产欧美| 国产欧美一区二区精品秋霞影院| 日韩欧美中文字幕精品| 欧美色视频在线观看| 91片黄在线观看| 99久久精品情趣| 成人av电影在线观看| 国产在线看一区| 久久国产三级精品| 男男视频亚洲欧美| 日韩二区三区在线观看| 亚洲18女电影在线观看| 亚洲成人免费视频| 亚洲影院在线观看| 亚洲精品福利视频网站| 亚洲蜜臀av乱码久久精品 | 日韩精品一区二区三区老鸭窝| 欧美日韩一区二区三区视频| 色婷婷精品大视频在线蜜桃视频| 成人午夜av电影| 日韩欧美另类在线| 欧美一区三区二区| 欧美一区二区视频观看视频| 91精品国产品国语在线不卡| 91精品国产综合久久久蜜臀图片| 7777精品伊人久久久大香线蕉经典版下载 | 99免费精品视频| 成人国产精品免费观看动漫| 波多野结衣在线aⅴ中文字幕不卡| 国产伦精品一区二区三区免费迷 | 99精品欧美一区| 色综合久久综合网| 欧美日韩综合在线| 亚洲精品视频免费看| 亚洲天堂久久久久久久| 一区二区三区电影在线播| 亚瑟在线精品视频| 美女www一区二区| 国产精品77777| 成人免费不卡视频| 在线精品视频免费播放| 欧美军同video69gay| 欧美精品一区二区三区蜜桃| 国产亚洲一区二区在线观看| 国产精品日韩精品欧美在线| 亚洲精品成人在线| 日韩不卡一区二区三区 | 亚洲第四色夜色| 毛片一区二区三区| 国产不卡高清在线观看视频| 91玉足脚交白嫩脚丫在线播放| 欧美日韩一级大片网址| 久久中文娱乐网| 亚洲欧美激情插| 久久精品噜噜噜成人88aⅴ| 成人一区二区三区视频| 欧美日韩一级片网站| 国产亚洲制服色| 视频一区二区不卡| 成年人网站91| 欧美一区二区日韩| 国产精品不卡在线| 日韩经典中文字幕一区| 国产高清不卡二三区| 欧美在线免费播放| 国产欧美视频在线观看| 亚洲国产欧美一区二区三区丁香婷| 国内成+人亚洲+欧美+综合在线| 一本大道久久a久久综合| 久久免费精品国产久精品久久久久| 亚洲精品中文在线影院| 国产一区三区三区| 欧美美女一区二区三区| 国产精品福利一区| 国产一区免费电影| 69av一区二区三区| 亚洲免费视频中文字幕| 国产成人在线看| 日韩美女一区二区三区| 亚洲一级电影视频| 99re这里只有精品6| 久久久久久亚洲综合影院红桃| 婷婷一区二区三区| 欧美性色aⅴ视频一区日韩精品| 国产日韩亚洲欧美综合| 精品综合免费视频观看| 欧美日韩免费在线视频| 亚洲欧美日韩在线不卡| 国精品**一区二区三区在线蜜桃| 欧美日韩一区二区在线观看视频| 国产精品盗摄一区二区三区| 国产成人av一区二区| 久久嫩草精品久久久精品| 麻豆91免费观看| 91精品国产aⅴ一区二区| 午夜日韩在线观看| 欧美亚洲免费在线一区| 亚洲欧美激情视频在线观看一区二区三区 | 日韩高清欧美激情| 欧美图区在线视频| 亚洲国产成人porn| 欧美日韩成人综合在线一区二区| 亚洲高清免费一级二级三级| 在线精品视频小说1| 亚洲国产精品欧美一二99|