亚洲欧美第一页_禁久久精品乱码_粉嫩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网上在线视频| 国产精品网站一区| 亚洲欧美日本在线| 国产一区二区三区免费看| 51精品久久久久久久蜜臀| 一片黄亚洲嫩模| 日本道精品一区二区三区| 国产精品女人毛片| 国产精品888| 国产亚洲精品7777| 国产69精品久久777的优势| 久久亚洲精华国产精华液| 美日韩黄色大片| 久久亚洲欧美国产精品乐播| 久久精品久久99精品久久| 精品国精品国产尤物美女| 蜜桃一区二区三区在线观看| 69久久夜色精品国产69蝌蚪网| 一级精品视频在线观看宜春院 | 亚洲一卡二卡三卡四卡五卡| 91丨porny丨户外露出| 亚洲综合男人的天堂| 一本到不卡精品视频在线观看| 亚洲综合色区另类av| 欧美一区二区三区婷婷月色| 国产一区二区影院| 亚洲欧美色综合| 欧美一级久久久| 从欧美一区二区三区| 亚洲一区视频在线观看视频| 欧美一区午夜视频在线观看| 懂色av一区二区三区蜜臀| 一区二区三区欧美久久| 26uuu国产电影一区二区| 一本大道av一区二区在线播放 | 五月天亚洲精品| 中文字幕av不卡| 欧美日韩不卡一区| 91一区二区三区在线观看| 日韩av在线播放中文字幕| 国产女同性恋一区二区| 日韩亚洲欧美一区| 91美女片黄在线| 国产成人免费视频精品含羞草妖精| 一区二区三区精品在线| 久久久国产一区二区三区四区小说 | 国产亚洲欧美日韩日本| 91麻豆精品国产91久久久久| 成人午夜视频网站| 国产乱国产乱300精品| 久久超碰97中文字幕| 婷婷亚洲久悠悠色悠在线播放| 一区二区三区在线看| 中文字幕一区二区三区不卡在线| 久久蜜臀精品av| 日本一区二区免费在线| 国产亚洲一二三区| 欧美国产精品久久| 国产三级三级三级精品8ⅰ区| 亚洲精品一区二区三区精华液 | www.亚洲激情.com| 99久久精品国产导航| 91在线播放网址| 色吧成人激情小说| 日韩免费一区二区三区在线播放| 日韩片之四级片| 在线播放视频一区| 欧美一区二区观看视频| 欧美精品一区二区在线观看| 欧美r级电影在线观看| 国产免费久久精品| 夜夜嗨av一区二区三区中文字幕| 性做久久久久久免费观看欧美| 婷婷久久综合九色综合伊人色| 免费精品视频在线| 国产馆精品极品| 在线精品亚洲一区二区不卡| 欧美欧美欧美欧美首页| 久久亚洲免费视频| 午夜精品aaa| 九色综合国产一区二区三区| fc2成人免费人成在线观看播放| 色视频欧美一区二区三区| 日韩欧美中文一区二区| 国产午夜亚洲精品理论片色戒| 夜夜嗨av一区二区三区四季av| 国产一区二区不卡在线| 欧美亚洲国产bt| 国产精品久久久久久久久搜平片| 日韩福利电影在线观看| 在线视频亚洲一区| 欧美激情一区二区三区蜜桃视频 | 丝袜亚洲精品中文字幕一区| 国产精品99久久不卡二区| 欧美日韩成人高清| 亚洲福中文字幕伊人影院| av午夜一区麻豆| 国产精品三级久久久久三级| 国内外成人在线视频| 日韩一区二区电影网| 秋霞影院一区二区| 日韩一区二区视频| 久久精品国产亚洲一区二区三区| 欧美三级韩国三级日本一级| 亚洲自拍偷拍综合| 在线欧美一区二区| 亚洲成av人片一区二区梦乃| 欧美在线播放高清精品| 伊人色综合久久天天| 色丁香久综合在线久综合在线观看| 国产精品午夜在线观看| 成人午夜短视频| 国产精品久久看| 欧美午夜电影网| 日韩va欧美va亚洲va久久| 2021国产精品久久精品| 国产精品1024久久| 亚洲激情第一区| 日韩精品中文字幕在线不卡尤物 | 色美美综合视频| 日韩不卡在线观看日韩不卡视频| 日韩欧美成人一区二区| 懂色av一区二区三区蜜臀| 亚洲国产日韩a在线播放| 日韩一二在线观看| 成人性视频免费网站| 亚洲国产aⅴ成人精品无吗| 久久综合成人精品亚洲另类欧美| 高清国产一区二区| 日本人妖一区二区| 国产欧美一区二区三区网站 | 国产精品麻豆欧美日韩ww| 欧美日韩欧美一区二区| 高清久久久久久| 久久99久久99精品免视看婷婷| 亚洲私人黄色宅男| 久久久精品综合| 日韩欧美一级精品久久| 91福利视频在线| 99v久久综合狠狠综合久久| 精品影视av免费| 国产欧美一区二区精品仙草咪| 欧美特级限制片免费在线观看| 捆绑紧缚一区二区三区视频| 亚洲人成在线观看一区二区| 国产成人午夜精品5599| 欧美亚洲动漫另类| 国产精品国产三级国产aⅴ中文| 成人黄色大片在线观看| 亚洲欧美一区二区久久| 亚洲欧美在线视频观看| 日本一区二区三区视频视频| 久久亚洲精华国产精华液 | 另类的小说在线视频另类成人小视频在线| 成人免费高清视频在线观看| 韩国成人精品a∨在线观看| 老司机精品视频一区二区三区| 亚洲超碰97人人做人人爱| 日韩不卡手机在线v区| 久久精品国产澳门| 日本不卡在线视频| 精品亚洲免费视频| 国产另类ts人妖一区二区| 成人高清免费观看| 色哟哟国产精品| 在线成人av网站| 2021中文字幕一区亚洲| 国产午夜精品久久久久久久| 国产精品久久久久一区二区三区 | 成人性生交大片免费看视频在线| 国产69精品久久777的优势| 在线国产电影不卡| 日韩精品最新网址| 亚洲欧美激情小说另类| 午夜精品久久久久久不卡8050 | 亚洲尤物视频在线| 国产在线精品一区二区三区不卡| 成人av在线网| 欧美一级生活片| 亚洲一区二区三区在线看| 蜜桃视频一区二区三区| 91激情五月电影| 国产日韩精品一区二区三区在线| 亚洲成人激情av| 北岛玲一区二区三区四区| 日韩视频123| 天天av天天翘天天综合网| www.欧美亚洲| 中文字幕精品综合| 韩日精品视频一区| 欧美成人高清电影在线| 夜夜嗨av一区二区三区网页| www.99精品| 综合色中文字幕| 波多野结衣91| 亚洲视频电影在线| 色综合天天综合网国产成人综合天 | 色综合中文字幕国产 | 狠狠色丁香九九婷婷综合五月| 欧美日韩激情在线|