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

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

?? macroblock.c

?? Mobile IP VCEG的信道模擬程序
?? C
?? 第 1 頁 / 共 3 頁
字號:
/*!
 *	\file
 *			Macroblock.c
 *	\brief
 *			Decode a Macroblock
 *	\author
 *			Main contributors (see contributors.h for copyright, address and affiliation details)
 *			Inge Lille-Lang鴜               <inge.lille-langoy@telenor.com>
 *			Rickard Sjoberg                 <rickard.sjoberg@era.ericsson.se>
 *			Jani Lainema                    <jani.lainema@nokia.com>
 *			Sebastian Purreiter             <sebastian.purreiter@mch.siemens.de>
 *			Thomas Wedi						<wedi@tnt.uni-hannover.de>
 *      Detlev Marpe                    <marpe@hhi.de>
 *      Gabi Blaettermann               <blaetter@hhi.de>
 */
#include "contributors.h"

#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <string.h>

#include "global.h"
#include "elements.h"
#include "macroblock.h"

/************************************************************************
*
*  Name :       SetLoopfilterStrength_P()
*
*  Description: Set the filter strength for a macroblock of a I- or P-frame
*
************************************************************************/
void SetLoopfilterStrength_P(struct img_par *img)
{
	int i,j;
	int ii,jj;
	int i3,j3,mvDiffX,mvDiffY;

	if (img->imod == INTRA_MB_OLD || img->imod == INTRA_MB_NEW) 
	{
		for (i=0;i<BLOCK_MULTIPLE;i++)
		{
			ii=img->block_x+i;
			i3=ii/2;
			for (j=0;j<BLOCK_MULTIPLE;j++)
			{
				jj=img->block_y+j;
				j3=jj/2;
				loopb[ii+1][jj+1]=3;
				loopb[ii  ][jj+1]=max(loopb[ii  ][jj+1],2);
				loopb[ii+1][jj  ]=max(loopb[ii+1][jj  ],2);
				loopb[ii+2][jj+1]=max(loopb[ii+2][jj+1],2);
				loopb[ii+1][jj+2]=max(loopb[ii+1][jj+2],2);
				
				loopc[i3+1][j3+1]=2;
				loopc[i3  ][j3+1]=max(loopc[i3  ][j3+1],1);
				loopc[i3+1][j3  ]=max(loopc[i3+1][j3  ],1);
				loopc[i3+2][j3+1]=max(loopc[i3+2][j3+1],1);
				loopc[i3+1][j3+2]=max(loopc[i3+1][j3+2],1);
			}
		}
	}
	else
	{
		for (i=0;i<4;i++)
		{
			ii=img->block_x+i;
			i3=ii/2;
			for (j=0;j<4;j++)
			{
				jj=img->block_y+j;
				j3=jj/2;
			
				mvDiffX = img->mv[ii+4][jj][0] - img->mv[ii-1+4][jj][0];
				mvDiffY = img->mv[ii+4][jj][1] - img->mv[ii-1+4][jj][1];
				if((mvDiffX*mvDiffX >= 16 || mvDiffY*mvDiffY >= 16) && ii > 0)
				{ 
					loopb[ii  ][jj+1]=max(loopb[ii  ][jj+1],1);
					loopb[ii+1][jj+1]=max(loopb[ii+1][jj+1],1); 
					loopc[i3  ][j3+1]=max(loopc[i3  ][j3+1],1);
					loopc[i3+1][j3+1]=max(loopc[i3+1][j3+1],1);
				}
				
				if(jj > 0) /*GH: bug fix to avoid img->mv[][-1][ii+4]*/
				{			
				  mvDiffX = img->mv[ii+4][jj][0] - img->mv[ii+4][jj-1][0];
				  mvDiffY = img->mv[ii+4][jj][1] - img->mv[ii+4][jj-1][1];
				  if(mvDiffX*mvDiffX >= 16 || mvDiffY*mvDiffY >= 16)
				  {
					loopb[ii+1][jj  ]=max(loopb[ii+1][jj  ],1);
					loopb[ii+1][jj+1]=max(loopb[ii+1][jj+1],1);
					loopc[i3+1][j3  ]=max(loopc[i3+1][j3  ],1);
					loopc[i3+1][j3+1]=max(loopc[i3+1][j3+1],1);
				  }
				}
			}
		}		
	}
}

