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

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

?? sp_enc.cpp

?? 實現了錄音,放音功能!在evc4.0下編譯功過,wince5.0下能正常錄音,放音,暫停錄放音!
?? CPP
?? 第 1 頁 / 共 5 頁
字號:
* Parameters:
*    mode              I: AMR mode
*    past_rq           B: past quantized residual
*    lsp1              I: 1st LSP vector
*    lsp1_q            O: quantized 1st LSP vector
*    indice            I: quantization indices of 5 matrices and
*                         one sign for 3rd
*    pred_init_i       O: init index for MA prediction in DTX mode
*
* Function:
*    Quantization of LSF parameters with 1st order MA prediction and
*    split by 3 vector quantization (split-VQ)
*
* Returns:
*    void
*/
static void Q_plsf_3( enum Mode mode, float *past_rq, float *lsp1, 
					 float *lsp1_q, INT16 *indice, INT32 *pred_init_i )
{
	float lsf1[LP_ORDER], wf1[LP_ORDER], lsf_p[LP_ORDER], lsf_r1[LP_ORDER];
	float lsf1_q[LP_ORDER];
	float pred_init_err;
	float min_pred_init_err;
	float temp_r1[LP_ORDER];
	float temp_p[LP_ORDER];
	INT32 j, i;
	
	
	/* convert LSFs to normalize frequency domain */
	Lsp_lsf( lsp1, lsf1 );
	
	/* compute LSF weighting factors */
	Lsf_wt( lsf1, wf1 );
	
	/* Compute predicted LSF and prediction error */
	if ( mode != MRDTX ) 
	{
		for ( i = 0; i < LP_ORDER; i++ ) 
		{
			lsf_p[i] = mean_lsf_3[i] + past_rq[i] * pred_fac[i];
			lsf_r1[i] = lsf1[i] - lsf_p[i];
		}
	}
	else 
	{
	/*
	* DTX mode, search the init vector that yields
	* lowest prediction resuidual energy
		*/
		*pred_init_i = 0;
		min_pred_init_err = FLT_MAX;
		
		for ( j = 0; j < PAST_RQ_INIT_SIZE; j++ ) 
		{
			pred_init_err = 0;
			
			for ( i = 0; i < LP_ORDER; i++ ) 
			{
				temp_p[i] = mean_lsf_3[i] + past_rq_init[j * LP_ORDER + i];
				temp_r1[i] = lsf1[i] - temp_p[i];
				pred_init_err += temp_r1[i] * temp_r1[i];
			}   /* next i */
			
			if ( pred_init_err < min_pred_init_err )
			{
				min_pred_init_err = pred_init_err;
				memcpy( lsf_r1, temp_r1, LP_ORDER <<2 );
				memcpy( lsf_p, temp_p, LP_ORDER <<2 );
				memcpy( past_rq, &past_rq_init[j * LP_ORDER], LP_ORDER <<2 );
				*pred_init_i = j;
			}
		}
	}
	
	/* Split-VQ of prediction error */
	/* MR475, MR515 */
	if ( ( mode == MR475 ) || ( mode == MR515 ) ) 
	{
		indice[0] = Vq_subvec3( &lsf_r1[0], dico1_lsf_3, &wf1[0], DICO1_SIZE_3, 0 );
		indice[1] = Vq_subvec3( &lsf_r1[3], dico2_lsf_3, &wf1[3], DICO2_SIZE_3 /2, 1 );
		indice[2] = Vq_subvec4( &lsf_r1[6], mr515_3_lsf, &wf1[6], MR515_3_SIZE );
	}
	
	/* MR795 */
	else if ( mode == MR795 ) 
	{
		indice[0] = Vq_subvec3( &lsf_r1[0], mr795_1_lsf, &wf1[0], MR795_1_SIZE, 0 );
		indice[1] = Vq_subvec3( &lsf_r1[3], dico2_lsf_3, &wf1[3], DICO2_SIZE_3, 0 );
		indice[2] = Vq_subvec4( &lsf_r1[6], dico3_lsf_3, &wf1[6], DICO3_SIZE_3 );
	}
	
	/* MR59, MR67, MR74, MR102 , MRDTX */
	else
	{
		indice[0] = Vq_subvec3( &lsf_r1[0], dico1_lsf_3, &wf1[0], DICO1_SIZE_3, 0 );
		indice[1] = Vq_subvec3( &lsf_r1[3], dico2_lsf_3, &wf1[3], DICO2_SIZE_3, 0 );
		indice[2] = Vq_subvec4( &lsf_r1[6], dico3_lsf_3, &wf1[6], DICO3_SIZE_3 );
	}
	
	/* Compute quantized LSFs and update the past quantized residual */
	for ( i = 0; i < LP_ORDER; i++ )
	{
		lsf1_q[i] = lsf_r1[i] + lsf_p[i];
		past_rq[i] = lsf_r1[i];
	}
	
	/* verification that LSFs has mimimum distance of LSF_GAP 50 Hz */
	Reorder_lsf( lsf1_q, 50.0F );
	
	/*  convert LSFs to the cosine domain */
	Lsf_lsp( lsf1_q, lsp1_q );
}


