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

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

?? uscec_int.c

?? G.711,G.723.1,G.726,G.729,GSM CODEC C/C++ code
?? C
字號:
/*/////////////////////////////////////////////////////////////////////////////
//
//                  INTEL CORPORATION PROPRIETARY INFORMATION
//     This software is supplied under the terms of a license agreement or
//     nondisclosure agreement with Intel Corporation and may not be copied
//     or disclosed except in accordance with the terms of that agreement.
//          Copyright(c) 2005 Intel Corporation. All Rights Reserved.
//
//     Intel(R) Integrated Performance Primitives
//     USC - Unified Speech Codec interface library
//
// By downloading and installing USC codec, you hereby agree that the
// accompanying Materials are being provided to you under the terms and
// conditions of the End User License Agreement for the Intel(R) Integrated
// Performance Primitives product previously accepted by you. Please refer
// to the file ipplic.htm located in the root directory of your Intel(R) IPP
// product installation for more information.
//
//
//
// Purpose: Echo Canceller [float point]: USC funtions.
//
*/

#include "ipps.h"
#include "ippsc.h"
#include "ec_api_int.h"
#include <string.h>
#include "ecusc_int.h"

#define  SUBBAND_FRAME_SIZE    64
#define  FULLBAND_FRAME_SIZE    8
#define  FASTSBBAND_FRAME_SIZE 44
#define  SB_MAX_LEN_TAIL      200
#define  FB_MAX_LEN_TAIL       16
#define  FREQ_SHIFT_EC         10
#define  MAX_BLOCK_SIZE       128

static USC_Status GetInfo(USC_Handle handle, USC_EC_Info *pInfo);
static USC_Status NumAlloc(const USC_EC_Option *options, int *nbanks);
static USC_Status MemAlloc(const USC_EC_Option *options, USC_MemBank *pBanks);
static USC_Status Init(const USC_EC_Option *options, const USC_MemBank *pBanks, USC_Handle *handle);
static USC_Status Reinit(const USC_EC_Modes *modes, USC_Handle handle );
static USC_Status Control(const USC_EC_Modes *modes, USC_Handle handle );
static USC_Status CancelEcho(USC_Handle handle, short *pSin, short *pRin, short *pSout);

/*************** Don`t edit this structure *************/
typedef struct {
   ec_GetFrameSizeI_ptr ec_GetFrameSize;
   ec_GetSizeI_ptr ec_GetSize;
   ec_InitI_ptr ec_Init;
   ec_ModeOpI_ptr ec_ModeOp;
   ec_GetSendPathDelayI_ptr ec_GetSendPathDelay;
   ec_ProcessFrameI_ptr ec_ProcessFrame;
} ecint_fun;
/****************************************************/

/************** Don`t edit this structure **************/
typedef struct {
   USC_EC_Algs   algType;
   USC_PCMType   pcmType;
   int           echotail;
   USC_AdaptType adapt;
   int           zeroCoeff;
   int           nlp;
   int           td;
   ecint_fun     fun;
} ECINT_Handle_Header;
/*****************************************************/

/* global usc vector table */
USCFUN USC_EC_Fxns USC_ECINT_Fxns=
{
    {
        USC_AEC,
        GetInfo,
        NumAlloc,
        MemAlloc,
        Init,
        Reinit,
        Control
    },
    CancelEcho

};