/************************************************************************
*
 *  Name :       CheckAvailabilityOfNeighbors(struct img_par *img)
*
*  Description: Checks the availability of neighboring macroblocks of 
*								the current macroblock for prediction and context determination;
*								marks the unavailable MBs for intra prediction in the 
*								ipredmode-array by -1. Only neighboring MBs in the causal 
*								past of the current MB are checked.
*
************************************************************************/
void CheckAvailabilityOfNeighbors(struct img_par *img)
{
	int i,j;
	const int mb_width = img->width/MB_BLOCK_SIZE;
	const int mb_nr = img->current_mb_nr;
	Macroblock *currMB = &img->mb_data[mb_nr];

	/* mark all neighbors as unavailable */
	for (i=0; i<3; i++)
		for (j=0; j<3; j++)
			img->mb_data[mb_nr].mb_available[i][j]=NULL;
	img->mb_data[mb_nr].mb_available[1][1]=currMB; /* current MB */

	/* Check MB to the left */
	if(img->pix_x >= MB_BLOCK_SIZE)
	{
		if(currMB->slice_nr != img->mb_data[mb_nr-1].slice_nr)
		{
			img->ipredmode[img->block_x][img->block_y+1] = -1;
			img->ipredmode[img->block_x][img->block_y+2] = -1;
			img->ipredmode[img->block_x][img->block_y+3] = -1;
			img->ipredmode[img->block_x][img->block_y+4] = -1;
		} else
			currMB->mb_available[1][0]=&(img->mb_data[mb_nr-1]);
	} 


	/* Check MB above */
	if(img->pix_y >= MB_BLOCK_SIZE)
	{
		if(currMB->slice_nr != img->mb_data[mb_nr-mb_width].slice_nr)
		{
			img->ipredmode[img->block_x+1][img->block_y] = -1;
			img->ipredmode[img->block_x+2][img->block_y] = -1;
			img->ipredmode[img->block_x+3][img->block_y] = -1;
			img->ipredmode[img->block_x+4][img->block_y] = -1;
		} else
		    currMB->mb_available[0][1]=&(img->mb_data[mb_nr-mb_width]);
	}

	/* Check MB left above */
	if(img->pix_x >= MB_BLOCK_SIZE && img->pix_y  >= MB_BLOCK_SIZE )
	{
		if(currMB->slice_nr == img->mb_data[mb_nr-mb_width-1].slice_nr)
			img->mb_data[mb_nr].mb_available[0][0]=&(img->mb_data[mb_nr-mb_width-1]);
	}

	/* Check MB right above */
	if(img->pix_y >= MB_BLOCK_SIZE && img->pix_x < (img->width-MB_BLOCK_SIZE ))
	{
		if(currMB->slice_nr == img->mb_data[mb_nr-mb_width+1].slice_nr)
			currMB->mb_available[0][2]=&(img->mb_data[mb_nr-mb_width+1]);
	}
}

/************************************************************************
*
*  Name :       start_macroblock()
*
*  Description: initializes the current macroblock
*
************************************************************************/
void start_macroblock(struct img_par *img,struct inp_par *inp)
{
	int i,j,k,l;
	Macroblock *currMB = &img->mb_data[img->current_mb_nr];
	//	Slice *curr_slice = img->currentSlice;
	
	/* Save the slice number of this macroblock. When the macroblock below     */
	/* is coded it will use this to decide if prediction for above is possible */
	img->slice_numbers[img->current_mb_nr] = img->current_slice_nr;

	/* Save the slice and macroblock number of the current MB */
	currMB->slice_nr = img->current_slice_nr;

	/* If MB is next to a slice boundary, mark neighboring blocks unavailable for prediction */
	CheckAvailabilityOfNeighbors(img);

	/* Reset syntax element entries in MB struct */
	currMB->mb_type = 0;
	currMB->ref_frame = 0;
    currMB->predframe_no = 0;

	currMB->cbp = 0;

	for (l=0; l < 2; l++)
		for (j=0; j < BLOCK_MULTIPLE; j++)
			for (i=0; i < BLOCK_MULTIPLE; i++)
				for (k=0; k < 2; k++)
					currMB->mvd[l][j][i][k] = 0;

	for (i=0; i < (BLOCK_MULTIPLE*BLOCK_MULTIPLE); i++)
		currMB->intra_pred_modes[i] = 0;
}