/*
* Q_plsf_5
*
*
* Parameters:
*    past_rq           B: past quantized residual
*    lsp1              I: 1st LSP vector
*    lsp2              I: 2nd LSP vector
*    lsp1_q            O: quantized 1st LSP vector
*    lsp2_q            O: quantized 2nd LSP vector
*    indice	         I: quantization indices of 5 matrices and
*                         one sign for 3rd
*
* Function:
*    Quantization of 2 sets of LSF parameters using 1st order MA
*    prediction and split by 5 matrix quantization (split-MQ).
*
* Returns:
*    void
*/
static void Q_plsf_5( float *past_rq, float *lsp1, float *lsp2, 
					 float *lsp1_q, float *lsp2_q, INT16 *indice )
{
	float lsf1[LP_ORDER], lsf2[LP_ORDER], wf1[LP_ORDER], wf2[LP_ORDER], lsf_p[LP_ORDER], lsf_r1[LP_ORDER], lsf_r2[LP_ORDER];
	float lsf1_q[LP_ORDER], lsf2_q[LP_ORDER];
	INT32 i;
	
	
	/* convert LSFs to normalize frequency domain */
	Lsp_lsf( lsp1, lsf1 );
	Lsp_lsf( lsp2, lsf2 );
	
	/* Compute LSF weighting factors */
	Lsf_wt( lsf1, wf1 );
	Lsf_wt( lsf2, wf2 );
	
	/* Compute predicted LSF and prediction error */
	for ( i = 0; i < LP_ORDER; i++ )
	{
		/* MR122 LSP prediction factor = 0.65 */
		lsf_p[i] = mean_lsf_5[i] + past_rq[i] * 0.65F;
		lsf_r1[i] = lsf1[i] - lsf_p[i];
		lsf_r2[i] = lsf2[i] - lsf_p[i];
	}
	
	/* Split-MQ of prediction error */
	indice[0] = Vq_subvec( &lsf_r1[0], &lsf_r2[0], dico1_lsf_5, &wf1[0], &wf2[0], DICO1_SIZE_5 );
	indice[1] = Vq_subvec( &lsf_r1[2], &lsf_r2[2], dico2_lsf_5, &wf1[2], &wf2[2], DICO2_SIZE_5 );
	indice[2] = Vq_subvec_s( &lsf_r1[4], &lsf_r2[4], dico3_lsf_5, &wf1[4], &wf2[4], DICO3_SIZE_5 );
	indice[3] = Vq_subvec( &lsf_r1[6], &lsf_r2[6], dico4_lsf_5, &wf1[6], &wf2[6], DICO4_SIZE_5 );
	indice[4] = Vq_subvec( &lsf_r1[8], &lsf_r2[8], dico5_lsf_5, &wf1[8], &wf2[8], DICO5_SIZE_5 );
	
	/* Compute quantized LSFs and update the past quantized residual */
	for ( i = 0; i < LP_ORDER; i++ ) 
	{
		lsf1_q[i] = lsf_r1[i] + lsf_p[i];
		lsf2_q[i] = lsf_r2[i] + lsf_p[i];
		past_rq[i] = lsf_r2[i];
	}
	
	/* verification that LSFs has minimum distance of LSF_GAP 50hz */
	Reorder_lsf( lsf1_q, 50.0F );
	Reorder_lsf( lsf2_q, 50.0F );
	
	/*  convert LSFs to the cosine domain */
	Lsf_lsp( lsf1_q, lsp1_q );
	Lsf_lsp( lsf2_q, lsp2_q );
}