static USC_Status GetInfo(USC_Handle handle, USC_EC_Info *pInfo)
{
    ECINT_Handle_Header *ecint_header;

    pInfo->name = "EchoCanceller_INT";
    if (handle == NULL) {
      pInfo->framesize = SUBBAND_FRAME_SIZE*sizeof(short);
      pInfo->params.algType = EC_SUBBAND;
      pInfo->params.pcmType.sample_frequency = 8000;
      pInfo->params.pcmType.bitPerSample = 16;
      pInfo->params.echotail = 16;
      pInfo->params.modes.adapt = AD_FULLADAPT;
      pInfo->params.modes.zeroCoeff = 0;
      pInfo->params.modes.nlp = 0;
      pInfo->params.modes.td = 1;
    } else {
      ecint_header = (ECINT_Handle_Header*)handle;
      if(ecint_header->algType == EC_SUBBAND) {
        pInfo->params.algType = EC_SUBBAND;
        pInfo->framesize = SUBBAND_FRAME_SIZE*sizeof(short);
      } else if(ecint_header->algType == EC_FULLBAND) {
        pInfo->params.algType = EC_FULLBAND;
        pInfo->framesize = FULLBAND_FRAME_SIZE*sizeof(short);
      } else {
        pInfo->params.algType = EC_FASTSUBBAND;
        pInfo->framesize = FASTSBBAND_FRAME_SIZE*sizeof(short);
      }
      pInfo->params.pcmType.sample_frequency = ecint_header->pcmType.sample_frequency;
      pInfo->params.pcmType.bitPerSample = ecint_header->pcmType.bitPerSample;
      pInfo->params.echotail = ecint_header->echotail;
      pInfo->params.modes.adapt = ecint_header->adapt;
      pInfo->params.modes.zeroCoeff = ecint_header->zeroCoeff;
      pInfo->params.modes.nlp = ecint_header->nlp;
      pInfo->params.modes.td = ecint_header->td;
    }
    return USC_NoError;
}

static USC_Status NumAlloc(const USC_EC_Option *options, int *nbanks)
{
   if(options==NULL) return USC_BadDataPointer;
   if(nbanks==NULL) return USC_BadDataPointer;
   *nbanks = 1;
   return USC_NoError;
}

static USC_Status MemAlloc(const USC_EC_Option *options, USC_MemBank *pBanks)
{
   unsigned int nbytes;
   IppPCMFrequency freq;
   int taptime_ms;

   if(options==NULL) return USC_BadDataPointer;
   if(pBanks==NULL) return USC_BadDataPointer;
   if(options->pcmType.bitPerSample != 16) return USC_InvalidHandler;
   switch(options->pcmType.sample_frequency) {
     case 8000:  freq = IPP_PCM_FREQ_8000;  break;
     case 16000: freq = IPP_PCM_FREQ_16000; break;
     default: return USC_InvalidHandler;
   }

   pBanks->pMem = NULL;
   if(options->algType == EC_SUBBAND) {
     if((options->echotail > 0) && (options->echotail <= SB_MAX_LEN_TAIL)) taptime_ms = options->echotail;
     else return USC_InvalidHandler;
     ec_isb_GetSize(freq, taptime_ms, &nbytes);
   } else if(options->algType == EC_FULLBAND) {
     if((options->echotail > 0) && (options->echotail <= FB_MAX_LEN_TAIL)) taptime_ms = options->echotail;
     else return USC_InvalidHandler;
     ec_ifb_GetSize(freq, taptime_ms, &nbytes);
   } else {
     if((options->echotail > 0) && (options->echotail <= SB_MAX_LEN_TAIL)) taptime_ms = options->echotail;
     else return USC_InvalidHandler;
     ec_isbf_GetSize(freq, taptime_ms, &nbytes);
   }
   pBanks->nbytes = nbytes + sizeof(ECINT_Handle_Header); /* room for USC header */
   return USC_NoError;
}