/************************************************************************
*
*  Name :       exit_macroblock()
*
*  Description: set coordinates of the next macroblock
*               check end_of_slice condition (have to implement)
*
************************************************************************/
int exit_macroblock(struct img_par *img,struct inp_par *inp)
{   
    const int number_mb_per_row = img->width / MB_BLOCK_SIZE ;
	Slice *currSlice = img->currentSlice;

    /* Update coordinates of the next macroblock */
	img->mb_x++;
	if (img->mb_x == number_mb_per_row) /* next row of MBs */
	{
		img->mb_x = 0; /* start processing of next row */
		img->mb_y++;
	}
 	img->current_mb_nr++;

	/* Define vertical positions */
	img->block_y = img->mb_y * BLOCK_SIZE;      /* luma block position */
	img->pix_y   = img->mb_y * MB_BLOCK_SIZE;   /* luma macroblock position */
	img->pix_c_y = img->mb_y * MB_BLOCK_SIZE/2; /* chroma macroblock position */
	
	/* Define horizontal positions */
	img->block_x = img->mb_x * BLOCK_SIZE;      /* luma block position */
	img->pix_x   = img->mb_x * MB_BLOCK_SIZE;   /* luma pixel position */
	img->pix_c_x = img->mb_x * MB_BLOCK_SIZE/2; /* chroma pixel position */

    if (img->current_mb_nr == img->max_mb_nr) 
	{
		if (currSlice->next_header != EOS)
			currSlice->next_header = SOP;		
        return TRUE;
	}
	/* ask for last mb in the slice  UVLC*/
    else if(nal_startcode_follows(img, inp)==TRUE)
        return TRUE;
    else
        return FALSE;
}
/************************************************************************
*
*  Name :       interpret_mb_mode_P()
*
*  Description: Interpret the mb mode for P-Frames
*
************************************************************************/
void interpret_mb_mode_P(struct img_par *img)
{
    const int ICBPTAB[6] = {0,16,32,15,31,47};
    Macroblock *currMB = &img->mb_data[img->current_mb_nr];

    if (img->mb_mode == INTRA_MB)   /* 4x4 intra */
		img->imod = currMB->mb_imode = INTRA_MB_OLD;
	if (img->mb_mode > INTRA_MB)    /* 16x16 intra */
	{
		img->imod = currMB->mb_imode = INTRA_MB_NEW;     //mod0=img->mb_mode-1;kmod=mod0 & 3;cbp = ICBPTAB[mod0/4];
		currMB->intra_pred_modes[0] = (img->mb_mode - INTRA_MB-1) & 3; 
		currMB->cbp = ICBPTAB[(img->mb_mode - INTRA_MB-1)>>2]; 
	}
	if (img->mb_mode < INTRA_MB)    /* inter prediction mode (block shape) */
		img->imod = currMB->mb_imode = INTRA_MB_INTER;   /* intra in inter frame */ 
}
/************************************************************************
*
*  Name :       interpret_mb_mode_I()
*
*  Description: Interpret the mb mode for I-Frames
*
************************************************************************/
void interpret_mb_mode_I(struct img_par *img)
{
    const int ICBPTAB[6] = {0,16,32,15,31,47};
    Macroblock *currMB = &img->mb_data[img->current_mb_nr];

	if (img->mb_mode == 0)
		img->imod = currMB->mb_imode = INTRA_MB_OLD;     /* 4x4 intra */
	else
	{
		img->imod = currMB->mb_imode = INTRA_MB_NEW;     /* 16x16 intra */ //mod0=img->mb_mode-1;kmod=mod0 & 3;cbp = ICBPTAB[mod0/4];
        currMB->intra_pred_modes[0] = (img->mb_mode - 1) & 3; 
	    currMB->cbp = ICBPTAB[(img->mb_mode - 1)>>2]; 
	}	
    
}
/************************************************************************
*
*  Name :       interpret_mb_mode_B()
*
*  Description: Interpret the mb mode for B-Frames
*
************************************************************************/
void interpret_mb_mode_B(struct img_par *img)
{
    const int ICBPTAB[6] = {0,16,32,15,31,47};
    Macroblock *currMB = &img->mb_data[img->current_mb_nr];

   
	if (img->mb_mode == INTRA_MB_B) /* 4x4 intra */
		img->imod = currMB->mb_imode = INTRA_MB_OLD;
	if (img->mb_mode > INTRA_MB_B)  /* 16x16 intra */
	{
		img->imod = currMB->mb_imode = INTRA_MB_NEW;
  		currMB->intra_pred_modes[0] = (img->mb_mode - INTRA_MB_B-1) & 3; 
		currMB->cbp = ICBPTAB[(img->mb_mode - INTRA_MB_B-1)>>2];  
	}
	if (img->mb_mode < INTRA_MB_B)  /* intra in inter frame */
	  {
		if(img->mb_mode == 0) 
			img->imod = currMB->mb_imode = B_Direct;	
		else if(img->mb_mode == 3) 
            img->imod = currMB->mb_imode = B_Bidirect;
  		else if(img->mb_mode==1 || (img->mb_mode>3 && img->mb_mode%2==0)) 
            img->imod = currMB->mb_imode = B_Forward;
		else if(img->mb_mode==2 || (img->mb_mode>4 && img->mb_mode%2==1)) 
            img->imod = currMB->mb_imode = B_Backward;
        else img->imod = 3/img->mb_mode;
	  }
}
/************************************************************************
*
*  Name :       init_macroblock()
*
*  Description: init macroblock I and P frames
*
************************************************************************/
void init_macroblock(struct img_par *img)
{
    int i,j;
    int predframe_no;
    Macroblock *currMB = &img->mb_data[img->current_mb_nr];

    img->mv[img->block_x+4][img->block_y][2]=img->number;

	for (i=0;i<BLOCK_SIZE;i++)
	{                           /* reset vectors and pred. modes  */
		for(j=0;j<BLOCK_SIZE;j++)
		{
			img->mv[img->block_x+i+4][img->block_y+j][0] = 0;
			img->mv[img->block_x+i+4][img->block_y+j][1] = 0;
			img->ipredmode[img->block_x+i+1][img->block_y+j+1] = 0;
		}
	}
 
	currMB->ref_frame = img->frame_cycle;
	currMB->predframe_no = predframe_no = 0;//g.b.1;

	/* Set the reference frame information for motion vector prediction */
	if (img->imod == INTRA_MB_OLD || img->imod == INTRA_MB_NEW)
		for (j = 0;j < BLOCK_SIZE;j++)
			for (i = 0;i < BLOCK_SIZE;i++)
				refFrArr[img->block_y+j][img->block_x+i] = -1;
    else
        for (j = 0;j < BLOCK_SIZE;j++)
			for (i = 0;i < BLOCK_SIZE;i++)
				refFrArr[img->block_y+j][img->block_x+i] = predframe_no;

  
}
/************************************************************************
*
*  Name :       read_one_macroblock()
*
*  Description: Get the syntax elements from the NAL
*
************************************************************************/
int read_one_macroblock(struct img_par *img,struct inp_par *inp)
{
	int i, i1, j1;
	
	SyntaxElement currSE;
	Macroblock *currMB = &img->mb_data[img->current_mb_nr];
	
	Slice *currSlice = img->currentSlice;
	DataPartition *dP;
	int *partMap = assignSE2partition[inp->partition_mode];
	
	int dbl_ipred_word;
	
	/*  read MB mode ******************************************************************/
	if (inp->symbol_mode == UVLC)
		currSE.mapping = linfo;
	else
		currSE.reading = readMB_typeInfoFromBuffer_CABAC;
	currSE.type = SE_MBTYPE;
	dP = &(currSlice->partArr[partMap[currSE.type]]);
	
#if TRACE
	strcpy(currSE.tracestring, "MB Type");
#endif
	
	dP->readSyntaxElement(&currSE,img,inp,dP);
	img->mb_mode = currMB->mb_type = currSE.value1;   
	
	if ((img->type==INTER_IMG_1) || (img->type==INTER_IMG_MULT))    /* inter frame */       
		interpret_mb_mode_P(img);
	else if (img->type==INTRA_IMG)                                  /* intra frame */
		interpret_mb_mode_I(img);
	else if ((img->type==B_IMG_1) || (img->type==B_IMG_MULT))       /* B frame */
		interpret_mb_mode_B(img);
	
	if ((img->type==B_IMG_1) || (img->type==B_IMG_MULT)) 
		init_macroblock_Bframe(img);
	else
		init_macroblock(img);
	
	if (img->imod==INTRA_MB_INTER && img->mb_mode==COPY_MB) /*keep last macroblock*/
	{
		return DECODE_COPY_MB;
	}
	
	/* intra prediction modes for a macroblock 4x4 ***********************************************/
	if (img->imod==INTRA_MB_OLD)              
	{
		if (inp->symbol_mode == UVLC)
		    currSE.mapping = linfo;
		else
		    currSE.reading = readIntraPredModeFromBuffer_CABAC; 
		
		currSE.type = SE_INTRAPREDMODE;
		dP = &(currSlice->partArr[partMap[currSE.type]]);
    
		for(i=0;i<MB_BLOCK_SIZE/2;i++)
		{
#if TRACE
			sprintf(currSE.tracestring, "Intra mode ");
#endif
			dP->readSyntaxElement(&currSE,img,inp,dP);
			
			i1=img->block_x + 2*(i&0x01);
			j1=img->block_y + i/2;
			
			if (inp->symbol_mode == UVLC)
			{
				dbl_ipred_word = currSE.value1;
				/* find intra prediction mode for two blocks */
				img->ipredmode[i1+1][j1+1] = PRED_IPRED[img->ipredmode[i1+1][j1]+1][img->ipredmode[i1][j1+1]+1][IPRED_ORDER[dbl_ipred_word][0]];
				img->ipredmode[i1+2][j1+1] = PRED_IPRED[img->ipredmode[i1+2][j1]+1][img->ipredmode[i1+1][j1+1]+1][IPRED_ORDER[dbl_ipred_word][1]];
			}
			else
			{
				img->ipredmode[i1+1][j1+1] = PRED_IPRED[img->ipredmode[i1+1][j1]+1][img->ipredmode[i1][j1+1]+1][currSE.value1];
				img->ipredmode[i1+2][j1+1] = PRED_IPRED[img->ipredmode[i1+2][j1]+1][img->ipredmode[i1+1][j1+1]+1][currSE.value2];
			}
		}
	}
	
	/* read inter frame vector data *********************************************************/
	if ((img->type==B_IMG_1) || (img->type==B_IMG_MULT)) 
		readMotionInfoFromNAL_Bframe(img,inp);
	else if(img->imod==INTRA_MB_INTER)              
		readMotionInfoFromNAL_Pframe(img,inp);
	
	/* read CBP and Coeffs  ****************************************************************/

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产午夜精品福利| 奇米影视一区二区三区| 亚洲成人午夜电影| 国产 欧美在线| 欧美一级日韩一级| 亚洲美女免费视频| 国产高清精品在线| www国产成人免费观看视频 深夜成人网| 亚洲天堂成人网| 国产69精品一区二区亚洲孕妇| 日韩一级免费观看| 视频一区免费在线观看| 色婷婷综合久色| 国产精品久久国产精麻豆99网站| 韩国成人精品a∨在线观看| 91精品午夜视频| 亚洲国产日韩综合久久精品| 色综合一区二区| 亚洲欧美偷拍三级| 91农村精品一区二区在线| 国产午夜精品一区二区| 国产一区二区三区久久悠悠色av| 91精品在线观看入口| 婷婷久久综合九色综合伊人色| 在线观看91视频| 一级中文字幕一区二区| 色婷婷av一区二区三区gif| 中文字幕在线不卡国产视频| 岛国精品一区二区| 国产精品少妇自拍| 91在线视频播放| 亚洲另类春色校园小说| 91久久香蕉国产日韩欧美9色| 亚洲精品自拍动漫在线| 欧美日韩一区三区四区| 午夜精品在线视频一区| 91麻豆精品国产91久久久使用方法 | 久久91精品国产91久久小草| 欧美一区二区三级| 韩国视频一区二区| 欧美精品一区二区三区在线 | 国产欧美日韩在线观看| 国产成人自拍在线| 18欧美乱大交hd1984| 99国产精品久久久久久久久久| 综合久久久久久| 欧美色偷偷大香| 韩国精品免费视频| 国产精品国产三级国产| 色综合久久66| 视频一区二区欧美| 26uuu国产日韩综合| jlzzjlzz亚洲日本少妇| 亚洲综合丁香婷婷六月香| 欧美一区二区三区电影| 国产成人aaa| 亚洲国产精品麻豆| 精品国产不卡一区二区三区| 成人av第一页| 日韩黄色免费网站| 久久精品免费在线观看| 91福利视频网站| 久久99日本精品| 国产精品成人网| 日韩一级视频免费观看在线| 成人av电影免费在线播放| 亚洲成人在线观看视频| 久久久久久影视| 色88888久久久久久影院野外| 美日韩一区二区| 亚洲免费观看在线视频| 精品国产一区二区亚洲人成毛片| 99精品国产99久久久久久白柏| 蜜桃精品在线观看| 亚洲日本丝袜连裤袜办公室| 日韩精品一区二区三区蜜臀| 91网站在线观看视频| 狠狠色伊人亚洲综合成人| 18欧美乱大交hd1984| 精品国产一区二区在线观看| 欧美偷拍一区二区| 国产寡妇亲子伦一区二区| 日韩电影在线观看电影| 中文字幕一区三区| 亚洲精品在线免费播放| 欧美日韩你懂的| 99久久精品免费看国产| 国产一区福利在线| 奇米色777欧美一区二区| 一区二区三区国产精品| 国产精品―色哟哟| 久久久蜜臀国产一区二区| 欧美一区二区久久| 欧美精品久久久久久久多人混战 | 看国产成人h片视频| 一区二区三区电影在线播| 欧美激情一区二区三区不卡| 日韩欧美国产高清| 91精品久久久久久蜜臀| 欧美在线不卡一区| 欧美亚一区二区| 色噜噜狠狠成人中文综合| a级高清视频欧美日韩| 成人一区二区三区在线观看| 国产老肥熟一区二区三区| 久久精品国产网站| 美女免费视频一区| 日本不卡一区二区三区高清视频| 午夜视频在线观看一区二区| 亚洲国产精品尤物yw在线观看| 亚洲精品自拍动漫在线| 一区二区三区精品久久久| 亚洲精品乱码久久久久久黑人| 亚洲色图.com| 一区二区三区日本| 午夜av电影一区| 免费国产亚洲视频| 精品一区二区三区免费观看| 国产一区二区主播在线| 国产高清在线观看免费不卡| 不卡的av电影| 欧美日韩综合一区| 欧美一区二区三区啪啪| 欧美mv日韩mv| 中文字幕av资源一区| 亚洲日本va午夜在线影院| 亚洲最大成人网4388xx| 奇米色777欧美一区二区| 久久爱另类一区二区小说| 高清不卡在线观看| 色偷偷久久一区二区三区| 欧美老女人第四色| 久久婷婷国产综合国色天香| 中文字幕av一区 二区| 亚洲精品成人少妇| 老色鬼精品视频在线观看播放| 国产精品亚洲一区二区三区妖精 | 国产精品白丝在线| 洋洋成人永久网站入口| 久久99久久99精品免视看婷婷| 国产一区二区三区蝌蚪| 色94色欧美sute亚洲线路二| 欧美一区二区成人| 国产精品人人做人人爽人人添| 亚洲一区在线电影| 国产乱色国产精品免费视频| 91麻豆免费视频| 欧美成人三级电影在线| 椎名由奈av一区二区三区| 伦理电影国产精品| 99re这里只有精品首页| 欧美xxxxx牲另类人与| 亚洲欧洲日韩在线| 精品一区二区精品| 色呦呦国产精品| 国产午夜精品久久久久久免费视| 亚洲午夜在线电影| 风间由美一区二区av101 | 美女视频黄免费的久久| 97se亚洲国产综合自在线| 欧美va亚洲va香蕉在线| 亚洲在线成人精品| 懂色av一区二区夜夜嗨| 日韩午夜在线播放| 亚洲成人自拍网| 97精品久久久久中文字幕 | 亚洲尤物视频在线| 成人激情免费视频| 亚洲精品一区二区精华| 香蕉加勒比综合久久 | 成人性生交大片免费看中文| 欧美一区国产二区| 亚洲与欧洲av电影| a4yy欧美一区二区三区| 久久久精品免费网站| 日本午夜一区二区| 欧美日韩精品一区二区三区四区| 国产精品第13页| 国产aⅴ综合色| 日韩欧美在线综合网| 日韩福利视频网| 欧美三级视频在线观看| 一级做a爱片久久| 色偷偷88欧美精品久久久| 亚洲欧洲国产日韩| 波多野结衣一区二区三区| 久久先锋影音av鲁色资源| 免费观看日韩av| 日韩欧美在线一区二区三区| 五月综合激情婷婷六月色窝| 欧美综合色免费| 亚洲国产日韩av| 欧美另类一区二区三区| 亚洲国产视频一区二区| 欧美三电影在线| 青青草国产成人av片免费| 91麻豆精品91久久久久同性| 日韩国产高清在线| 日韩丝袜情趣美女图片| 久久成人综合网|