/*
* Int_lpc_1and3
*
*
* Parameters:
*    lsp_old        I: LSP vector at the 4th subfr. of past frame      [LP_ORDER]
*    lsp_mid        I: LSP vector at the 2nd subframe of present frame [LP_ORDER]
*    lsp_new        I: LSP vector at the 4th subframe of present frame [LP_ORDER]
*    az             O: interpolated LP parameters in subframes 1 and 3
*                                                                [AZ_SIZE]
*
* Function:
*    Interpolates the LSPs and converts to LPC parameters
*    to get a different LP filter in each subframe.
*
*    The 20 ms speech frame is divided into 4 subframes.
*    The LSPs are quantized and transmitted at the 2nd and
*    4th subframes (twice per frame) and interpolated at the
*    1st and 3rd subframe.
*
* Returns:
*    void
*/
static void Int_lpc_1and3( float lsp_old[], float lsp_mid[], float lsp_new[], float az[] )
{
	INT32 i;
	float lsp[LP_ORDER];
	
	
	for ( i = 0; i < LP_ORDER; i++ )
	{
		lsp[i] = ( lsp_mid[i] + lsp_old[i] ) * 0.5F;
	}
	
	/* Subframe 1 */
	Lsp_Az( lsp, az );
	az += LP_ORDER_PLUS;
	
	/* Subframe 2 */
	Lsp_Az( lsp_mid, az );
	az += LP_ORDER_PLUS;
	
	for ( i = 0; i < LP_ORDER; i++ )
	{
		lsp[i] = ( lsp_mid[i] + lsp_new[i] ) * 0.5F;
	}
	
	/* Subframe 3 */
	Lsp_Az( lsp, az );
	az += LP_ORDER_PLUS;
	
	/* Subframe 4 */
	Lsp_Az( lsp_new, az );
	return;
}


/*
* Int_lpc_1to3_2
*
*
* Parameters:
*    lsp_old           I: LSP vector at the 4th subfr. of past frame      [LP_ORDER]
*    lsp_new           I: LSP vector at the 4th subframe of present frame [LP_ORDER]
*    az                O: interpolated LP parameters in subframes 1, 2 and 3
*                                                                   [AZ_SIZE]
*
* Function:
*    Interpolation of the LPC parameters.
*
* Returns:
*    void
*/
static void Int_lpc_1to3_2( float lsp_old[], float lsp_new[], float az[] )
{
	float lsp[LP_ORDER];
	INT32 i;
	
	
	for ( i = 0; i < LP_ORDER; i += 2 ) 
	{
		lsp[i] = lsp_new[i] * 0.25F + lsp_old[i] * 0.75F;
		lsp[i + 1] = lsp_new[i + 1] *0.25F + lsp_old[i + 1] *0.75F;
	}
	
	/* Subframe 1 */
	Lsp_Az( lsp, az );
	az += LP_ORDER_PLUS;
	
	for ( i = 0; i < LP_ORDER; i += 2 )
	{
		lsp[i] = ( lsp_old[i] + lsp_new[i] ) * 0.5F;
		lsp[i + 1] = ( lsp_old[i + 1] +lsp_new[i+1] )*0.5F;
	}
	
	/* Subframe 2 */
	Lsp_Az( lsp, az );
	az += LP_ORDER_PLUS;
	
	for ( i = 0; i < LP_ORDER; i += 2 ) 
	{
		lsp[i] = lsp_old[i] * 0.25F + lsp_new[i] * 0.75F;
		lsp[i + 1] = lsp_old[i + 1] *0.25F + lsp_new[i + 1] *0.75F;
	}
	
	/* Subframe 3 */
	Lsp_Az( lsp, az );
	return;
}