static USC_Status Init(const USC_EC_Option *options, const USC_MemBank *pBanks, USC_Handle *handle)
{
   ECINT_Handle_Header *ecint_header;
   IppPCMFrequency freq;
   int taptime_ms;
   USC_Handle *obj_ec;

   if(options==NULL) return USC_BadDataPointer;
   if(pBanks==NULL) return USC_BadDataPointer;
   if(pBanks->pMem==NULL) return USC_NotInitialized;
   if(pBanks->nbytes<=0) return USC_NotInitialized;
   if(handle==NULL) return USC_InvalidHandler;
   if(options->pcmType.bitPerSample != 16) return USC_InvalidHandler;
   switch(options->pcmType.sample_frequency) {
     case 8000:  freq = IPP_PCM_FREQ_8000;  break;
     case 16000: freq = IPP_PCM_FREQ_16000; break;
     default: return USC_InvalidHandler;
   }

   *handle = (USC_Handle*)pBanks->pMem;
   ecint_header = (ECINT_Handle_Header*)*handle;

   ecint_header->algType = options->algType;
   ecint_header->pcmType.sample_frequency = options->pcmType.sample_frequency;
   ecint_header->pcmType.bitPerSample = options->pcmType.bitPerSample;
   if(ecint_header->algType == EC_SUBBAND) {
     taptime_ms = options->echotail;
     if(options->echotail < 1) taptime_ms = 1;
     if(options->echotail > SB_MAX_LEN_TAIL) taptime_ms = SB_MAX_LEN_TAIL;
     ecint_header->fun.ec_GetFrameSize = (ec_GetFrameSizeI_ptr)ec_isb_GetFrameSize;
     ecint_header->fun.ec_GetSize = (ec_GetSizeI_ptr)ec_isb_GetSize;
     ecint_header->fun.ec_Init = (ec_InitI_ptr)ec_isb_Init;
     ecint_header->fun.ec_ModeOp = (ec_ModeOpI_ptr)ec_isb_ModeOp;
     ecint_header->fun.ec_GetSendPathDelay = (ec_GetSendPathDelayI_ptr)ec_isb_GetSendPathDelay;
     ecint_header->fun.ec_ProcessFrame = (ec_ProcessFrameI_ptr)ec_isb_ProcessFrame;

   } else if(ecint_header->algType == EC_FULLBAND) {
     taptime_ms = options->echotail;
     if(options->echotail < 1) taptime_ms = 1;
     if(options->echotail > FB_MAX_LEN_TAIL) taptime_ms = FB_MAX_LEN_TAIL;
     ecint_header->fun.ec_GetFrameSize = (ec_GetFrameSizeI_ptr)ec_ifb_GetFrameSize;
     ecint_header->fun.ec_GetSize = (ec_GetSizeI_ptr)ec_ifb_GetSize;
     ecint_header->fun.ec_Init = (ec_InitI_ptr)ec_ifb_Init;
     ecint_header->fun.ec_ModeOp = (ec_ModeOpI_ptr)ec_ifb_ModeOp;
     ecint_header->fun.ec_GetSendPathDelay = (ec_GetSendPathDelayI_ptr)ec_ifb_GetSendPathDelay;
     ecint_header->fun.ec_ProcessFrame = (ec_ProcessFrameI_ptr)ec_ifb_ProcessFrame;

   } else {
     taptime_ms = options->echotail;
     if(options->echotail < 1) taptime_ms = 1;
     if(options->echotail > SB_MAX_LEN_TAIL) taptime_ms = SB_MAX_LEN_TAIL;
     ecint_header->fun.ec_GetFrameSize = (ec_GetFrameSizeI_ptr)ec_isbf_GetFrameSize;
     ecint_header->fun.ec_GetSize = (ec_GetSizeI_ptr)ec_isbf_GetSize;
     ecint_header->fun.ec_Init = (ec_InitI_ptr)ec_isbf_Init;
     ecint_header->fun.ec_ModeOp = (ec_ModeOpI_ptr)ec_isbf_ModeOp;
     ecint_header->fun.ec_GetSendPathDelay = (ec_GetSendPathDelayI_ptr)ec_isbf_GetSendPathDelay;
     ecint_header->fun.ec_ProcessFrame = (ec_ProcessFrameI_ptr)ec_isbf_ProcessFrame;

   }
   ecint_header->echotail = taptime_ms;
   ecint_header->adapt = options->modes.adapt;
   ecint_header->zeroCoeff = options->modes.zeroCoeff;
   ecint_header->nlp = options->modes.nlp;
   ecint_header->td = options->modes.td;

   obj_ec = (USC_Handle*)((char*)*handle + sizeof(ECINT_Handle_Header));
   ecint_header->fun.ec_Init(obj_ec, freq, ecint_header->echotail);

   if(ecint_header->zeroCoeff) ecint_header->fun.ec_ModeOp(obj_ec, EC_COEFFS_ZERO);
   if((ecint_header->adapt == AD_FULLADAPT) || (ecint_header->adapt == AD_LITEADAPT)) {
     if(ecint_header->adapt == AD_FULLADAPT) ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_ENABLE);
     else ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_ENABLE_LITE);
   } else {
     ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_DISABLE);
     ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_DISABLE_LITE);
   }
   if(ecint_header->nlp) ecint_header->fun.ec_ModeOp(obj_ec, EC_NLP_ENABLE);
   else ecint_header->fun.ec_ModeOp(obj_ec, EC_NLP_DISABLE);
   if(ecint_header->td) ecint_header->fun.ec_ModeOp(obj_ec, EC_TD_ENABLE);
   else ecint_header->fun.ec_ModeOp(obj_ec, EC_TD_DISABLE);

   return USC_NoError;
}

