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

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

?? motion_est_core_2_optimized.c

?? 基于Linux的ffmepg decoder
?? C
?? 第 1 頁 / 共 5 頁
字號:
int32_t
MotionEstimation_block0_4MV(MACROBLOCK *const pMB,Encoder *pEnc)
{
    FTMCP100_CODEC *pCodec=(FTMCP100_CODEC *)pEnc->pCodec;
    FRAMEINFO * const current1=pEnc->current1;
    FRAMEINFO * const reference=pEnc->reference;

	MACROBLOCK *prevMB = &reference->mbs[0];
	int32_t MOTION_ACTIVITY;
	int32_t  X, d_type;
	uint32_t lam_16;
	volatile MDMA *pmdma = MDMA1;
	DECLARE_MP4_PTR
	
	unsigned int *pDMA1,*pDMA2;
	unsigned int XDIM=pEnc->mEncParam.u32FrameWidth;
	pDMA1=pCodec->DMA_COMMAND_local;
	pDMA2=pCodec->DMA_COMMAND_local+DMA_COMMAND_QUEUE_STRIDE;

	// to set the VOP size (including VOP width and VOP height)
    // the VOPSIZE register is at address 0x10080.    
    SET_VOPSIZE((pEnc->mEncParam.u32FrameWidth)<<16 | (pEnc->mEncParam.u32FrameHeight))
	
	// to set the prediction MV buffer start address
    // the PMVBUF register is at address 0x10084.
	SET_PMVBUF(PMV_BUF)
	
	// to set Horizontal Offset Register 
    // the VOPSIZE register is at address 0x10018.
	SET_HOFFSET(0)

    //----------------------------------------------------------------------------
	// start to set the ME commands	for 1MV motion estimation	
	// to set horizontal prediction vector,BSIZE=1 (for 1MV),BK_BUM=0 (this bit should be 0 when BSIZE==1)
	pCodec->ME_command_queue0[16] = (0<<29) | (1<<25) | (0<<23);
	// to set vertical prediction vector,BSIZE=1 (for 1MV),BK_BUM=0 (this bit should be 0 when BSIZE==1)
	pCodec->ME_command_queue0[17] = (1<<29) | (1<<25) | (0<<23);
	
	// to set SAD command ,last=0 (not last SAD command), MPMV=1 (use median predictor) --- we select the median predictor as a candidate
	// SRC=0 (not meaningful since MPMV=1) ,MVX and MVY (not meaningful since MPMV=1) , RADD=Raddr (reference block start address)	
	pCodec->ME_command_queue0[18] = (2<<29) | (1<<27) | pCodec->Raddr;				//	median result
	
	// to set SAD command ,last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=0 and MVY=0 (used as horizontal motion vector and vertical motion vector since SRC==0)
	// because it is the first macroblock in whole frame, so the left,top and top-right neighbors' motion vector are zero
	// RADD=Raddr (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[19] = (2<<29) | pCodec->Raddr;
	pCodec->ME_command_queue0[20] = (2<<29) | pCodec->Raddr;
	pCodec->ME_command_queue0[21] = (2<<29) | pCodec->Raddr;
	

	// to set SAD command ,last=1 (it's last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=((prevMB->mv16x_3 & 0x7f) << 19) and MVY=((prevMB->mv16y_3 & 0x7f) (used as horizontal motion vector and vertical motion vector since SRC==0)
	// RADD=Raddr + (prevMB->mv16y_3 < 0 ? 0 : (prevMB->mv16y_3 >> 1)*16) (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[22] = (1<<28) | (2<<29) | ((prevMB->mv16x_3 & 0x7f) << 19) | ((prevMB->mv16y_3 & 0x7f) << 12) 
							| pCodec->Raddr + (prevMB->mv16y_3 < 0 ? 0 : (prevMB->mv16y_3 >> 1)*16);
	

	// to set diamond command , dsize=0 (choose small diamond) , 
	// maxloop= (Diamond_search_limit << 16) , MinSADth= ThEES (Threshold for minimim SAD for diamond stop)
	// according to the C model program, since it's the very first block , d_type will be 0 (small diamond)
	// so we search the diamond from small diamond
	pCodec->ME_command_queue0[23] = (3<<29) | (Diamond_search_limit << 16) | ThEES;		// dsize is always small
	

	// to set Half-Pel-Refine command , 4MV=1 (4MV mode is used), 
	// SAD8th = 0 (1MV/4MV threshold) , MinSADth= ThEES1 (Threshold for minimim SAD for skipping Half-Pel-Refine search)
	pCodec->ME_command_queue0[24] = ((unsigned int)4<<29) | (1<<28) | ThEES1; // add unsigned int to avoid warning... half pixel refine
	
    //----------------------------------------------------------------------------

	// start to set the ME commands	for 4MV motion estimation for block 0

	// to set horizontal prediction vector,BSIZE=0 (for 4MV),BK_BUM=0 (block number 0)
	pCodec->ME_command_queue0[25] = (0<<29) | (0<<25) | (0<<23);

	// to set vertical prediction vector,BSIZE=0 (for 4MV),BK_BUM=0 (block number 0)
	pCodec->ME_command_queue0[26] = (1<<29) | (0<<25) | (0<<23);
	

	// to set SAD command ,last=0 (not last SAD command), MPMV=1 (use median predictor) --- we select the median predictor as a candidate
	// SRC=0 (not meaningful since MPMV=1) ,MVX and MVY (not meaningful since MPMV=1) , RADD=Raddr (reference block start address)
	pCodec->ME_command_queue0[27] = (2<<29) | (1<<27) | pCodec->Raddr;							//	median result
	

	// to set SAD command ,last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=0 and MVY=0 (used as horizontal motion vector and vertical motion vector since SRC==0)
	// because it is the first macroblock in whole frame, so the left,top and top-right neighbors' motion vector are zero
	// RADD=Raddr (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[28] = (2<<29) | pCodec->Raddr;
	pCodec->ME_command_queue0[29] = (2<<29) | pCodec->Raddr;
	pCodec->ME_command_queue0[30] = (2<<29) | pCodec->Raddr;
	

	// to set SAD command ,last=1 (it's last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=(prevMB->mv16x_0 & 0x7f) and MVY=(prevMB->mv16y_0 & 0x7f) (used as horizontal motion vector and vertical motion vector since SRC==0)
	// RADD=Raddr + (prevMB->mv16y_0 < 0 ? 0 : (prevMB->mv16y_0 >> 1)*16) (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[31] = (1<<28) | (2<<29) | ((prevMB->mv16x_0 & 0x7f) << 19) | ((prevMB->mv16y_0 & 0x7f) << 12) 
							| pCodec->Raddr + (prevMB->mv16y_0 < 0 ? 0 : (prevMB->mv16y_0 >> 1)*16);
							

	// to set diamond command , dsize=0 (choose small diamond) , 
	// maxloop= (Diamond_search_limit << 16) , MinSADth= ThEES_4 (Threshold for minimim SAD for diamond stop)
	// according to the C model program, we always search the diamond from small diamond in 1MV macroblock search
	pCodec->ME_command_queue0[32] = ((unsigned int)3<<29) | (Diamond_search_limit << 16) | ThEES_4; // add unsigned int to avoid warning ... dsize is always small
	

	// to set Half-Pel-Refine command , 4MV=1 (4MV mode is used), 
	// SAD8th = 0 (1MV/4MV threshold) , MinSADth= ThEES1 (Threshold for minimim SAD for skipping Half-Pel-Refine search)
	pCodec->ME_command_queue0[33] = ((unsigned int)4<<29) | (1<<28) | ThEES1;	// to add unsigned int to avoid warning ... half pixel refine
    //-------------------------------------

	// to set horizontal prediction vector,BSIZE=0 (for 4MV),BK_BUM=1 (block number 1)
	pCodec->ME_command_queue0[34] = (0<<29) | (0<<25) | (1<<23);

	// to set vertical prediction vector,BSIZE=0 (for 4MV),BK_BUM=1 (block number 1)
	pCodec->ME_command_queue0[35] = (1<<29) | (0<<25) | (1<<23);
	

	// to set SAD command (median predictor) ,last=0 (not last SAD command), MPMV=1 (use median predictor) --- we select the median predictor as a candidate
	// SRC=0 (not meaningful since MPMV=1) ,MVX and MVY (not meaningful since MPMV=1)
	// RADD=Raddr (reference block start address)
	pCodec->ME_command_queue0[36] = (2<<29) | (1<<27) | pCodec->Raddr;							//	median result

	// to set SAD command (top neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=1 (the source is from MV buffer)
	// MVX=0 (get motion vector and reference start address from index 0 of MV buffer)
	// MVY and RADD is not used since SRC==1 
	pCodec->ME_command_queue0[37] = (2<<29) | (1<<26) | (0<<19);
	

	// to set SAD command (top and top-left neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=0 and MVY=0 (used as horizontal motion vector and vertical motion vector since SRC==0)
	// because it is the first macroblock in whole frame, so the left,top and top-right neighbors' motion vector are zero
	// RADD=Raddr (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[38] = (2<<29) | pCodec->Raddr;
	pCodec->ME_command_queue0[39] = (2<<29) | pCodec->Raddr;

	// to set SAD command (previous MB) ,last=1 (it's last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=(prevMB->mv16x_1 & 0x7f) and MVY=(prevMB->mv16y_1 & 0x7f) (used as horizontal motion vector and vertical motion vector since SRC==0)
	// RADD=Raddr + (prevMB->mv16y_1 < 0 ? 0 : (prevMB->mv16y_1 >> 1)*16) (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[40] = (1<<28) | (2<<29) | ((prevMB->mv16x_1 & 0x7f) << 19) | ((prevMB->mv16y_1 & 0x7f) << 12) 
							| pCodec->Raddr + (prevMB->mv16y_1 < 0 ? 0 : (prevMB->mv16y_1 >> 1)*16);
	

	// to set diamond command , dsize=0 (choose small diamond) , 
	// maxloop= (Diamond_search_limit << 16) , MinSADth= ThEES_4 (Threshold for minimim SAD for diamond stop)
	pCodec->ME_command_queue0[41] = (3<<29) | (Diamond_search_limit << 16) | ThEES_4;		// dsize is always small

	// to set Half-Pel-Refine command , 4MV=1 (4MV mode is used), 
	// SAD8th = 0 (1MV/4MV threshold) , MinSADth= ThEES1 (Threshold for minimim SAD for skipping Half-Pel-Refine search)
	pCodec->ME_command_queue0[42] = ((unsigned int)4<<29) | (1<<28) | ThEES1;	// to add unsigned int to avoid warning ... half pixel refine
    //-------------------------------------

	// to set horizontal prediction vector,BSIZE=0 (for 4MV),BK_BUM=2 (block number 2)
	pCodec->ME_command_queue0[43] = (0<<29) | (0<<25) | (2<<23);

	// to set vertical prediction vector,BSIZE=0 (for 4MV),BK_BUM=2 (block number 2)
	pCodec->ME_command_queue0[44] = (1<<29) | (0<<25) | (2<<23);
	

	// to set SAD command (median predictor) ,last=0 (not last SAD command), MPMV=1 (use median predictor) --- we select the median predictor as a candidate
	// SRC=0 (not meaningful since MPMV=1) ,MVX and MVY (not meaningful since MPMV=1)
	// RADD=Raddr23 (reference block start address)
	pCodec->ME_command_queue0[45] = (2<<29) | (1<<27) | pCodec->Raddr23;							//	median result
	

	// to set SAD command (left neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=0 and MVY=0 (used as horizontal motion vector and vertical motion vector since SRC==0)
	// RADD=Raddr23 (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[46] = (2<<29) | pCodec->Raddr23;
	

	// to set SAD command (top neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=1 (the source is from MV buffer)
	// MVX=0 (get motion vector and reference start address from index 0 of MV buffer)
	// MVY and RADD is not used since SRC==1
	pCodec->ME_command_queue0[47] = (2<<29) | (1<<26) | (0<<19);

	// to set SAD command (top-right neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=1 (the source is from MV buffer)
	// MVX=0 (get motion vector and reference start address from index 1 of MV buffer)
	// MVY and RADD is not used since SRC==1
	pCodec->ME_command_queue0[48] = (2<<29) | (1<<26) | (1<<19);

	// to set SAD command (previous MB) ,last=1 (it's last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=(prevMB->mv16x_2 & 0x7f) and MVY=(prevMB->mv16y_2 & 0x7f) (used as horizontal motion vector and vertical motion vector since SRC==0)
	// Raddr23 + (prevMB->mv16y_2 < -16 ? ((-16>>1) * 16) : (prevMB->mv16y_2 >> 1)*16) (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[49] = (1<<28) | (2<<29) | ((prevMB->mv16x_2 & 0x7f) << 19) | ((prevMB->mv16y_2 & 0x7f) << 12) 
							| pCodec->Raddr23 + (prevMB->mv16y_2 < -16 ? ((-16>>1) * 16) : (prevMB->mv16y_2 >> 1)*16);
							

	// to set diamond command , dsize=0 (choose small diamond) , 
	// maxloop= (Diamond_search_limit << 16) , MinSADth= ThEES_4 (Threshold for minimim SAD for diamond stop)
	pCodec->ME_command_queue0[50] = (3<<29) | (Diamond_search_limit << 16) | ThEES_4;		// dsize is always small

	// to set Half-Pel-Refine command , 4MV=1 (4MV mode is used), 
	// SAD8th = 0 (1MV/4MV threshold) , MinSADth= ThEES1 (Threshold for minimim SAD for skipping Half-Pel-Refine search)
	pCodec->ME_command_queue0[51] = ((unsigned int)4<<29) | (1<<28) | ThEES1; // to add unsigned int to avoid warning ... half pixel refine
    //-------------------------------------

	// to set horizontal prediction vector,BSIZE=0 (for 4MV),BK_BUM=3 (block number 3)
	pCodec->ME_command_queue0[52] = (0<<29) | (0<<25) | (3<<23);

	// to set vertical prediction vector,BSIZE=0 (for 4MV),BK_BUM=3 (block number 3)
	pCodec->ME_command_queue0[53] = (1<<29) | (0<<25) | (3<<23);

	// to set SAD command (median predictor) ,last=0 (not last SAD command), MPMV=1 (use median predictor) --- we select the median predictor as a candidate
	// SRC=0 (not meaningful since MPMV=1) ,MVX and MVY (not meaningful since MPMV=1)
	// RADD=Raddr23 (reference block start address)
	pCodec->ME_command_queue0[54] = (2<<29) | (1<<27) | pCodec->Raddr23;							//	median result
	

	// to set SAD command (left neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=1 (the source is from MV buffer)
	// MVX=2 (get motion vector and reference start address from index 2 of MV buffer)
	// MVY and RADD is not used since SRC==1
	pCodec->ME_command_queue0[55] = (2<<29) | (1<<26) | (2<<19);

	// to set SAD command (top neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=1 (the source is from MV buffer)
	// MVX=0 (get motion vector and reference start address from index 0 of MV buffer)
	// MVY and RADD is not used since SRC==1
	pCodec->ME_command_queue0[56] = (2<<29) | (1<<26) | (0<<19);

	// to set SAD command (top-right neighbor),last=0 (not last SAD command), MPMV=0 (not use median predictor)
	// SRC=1 (the source is from MV buffer)
	// MVX=1 (get motion vector and reference start address from index 1 of MV buffer)
	// MVY and RADD is not used since SRC==1
	pCodec->ME_command_queue0[57] = (2<<29) | (1<<26) | (1<<19);

	// to set SAD command (previous MB) ,last=1 (it's last SAD command), MPMV=0 (not use median predictor)
	// SRC=0 (specify the source for motion vector MVX and MVY and RADD , use these fields defined in this command)
	// MVX=(prevMB->mv16x_3 & 0x7f) and MVY=(prevMB->mv16y_3 & 0x7f) (used as horizontal motion vector and vertical motion vector since SRC==0)
	// Raddr23 + (prevMB->mv16y_3 < -16 ? ((-16>>1) * 16) : (prevMB->mv16y_3 >> 1)*16) (start address of the first row of reference block in words since SRC==0)
	pCodec->ME_command_queue0[58] = (1<<28) | (2<<29) | ((prevMB->mv16x_3 & 0x7f) << 19) | ((prevMB->mv16y_3 & 0x7f) << 12) 
							| pCodec->Raddr23 + (prevMB->mv16y_3 < -16 ? ((-16>>1) * 16) : (prevMB->mv16y_3 >> 1)*16);

	// to set diamond command , dsize=0 (choose small diamond) , 
	// maxloop= (Diamond_search_limit << 16) , MinSADth= ThEES_4 (Threshold for minimim SAD for diamond stop)
	pCodec->ME_command_queue0[59] = (3<<29) | (Diamond_search_limit << 16) | ThEES_4;		// dsize is always small

	// to set Half-Pel-Refine command , 4MV=1 (4MV mode is used), 
	// SAD8th = 0 (1MV/4MV threshold) , MinSADth= ThEES1 (Threshold for minimim SAD for skipping Half-Pel-Refine search)
	pCodec->ME_command_queue0[60] = ((unsigned int)4<<29) | (1<<28) | ThEES1;	// to add unsigned int to avoid warning ... half pixel refine
	//----------------------------------------------------------------------------

	// to set Intra/Inter Mode Decision command , MODEN=1 (enable mode decision command), 
	// intraSADth= MV16_INTER_BIAS (threshold for intra/inter mode)
	pCodec->ME_command_queue0[61] = ((unsigned int)5<<29) | (1<<28) | MV16_INTER_BIAS; // to add unsigned int to avoid warning ... P-I switch
	

	// to set pixel interpolation command , last=0 (not last pixel interpolation command), 
	// Chroma= 0 (select Y component)
	// RADD =0 (not used since Chroma==0)
	pCodec->ME_command_queue0[62] = ((unsigned int)6<<29); // add unsigned int to avoid warning ... Y interpolation

	// to set pixel interpolation command , last=0 (not last pixel interpolation command), 
	// Chroma= 1 (select chrominance (Cb & Cr) component)
	// RADD =(((uint32_t) (REF_U + 32*8)) >> 2) (reference block start address)
	pCodec->ME_command_queue0[63] = ((unsigned int)6<<29) | (((uint32_t) (REF_U + 32*8)) >> 2) | (1<<27); // add unsigned int to avoid warning

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线播放欧美女士性生活| 色吊一区二区三区| 久久综合资源网| 精品久久久久香蕉网| 91啦中文在线观看| 99久久婷婷国产综合精品| 日韩毛片高清在线播放| 国产婷婷色一区二区三区四区| 国产一区二区三区免费播放| 日本一区二区三区在线不卡| 欧美日韩精品欧美日韩精品一| 国产69精品久久久久777| 国产精品久久久久婷婷二区次| 2020国产精品自拍| 久久精品视频免费观看| 欧美日韩国产中文| 99久久精品一区二区| 92精品国产成人观看免费| 国产黄色精品视频| 不卡视频一二三四| av男人天堂一区| 性欧美大战久久久久久久久| 国产精品区一区二区三区| 久久综合九色综合97婷婷 | 99视频在线精品| 激情文学综合网| 韩国毛片一区二区三区| 色www精品视频在线观看| 91蜜桃传媒精品久久久一区二区| 日韩黄色小视频| 国产高清成人在线| 欧美日韩第一区日日骚| 欧美一区二区视频在线观看2022| 高清国产一区二区三区| 91在线免费视频观看| 欧美日韩不卡视频| 一区二区三区高清| voyeur盗摄精品| 日韩精品一区二区三区蜜臀 | 亚洲mv大片欧洲mv大片精品| 日韩一区和二区| 中文字幕一区二区三区av| 国产精品久久久久aaaa| 亚洲黄色片在线观看| 久久99在线观看| 欧美卡1卡2卡| 久久9热精品视频| 国产成+人+日韩+欧美+亚洲| 国产在线精品视频| 欧美不卡一二三| 欧美一区二区国产| 日本视频在线一区| fc2成人免费人成在线观看播放| 精品一区二区免费视频| 色88888久久久久久影院野外| 欧美二区在线观看| 日韩高清不卡一区二区三区| 久久国产婷婷国产香蕉| 日韩午夜电影在线观看| 蜜臀va亚洲va欧美va天堂| 粉嫩aⅴ一区二区三区四区 | 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 欧美日韩在线电影| 国产馆精品极品| 一区二区欧美视频| 日韩欧美激情四射| 日韩欧美黄色影院| 亚洲视频一二三| 中文字幕一区二区三区蜜月| 欧美高清视频不卡网| 亚洲福利国产精品| 美女一区二区久久| 久久综合色综合88| 久久色在线观看| 欧美精品日韩精品| 美女视频免费一区| 国产精品久久久久影院| 亚洲综合在线视频| 精品一区二区三区免费观看| 精品88久久久久88久久久| 欧美最猛性xxxxx直播| 日本欧美肥老太交大片| 精品区一区二区| 午夜欧美大尺度福利影院在线看| 国产91精品免费| 欧美日韩精品专区| 国产伦精品一区二区三区免费迷 | 日本sm残虐另类| 国产丝袜美腿一区二区三区| 久久超级碰视频| 国产91丝袜在线观看| 久久久久久久久久电影| 久久久激情视频| 欧美一区二区福利在线| 欧美一区二区三区人| 99精品视频一区| 91丨九色丨蝌蚪丨老版| 九色综合国产一区二区三区| 成人天堂资源www在线| 大胆欧美人体老妇| 极品瑜伽女神91| 99国产精品视频免费观看| 在线一区二区三区四区五区 | 午夜亚洲福利老司机| 国产很黄免费观看久久| 亚洲欧美日韩中文字幕一区二区三区 | 国产精品国产三级国产| 亚洲欧洲日产国产综合网| 亚洲狠狠丁香婷婷综合久久久| 亚洲一区二区视频在线观看| 成人丝袜18视频在线观看| 51精品秘密在线观看| 99视频一区二区三区| 欧美日韩成人激情| 国产成人免费9x9x人网站视频| 福利电影一区二区三区| 欧美视频在线一区| 91久久精品一区二区三区| 色狠狠一区二区三区香蕉| 亚洲色图视频网站| 丝袜亚洲精品中文字幕一区| 免费黄网站欧美| 日本午夜一区二区| 亚洲一级在线观看| 性久久久久久久久| 久久久久久一二三区| 欧美日韩在线一区二区| 日韩视频免费观看高清完整版在线观看 | 在线观看免费一区| 欧美成人三级电影在线| 99久久综合99久久综合网站| 99国产精品99久久久久久| 久久亚洲综合av| 亚洲免费资源在线播放| 婷婷久久综合九色综合绿巨人| 久久成人精品无人区| 成人高清在线视频| 欧美精品亚洲二区| 久久久久久久久久久黄色| 国产精品麻豆99久久久久久| 亚洲国产欧美日韩另类综合| 亚洲18女电影在线观看| 国产精品成人免费| 亚洲成人第一页| 成人av午夜影院| 国产一区二区福利视频| 欧美日韩一本到| 亚洲成av人片一区二区梦乃| 成人av在线播放网址| 久久久99久久精品欧美| 日韩精品一级中文字幕精品视频免费观看| 亚洲.国产.中文慕字在线| 欧美日韩激情一区| 亚洲综合视频网| 欧美性三三影院| 亚洲高清免费在线| 粉嫩aⅴ一区二区三区四区| 91精品国产综合久久精品app| 久久精品视频免费| 奇米精品一区二区三区在线观看一| 懂色av噜噜一区二区三区av| 国产一区二区成人久久免费影院 | 国产欧美va欧美不卡在线 | 欧美福利视频一区| 一区二区三区日韩欧美| 福利一区福利二区| 久久久91精品国产一区二区精品| 亚洲大片一区二区三区| 99精品在线免费| 亚洲美女淫视频| 欧美亚洲一区三区| 91亚洲国产成人精品一区二区三| 99r国产精品| 日韩极品在线观看| 亚洲第一搞黄网站| 国产欧美日韩精品在线| 免费的成人av| 亚洲成人7777| 亚洲色图在线视频| 欧美在线一区二区三区| 国产河南妇女毛片精品久久久| 欧美亚日韩国产aⅴ精品中极品| 精品国产乱码久久久久久牛牛| 国产喷白浆一区二区三区| 国产+成+人+亚洲欧洲自线| 中文字幕免费不卡| 欧美视频一区在线| 天天操天天干天天综合网| 国产精品国产三级国产aⅴ入口| 蜜臀99久久精品久久久久久软件| 欧洲国内综合视频| 97久久人人超碰| 九九精品一区二区| 日本视频中文字幕一区二区三区 | 成人av电影在线网| 国产电影一区二区三区| 激情欧美一区二区| 男女激情视频一区| 欧美婷婷六月丁香综合色| 日本中文字幕一区二区有限公司|