/*
* Int_lpc_1to3
*
*
* Parameters:
*    lsp_old           I: LSP vector at the 4th subfr. of past frame      [LP_ORDER]
*    lsp_new           I: LSP vector at the 4th subframe of present frame [LP_ORDER]
*    az                O: interpolated LP parameters in all subframes
*                                                                   [AZ_SIZE]
*
* Function:
*    Interpolates the LSPs and converts to LPC parameters to get a different
*    LP filter in each subframe.
*
*    The 20 ms speech frame is divided into 4 subframes.
*    The LSPs are quantized and transmitted at the 4th
*    subframes (once per frame) and interpolated at the
*    1st, 2nd and 3rd subframe.
*
* Returns:
*    void
*/
static void Int_lpc_1to3( float lsp_old[], float lsp_new[], float az[] )
{
	float lsp[LP_ORDER];
	INT32 i;
	
	
	for ( i = 0; i < LP_ORDER; i++ )
	{
		lsp[i] = lsp_new[i] * 0.25F + lsp_old[i] * 0.75F;
	}
	
	/* Subframe 1 */
	Lsp_Az( lsp, az );
	az += LP_ORDER_PLUS;
	
	for ( i = 0; i < LP_ORDER; i++ )
	{
		lsp[i] = ( lsp_old[i] + lsp_new[i] ) * 0.5F;
	}
	
	/* Subframe 2 */
	Lsp_Az( lsp, az );
	az += LP_ORDER_PLUS;
	
	for ( i = 0; i < LP_ORDER; i++ )
	{
		lsp[i] = lsp_old[i] * 0.25F + lsp_new[i] * 0.75F;
	}
	
	/* Subframe 3 */
	Lsp_Az( lsp, az );
	az += LP_ORDER_PLUS;
	
	/* Subframe 4 */
	Lsp_Az( lsp_new, az );
	return;
}