static USC_Status Reinit(const USC_EC_Modes *modes, USC_Handle handle )
{
    ECINT_Handle_Header *ecint_header;
    USC_Handle *obj_ec;

    if(modes==NULL) return USC_BadDataPointer;
    if(handle==NULL) return USC_InvalidHandler;

    ecint_header = (ECINT_Handle_Header*)handle;
    obj_ec = (USC_Handle*)((char*)handle + sizeof(ECINT_Handle_Header));

    ecint_header->adapt = modes->adapt;
    ecint_header->zeroCoeff = modes->zeroCoeff;
    ecint_header->nlp = modes->nlp;
    ecint_header->td = modes->td;

    if(ecint_header->zeroCoeff) ecint_header->fun.ec_ModeOp(obj_ec, EC_COEFFS_ZERO);
    if((ecint_header->adapt == AD_FULLADAPT) || (ecint_header->adapt == AD_LITEADAPT)) {
      if(ecint_header->adapt == AD_FULLADAPT) ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_ENABLE);
      else ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_ENABLE_LITE);
    } else {
      ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_DISABLE);
      ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_DISABLE_LITE);
    }
    if(ecint_header->nlp) ecint_header->fun.ec_ModeOp(obj_ec, EC_NLP_ENABLE);
    else ecint_header->fun.ec_ModeOp(obj_ec, EC_NLP_DISABLE);
    if(ecint_header->td) ecint_header->fun.ec_ModeOp(obj_ec, EC_TD_ENABLE);
    else ecint_header->fun.ec_ModeOp(obj_ec, EC_TD_DISABLE);

    return USC_NoError;
}

static USC_Status Control(const USC_EC_Modes *modes, USC_Handle handle )
{

    ECINT_Handle_Header *ecint_header;
    USC_Handle *obj_ec;

    if(modes==NULL) return USC_BadDataPointer;
    if(handle==NULL) return USC_InvalidHandler;

    ecint_header = (ECINT_Handle_Header*)handle;
    obj_ec = (USC_Handle*)((char*)handle + sizeof(ECINT_Handle_Header));

    ecint_header->zeroCoeff = modes->zeroCoeff;
    if(ecint_header->zeroCoeff) ecint_header->fun.ec_ModeOp(obj_ec, EC_COEFFS_ZERO);
    if(ecint_header->adapt != modes->adapt) {
      ecint_header->adapt = modes->adapt;
      if((ecint_header->adapt == AD_FULLADAPT) || (ecint_header->adapt == AD_LITEADAPT)) {
        if(ecint_header->adapt == AD_FULLADAPT) ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_ENABLE);
        else ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_ENABLE_LITE);
      } else {
        ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_DISABLE);
        ecint_header->fun.ec_ModeOp(obj_ec, EC_ADAPTATION_DISABLE_LITE);
      }
    }
    if(ecint_header->nlp != modes->nlp) {
      ecint_header->nlp = modes->nlp;
      if(ecint_header->nlp) ecint_header->fun.ec_ModeOp(obj_ec, EC_NLP_ENABLE);
      else ecint_header->fun.ec_ModeOp(obj_ec, EC_NLP_DISABLE);
    }
    if(ecint_header->td != modes->td) {
      ecint_header->td = modes->td;
      if(ecint_header->td) ecint_header->fun.ec_ModeOp(obj_ec, EC_TD_ENABLE);
      else ecint_header->fun.ec_ModeOp(obj_ec, EC_TD_DISABLE);
    }

    return USC_NoError;
}