/*
* lsp
*
*
* Parameters:
*    req_mode          I: requested mode
*    used_mode         I: used mode
*    lsp_old           B: old LSP vector
*    lsp_old_q         B: old quantized LSP vector
*    past_rq           B: past quantized residual
*    az                B: interpolated LP parameters
*    azQ               O: quantization interpol. LP parameters
*    lsp_new           O: new lsp vector
*    anap              O: analysis parameters
*
* Function:
*    From A(z) to lsp. LSP quantization and interpolation
*
* Returns:
*    void
*/
static void lsp( enum Mode req_mode, enum Mode used_mode, float *lsp_old, float *lsp_old_q, 
				float *past_rq, float az[], float azQ[], float lsp_new[], INT16 **anap )
{
	float lsp_new_q[LP_ORDER];   /* LSPs at 4th subframe */
	float lsp_mid[LP_ORDER], lsp_mid_q[LP_ORDER];   /* LSPs at 2nd subframe */
	INT32 pred_init_i;   /* init index for MA prediction in DTX mode */
	
	
	if ( req_mode == MR122 )
	{
		Az_lsp( &az[LP_ORDER_PLUS], lsp_mid, lsp_old );
		Az_lsp( &az[LP_ORDER_PLUS * 3], lsp_new, lsp_mid );
		
		/*
		* Find interpolated LPC parameters in all subframes
		* (both quantized and unquantized).
		* The interpolated parameters are in array A_t[] of size (LP_ORDER+1)*4
		* and the quantized interpolated parameters are in array Aq_t[]
		*/
		Int_lpc_1and3_2( lsp_old, lsp_mid, lsp_new, az );
		
		if ( used_mode != MRDTX ) 
		{
			/* LSP quantization (lsp_mid[] and lsp_new[] jointly quantized) */
			Q_plsf_5( past_rq, lsp_mid, lsp_new, lsp_mid_q, lsp_new_q, *anap );
			Int_lpc_1and3( lsp_old_q, lsp_mid_q, lsp_new_q, azQ );
			
			/* Advance analysis parameters pointer */
			( *anap ) += 5;
		}
	}
	else
	{
		/* From A(z) to lsp */
		Az_lsp( &az[LP_ORDER_PLUS * 3], lsp_new, lsp_old );
		
		/*
		* Find interpolated LPC parameters in all subframes
		* (both quantized and unquantized).
		* The interpolated parameters are in array A_t[] of size (LP_ORDER+1)*4
		* and the quantized interpolated parameters are in array Aq_t[]
		*/
		Int_lpc_1to3_2( lsp_old, lsp_new, az );
		
		/* LSP quantization */
		if ( used_mode != MRDTX )
		{
			Q_plsf_3( req_mode, past_rq, lsp_new, lsp_new_q, *anap, &pred_init_i );
			Int_lpc_1to3( lsp_old_q, lsp_new_q, azQ );
			
			/* Advance analysis parameters pointer */
			( *anap ) += 3;
		}
	}
	
	/* update the LSPs for the next frame */
	memcpy( lsp_old, lsp_new, LP_ORDER <<2 );
	memcpy( lsp_old_q, lsp_new_q, LP_ORDER <<2 );
}


/*
* check_lsp
*
*
* Parameters:
*    count          B: counter for resonance
*    lsp            B: LSP vector
*
* Function:
*    Check the LSP's to detect resonances
*
*    Resonances in the LPC filter are monitored to detect possible problem
*    areas where divergence between the adaptive codebook memories in
*    the encoder and the decoder could cause unstable filters in areas
*    with highly correlated continuos signals. Typically, this divergence
*    is due to channel errors.
*    The monitoring of resonance signals is performed using unquantized LSPs
*    q(i), i = 1,...,10. The algorithm utilises the fact that LSPs are
*    closely located at a peak in the spectrum. First, two distances,
*    dist 1 and dist 2 ,are calculated in two different regions,
*    defined as
*
*    dist1 = min[q(i) - q(i + 1)],  i = 4,...,8
*    dist2 = min[q(i) - q(i + 1)],  i = 2,3
*
*    Either of these two minimum distance conditions must be fulfilled
*    to classify the frame as a resonance frame and increase the resonance
*    counter.
*
*    if(dist1 < TH1) || if (dist2 < TH2)
*       counter++
*    else
*       counter = 0
*
*    TH1 = 0.046
*    TH2 = 0.018, q(2) > 0.98
*    TH2 = 0.024, 0.93 < q(2) <= 0.98
*    TH2 = 0.018, otherwise
*
*    12 consecutive resonance frames are needed to indicate possible
*    problem conditions, otherwise the LSP_flag is cleared.
*
* Returns:
*    resonance flag
*/
static INT16 check_lsp( INT16 *count, float *lsp )
{
	float dist, dist_min1, dist_min2, dist_th;
	INT32 i;
	
	
	/*
    * Check for a resonance:
    * Find minimum distance between lsp[i] and lsp[i+1]
    */
	dist_min1 = FLT_MAX;
	
	for ( i = 3; i < 8; i++ )
	{
		dist = lsp[i] - lsp[i + 1];
		
		if ( dist < dist_min1 ) 
		{
			dist_min1 = dist;
		}
	}
	dist_min2 = FLT_MAX;
	
	for ( i = 1; i < 3; i++ ) 
	{
		dist = lsp[i] - lsp[i + 1];
		
		if ( dist < dist_min2 ) 
		{
			dist_min2 = dist;
		}
	}
	
	if ( lsp[1] > 0.98F )
	{
		dist_th = 0.018F;
	}
	else if ( lsp[1] > 0.93F ) 
	{
		dist_th = 0.024F;
	}
	else
	{
		dist_th = 0.034F;
	}
	
	if ( ( dist_min1 < 0.046F ) || ( dist_min2 < dist_th ) )
	{
		*count += 1;
	}
	else
	{
		*count = 0;
	}
	
	/* Need 12 consecutive frames to set the flag */
	if ( *count >= 12 ) 
	{
		*count = 12;
		return 1;
	}
	else
	{
		return 0;
	}
}