static USC_Status CancelEcho(USC_Handle handle, short *pSin, short *pRin, short *pSout)
{
   ECINT_Handle_Header *ecint_header;
   USC_Handle *obj_ec;
   int framesize;
   //Ipp32f r_in_32f_cur[MAX_BLOCK_SIZE];
   //Ipp32f s_in_32f_cur[MAX_BLOCK_SIZE];
   //Ipp32f s_out_32f_cur[MAX_BLOCK_SIZE];

   if(handle==NULL) return USC_InvalidHandler;
   if(pSin==NULL) return USC_BadDataPointer;
   if(pRin==NULL) return USC_BadDataPointer;
   if(pSout==NULL) return USC_BadDataPointer;

   ecint_header = (ECINT_Handle_Header*)handle;
   obj_ec = (USC_Handle*)((char*)handle + sizeof(ECINT_Handle_Header));
   if(ecint_header->algType == EC_SUBBAND) framesize = SUBBAND_FRAME_SIZE;
   else if(ecint_header->algType == EC_FULLBAND) framesize = FULLBAND_FRAME_SIZE;
   else framesize = FASTSBBAND_FRAME_SIZE;

   //ippsConvert_16s32f_Sfs((Ipp16s *)pRin, r_in_32f_cur, framesize, 0);
   //ippsConvert_16s32f_Sfs((Ipp16s *)pSin, s_in_32f_cur, framesize, 0);
   ecint_header->fun.ec_ProcessFrame(obj_ec, pRin, pSin, pSout);
   //ippsConvert_32f16s_Sfs(s_out_32f_cur, (Ipp16s *)pSout, framesize, ippRndZero, 0);

   return USC_NoError;

}


?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人免费视频| 韩国女主播成人在线观看| 久久久精品人体av艺术| 欧美肥妇毛茸茸| 欧美日韩视频一区二区| 欧美日韩国产片| 欧美另类久久久品| 91精品国产综合久久福利软件 | 成人av集中营| 国产精品中文有码| 国产东北露脸精品视频| 国产传媒日韩欧美成人| 成人毛片在线观看| 色视频成人在线观看免| 欧美亚洲综合网| 日韩三级高清在线| 久久久不卡影院| 亚洲精品一二三| 日韩精品欧美精品| 黄页视频在线91| www.欧美日韩| 这里只有精品免费| 久久这里只有精品6| 亚洲欧洲性图库| 亚洲永久精品国产| 久久黄色级2电影| 丰满放荡岳乱妇91ww| 在线观看免费视频综合| 精品成人在线观看| 亚洲丝袜自拍清纯另类| 日韩综合在线视频| 高清不卡一区二区| 欧美日韩一区二区三区四区五区| 欧美一区三区二区| 国产精品久久久久四虎| 日韩av成人高清| 91在线视频观看| 日韩欧美中文一区| 亚洲欧美色一区| 精品中文字幕一区二区小辣椒| 成人免费va视频| 欧美大白屁股肥臀xxxxxx| 国产精品久久看| 日韩av一区二区三区四区| 大桥未久av一区二区三区中文| 4hu四虎永久在线影院成人| 中文字幕一区二区不卡| 久久精品国产亚洲5555| 在线免费av一区| 国产精品少妇自拍| 精品在线观看免费| 欧美久久一区二区| 一区二区三区欧美激情| 国产成人aaa| 欧美绝品在线观看成人午夜影视| 亚洲欧美一区二区在线观看| 激情深爱一区二区| 91精品国产91综合久久蜜臀| 亚洲综合色自拍一区| 91丨九色丨蝌蚪富婆spa| 国产欧美一二三区| 国产精品一级黄| 欧美精品一区二区三区蜜桃| 日本成人在线一区| 欧美狂野另类xxxxoooo| 偷窥国产亚洲免费视频| 色欧美88888久久久久久影院| 亚洲国产经典视频| 国产成人亚洲精品狼色在线| 精品国产不卡一区二区三区| 九色|91porny| 久久影视一区二区| 国产成人av电影在线观看| 国产午夜久久久久| 成人综合激情网| 欧美经典三级视频一区二区三区| 国产精品一区二区在线观看不卡| 久久综合久久鬼色| 国产精品123| 中文字幕精品综合| 99re热视频精品| 亚洲一区二区三区不卡国产欧美| 在线亚洲一区二区| 亚洲成人你懂的| 91麻豆精品国产无毒不卡在线观看| 首页综合国产亚洲丝袜| 日韩精品专区在线| 国产精品一区二区久激情瑜伽| 国产午夜精品久久| 99久久免费视频.com| 亚洲一区在线观看免费| 欧美精品乱人伦久久久久久| 美女视频黄久久| 欧美激情中文不卡| 色婷婷精品久久二区二区蜜臀av| 亚洲成人免费影院| 久久亚洲精精品中文字幕早川悠里| 高清在线不卡av| 亚洲卡通欧美制服中文| 欧美一区二区三区男人的天堂 | 久久久夜色精品亚洲| 成人精品视频一区二区三区| 亚洲在线中文字幕| 欧美成人r级一区二区三区| 成人高清伦理免费影院在线观看| 亚洲精品国产一区二区精华液 | 成人短视频下载| 亚洲h在线观看| 久久精品欧美日韩| 精品视频在线视频| 国产福利91精品一区二区三区| 亚洲人成亚洲人成在线观看图片 | 亚洲色图.com| 精品国免费一区二区三区| www.成人网.com| 激情综合五月婷婷| 一级做a爱片久久| 久久久久久免费毛片精品| 欧美在线视频全部完| 国产精品亚洲专一区二区三区| 午夜视频一区二区| **性色生活片久久毛片| 久久综合五月天婷婷伊人| 欧日韩精品视频| www.欧美色图| 国产一区999| 免费成人你懂的| 亚洲韩国一区二区三区| 国产精品成人免费| 精品播放一区二区| 在线播放日韩导航| 91同城在线观看| 粉嫩13p一区二区三区| 美国一区二区三区在线播放| 亚洲成a人v欧美综合天堂| 中文字幕一区二区三区色视频| 26uuu精品一区二区 | 国产九色sp调教91| 免费观看在线综合| 热久久国产精品| 石原莉奈在线亚洲二区| 亚洲成人7777| 一区二区三区成人| 亚洲麻豆国产自偷在线| 亚洲国产精品激情在线观看| 国产亚洲欧美日韩日本| 久久综合久久综合亚洲| 欧美精品一区在线观看| 久久理论电影网| 国产日韩欧美不卡| 久久综合久久综合九色| 国产亚洲欧美日韩在线一区| 久久久久97国产精华液好用吗| 久久一夜天堂av一区二区三区| 精品免费国产二区三区| 26uuu国产在线精品一区二区| 久久综合久色欧美综合狠狠| 久久亚洲精华国产精华液 | 日韩一区和二区| 日韩一区二区三区观看| 精品国产区一区| 久久久精品欧美丰满| 欧美国产日韩在线观看| 亚洲人一二三区| 亚洲精品成人a在线观看| 亚洲电影视频在线| 免费在线观看一区二区三区| 激情综合网最新| 91免费国产在线观看| 欧美日韩高清一区二区| 日韩精品一区二区三区视频播放 | 91浏览器在线视频| 欧美日韩国产精品自在自线| 91精品国产欧美一区二区成人| 精品国产一区二区三区av性色| 久久久天堂av| 亚洲精品视频免费看| 三级亚洲高清视频| 国产成人亚洲综合a∨婷婷| 97精品国产露脸对白| 欧美日韩一级视频| 国产欧美日韩综合精品一区二区| 中文字幕色av一区二区三区| 亚洲高清三级视频| 精久久久久久久久久久| 欧美网站大全在线观看| 欧美xxxxx牲另类人与| 亚洲欧美一区二区三区孕妇| 午夜视频一区二区| 成人动漫一区二区在线| 日韩一级片在线观看| 亚洲视频在线观看三级| 麻豆精品视频在线观看视频| 99精品视频在线观看| 欧美一区二区三区日韩视频| 亚洲人成精品久久久久久| 激情综合一区二区三区| 欧美三级日本三级少妇99| 国产精品免费丝袜| 国内一区二区在线|