/*
* Weight_Ai
*
*
* Parameters:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91麻豆精品国产91久久久久久久久| 久久精品人人做人人爽人人| 日韩午夜小视频| 国产精品久久久久久一区二区三区| 爽好久久久欧美精品| 白白色 亚洲乱淫| 久久一区二区三区四区| 亚洲成人久久影院| 色综合久久久久综合| 国产片一区二区三区| 青椒成人免费视频| 欧美日韩大陆在线| 亚洲国产精品一区二区久久 | 欧美色综合网站| 91在线码无精品| 精品电影一区二区| 日本在线不卡一区| 欧美精品久久久久久久多人混战| 国产精品毛片大码女人| 国产伦理精品不卡| 久久一夜天堂av一区二区三区| 五月激情六月综合| 欧美酷刑日本凌虐凌虐| 亚洲国产日韩综合久久精品| 91在线观看视频| 亚洲婷婷在线视频| 99国产精品久久久久| 中文字幕中文字幕在线一区 | 国产视频在线观看一区二区三区 | 欧美日韩精品一区视频| 天天操天天综合网| 精品视频在线视频| 日韩电影在线看| 制服丝袜亚洲色图| 久久精品国产免费| 久久久久97国产精华液好用吗| 免费在线观看不卡| 精品三级在线观看| 成人免费三级在线| 亚洲一区二区av在线| 在线精品视频一区二区三四| 一区二区三区国产| 91精品婷婷国产综合久久竹菊| 婷婷开心激情综合| 欧美一级日韩不卡播放免费| 免费三级欧美电影| 国产三级一区二区三区| 99久久综合色| 午夜av一区二区三区| 日韩一区二区三区电影在线观看| 国产尤物一区二区在线| 中文字幕一区在线观看| 欧美日韩国产综合久久| 激情欧美日韩一区二区| 国产精品不卡在线观看| 欧美高清视频一二三区| 国产精品资源在线观看| 亚洲日本一区二区| 日韩视频永久免费| 成人午夜大片免费观看| 亚洲国产日产av| 国产丝袜欧美中文另类| 在线看不卡av| 国产精品一区一区三区| 亚洲综合免费观看高清完整版在线 | 六月婷婷色综合| 国产精品伦一区| 91麻豆精品国产91久久久资源速度| 激情综合网激情| 亚洲欧美日韩一区| 日韩欧美中文字幕一区| av成人免费在线| 精品午夜一区二区三区在线观看| 中文字幕中文在线不卡住| 欧美三级日韩三级| 成人免费视频视频| 九九视频精品免费| 午夜在线电影亚洲一区| 国产视频一区在线观看| 91精品国产综合久久福利软件| eeuss鲁一区二区三区| 日本大胆欧美人术艺术动态| 中文字幕亚洲在| 国产日产欧美一区二区三区| 91麻豆精品国产91久久久更新时间 | 国产mv日韩mv欧美| 日本成人在线不卡视频| 中文字幕一区视频| 日本一区二区视频在线| 欧美精品久久99久久在免费线| 97se亚洲国产综合在线| 国产剧情一区二区| 久久99精品视频| 视频一区视频二区在线观看| 亚洲欧美日韩久久| 国产精品久久久久aaaa| 久久综合久久鬼色| 久久一二三国产| 精品免费日韩av| 欧美一区二区久久久| 在线观看网站黄不卡| 91免费精品国自产拍在线不卡| 成人不卡免费av| 国产精品免费人成网站| 久久影院视频免费| 日本黄色一区二区| 免费精品视频最新在线| 国产精品久久久久婷婷二区次| 最新国产成人在线观看| 精品国产乱码久久久久久浪潮 | 一本到不卡精品视频在线观看| 国产乱码精品一区二区三区av| 久久国产尿小便嘘嘘尿| 久久av资源网| 国产一区啦啦啦在线观看| 国产中文字幕一区| 国产成人精品www牛牛影视| 国产一区啦啦啦在线观看| 国产福利一区二区三区视频在线 | 日韩理论电影院| 亚洲激情图片一区| 亚洲综合一区在线| 亚洲天堂av老司机| 欧美不卡一区二区三区| 国产精品中文字幕欧美| 欧美精品一区二区高清在线观看| 7777精品伊人久久久大香线蕉超级流畅| 欧美又粗又大又爽| 9191久久久久久久久久久| 在线成人免费观看| 精品福利一区二区三区| 国产日本欧美一区二区| 亚洲色图清纯唯美| 日本午夜一本久久久综合| 久久精品999| thepron国产精品| 欧美日韩成人在线| 26uuu国产电影一区二区| 国产亚洲欧美日韩在线一区| 国产精品成人一区二区三区夜夜夜| 一区二区三区 在线观看视频 | 成+人+亚洲+综合天堂| 不卡欧美aaaaa| 在线视频一区二区三区| 精品日韩欧美在线| 亚洲免费伊人电影| 另类调教123区| 91麻豆国产香蕉久久精品| 欧美一区二区观看视频| 国产亚洲一区字幕| 亚洲成在人线免费| 成人av电影免费在线播放| 欧美专区日韩专区| 久久综合九色欧美综合狠狠| ●精品国产综合乱码久久久久| 日韩av在线发布| av网站免费线看精品| 欧美伦理视频网站| 国产精品色眯眯| 人人超碰91尤物精品国产| 99久久精品免费| 精品国产乱码久久久久久免费| 一区二区三区精品视频在线| 韩国精品主播一区二区在线观看 | 91精品蜜臀在线一区尤物| 国产欧美综合色| 强制捆绑调教一区二区| 91在线视频在线| 欧美美女视频在线观看| 成人精品视频一区| 欧美另类高清zo欧美| 国产女人水真多18毛片18精品视频| 亚洲午夜电影在线| 色悠悠亚洲一区二区| 精品国产123| 久久国产精品免费| 欧美肥妇bbw| 亚洲制服丝袜在线| 91婷婷韩国欧美一区二区| 久久你懂得1024| 国产一区二区三区久久悠悠色av| 在线播放91灌醉迷j高跟美女| 亚洲色图制服诱惑| 99视频国产精品| 国产精品成人免费精品自在线观看| 国产在线视频不卡二| 欧美高清一级片在线| 亚洲大片一区二区三区| 色视频一区二区| 亚洲精选视频在线| 色综合天天综合色综合av| 国产精品久线观看视频| 国产高清久久久| 欧美激情在线看| 狠狠色狠狠色综合系列| 婷婷丁香久久五月婷婷| 中文字幕一区二区三区不卡在线| 91精品国产综合久久久久| 日韩不卡一二三区| 亚洲午夜在线观看视频在线|