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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? quantize-pvt.c

?? MP3編碼程序和資料
?? C
?? 第 1 頁 / 共 3 頁
字號(hào):
	tot2=0;      }      tot1 += en0;      tot2 += ratio->en.l[sfb];      DEBUGF("%i %i sfb=%i mdct=%f fft=%f  fft-mdct=%f db \n",gr,ch,sfb,10*log10(Max(1e-25,ratio->en.l[sfb])),10*log10(Max(1e-25,en0)),10*log10((Max(1e-25,en0)/Max(1e-25,ratio->en.l[sfb]))));      if (sfb==SBMAX_l-1) {      DEBUGF("%i %i toti %f %f ratio=%f db \n",gr,ch,10*log10(Max(1e-25,tot2)),10*log(Max(1e-25,tot1)),10*log10(Max(1e-25,tot1)/(Max(1e-25,tot2))));      }      /*masking: multiplied by en0/fft_energyaverage seems to be about -147db.       */	}#endif      /* convert to MDCT units */      en1=1e15;  /* scaling so it shows up on FFT plot */      gfc->pinfo->xfsf[gr][ch][sfb] =  en1*xfsf[0][sfb];      gfc->pinfo->en[gr][ch][sfb] = en1*en0;      if (ratio->en.l[sfb]>0)	en0 = en0/ratio->en.l[sfb];      else	en0=0;      if (gfp->ATHonly)	en0=0;      gfc->pinfo->thr[gr][ch][sfb] = en1*Max(en0*ratio->thm.l[sfb],gfc->ATH_l[sfb]);      /* there is no scalefactor bands >= SBPSY_l */      if (sfb<SBPSY_l) {	if (scalefac->l[sfb]<0)  /* scfsi! */	  gfc->pinfo->LAMEsfb[gr][ch][sfb]=gfc->pinfo->LAMEsfb[0][ch][sfb];	else	  gfc->pinfo->LAMEsfb[gr][ch][sfb]=-ifqstep*scalefac->l[sfb];      }else{	gfc->pinfo->LAMEsfb[gr][ch][sfb]=0;      }      if (cod_info->preflag && sfb>=11) 	gfc->pinfo->LAMEsfb[gr][ch][sfb]-=ifqstep*pretab[sfb];    }  }  gfc->pinfo->LAMEqss[gr][ch] = cod_info->global_gain;  gfc->pinfo->LAMEmainbits[gr][ch] = cod_info->part2_3_length;  gfc->pinfo->LAMEsfbits[gr][ch] = cod_info->part2_length;  gfc->pinfo->over      [gr][ch] = noise[0];  gfc->pinfo->max_noise [gr][ch] = noise[1];  gfc->pinfo->over_noise[gr][ch] = noise[2];  gfc->pinfo->tot_noise [gr][ch] = noise[3];}/********************************************************************* * nonlinear quantization of xr  * More accurate formula than the ISO formula.  Takes into account * the fact that we are quantizing xr -> ix, but we want ix^4/3 to be  * as close as possible to x^4/3.  (taking the nearest int would mean * ix is as close as possible to xr, which is different.) * From Segher Boessenkool <segher@eastsite.nl>  11/1999 * ASM optimization from  *    Mathew Hendry <scampi@dial.pipex.com> 11/1999 *    Acy Stapp <AStapp@austin.rr.com> 11/1999 *    Takehiro Tominaga <tominaga@isoternet.org> 11/1999 *********************************************************************/#ifdef TAKEHIRO_IEEE754_HACK#define MAGIC_FLOAT (65536*(128))#define MAGIC_INT 0x4b000000void quantize_xrpow(FLOAT8 xp[576], int pi[576], gr_info *cod_info){    /* quantize on xr^(3/4) instead of xr */    const FLOAT8 istep = IPOW20(cod_info->global_gain);    int j;    for (j = 576 / 4; j > 0; --j) {	double x0 = istep * xp[0] + MAGIC_FLOAT;	double x1 = istep * xp[1] + MAGIC_FLOAT;	double x2 = istep * xp[2] + MAGIC_FLOAT;	double x3 = istep * xp[3] + MAGIC_FLOAT;	((float*)pi)[0] = x0;	((float*)pi)[1] = x1;	((float*)pi)[2] = x2;	((float*)pi)[3] = x3;	((float *)pi)[0] = (x0 + adj43asm[pi[0] - MAGIC_INT]);	((float *)pi)[1] = (x1 + adj43asm[pi[1] - MAGIC_INT]);	((float *)pi)[2] = (x2 + adj43asm[pi[2] - MAGIC_INT]);	((float *)pi)[3] = (x3 + adj43asm[pi[3] - MAGIC_INT]);	pi[0] -= MAGIC_INT;	pi[1] -= MAGIC_INT;	pi[2] -= MAGIC_INT;	pi[3] -= MAGIC_INT;	pi += 4;	xp += 4;    }}#  define ROUNDFAC -0.0946void quantize_xrpow_ISO(FLOAT8 xp[576], int pi[576], gr_info *cod_info){    /* quantize on xr^(3/4) instead of xr */    const FLOAT8 istep = IPOW20(cod_info->global_gain);    register int j;    for (j=576/4;j>0;j--) {	((float *)pi)[0] = (istep * xp[0]) + (ROUNDFAC + MAGIC_FLOAT);	((float *)pi)[1] = (istep * xp[1]) + (ROUNDFAC + MAGIC_FLOAT);	((float *)pi)[2] = (istep * xp[2]) + (ROUNDFAC + MAGIC_FLOAT);	((float *)pi)[3] = (istep * xp[3]) + (ROUNDFAC + MAGIC_FLOAT);	pi[0] -= MAGIC_INT;	pi[1] -= MAGIC_INT;	pi[2] -= MAGIC_INT;	pi[3] -= MAGIC_INT;	pi+=4;	xp+=4;    }}#else#if (defined(__GNUC__) && defined(__i386__))#define USE_GNUC_ASM#endif#ifdef _MSC_VER#define USE_MSC_ASM#endif/********************************************************************* * XRPOW_FTOI is a macro to convert floats to ints.   * if XRPOW_FTOI(x) = nearest_int(x), then QUANTFAC(x)=adj43asm[x] *                                         ROUNDFAC= -0.0946 * * if XRPOW_FTOI(x) = floor(x), then QUANTFAC(x)=asj43[x]    *                                   ROUNDFAC=0.4054 *********************************************************************/#ifdef USE_GNUC_ASM#  define QUANTFAC(rx)  adj43asm[rx]#  define ROUNDFAC -0.0946#  define XRPOW_FTOI(src, dest) \     asm ("fistpl %0 " : "=m"(dest) : "t"(src) : "st")#elif defined (USE_MSC_ASM)#  define QUANTFAC(rx)  adj43asm[rx]#  define ROUNDFAC -0.0946#  define XRPOW_FTOI(src, dest) do { \     FLOAT8 src_ = (src); \     int dest_; \     { \       __asm fld src_ \       __asm fistp dest_ \     } \     (dest) = dest_; \   } while (0)#else#  define QUANTFAC(rx)  adj43[rx]#  define ROUNDFAC 0.4054#  define XRPOW_FTOI(src,dest) ((dest) = (int)(src))#endif#ifdef USE_MSC_ASM/* define F8type and F8size according to type of FLOAT8 */# if defined FLOAT8_is_double#  define F8type qword#  define F8size 8# elif defined FLOAT8_is_float#  define F8type dword#  define F8size 4# else/* only float and double supported */#  error invalid FLOAT8 type for USE_MSC_ASM# endif#endif#ifdef USE_GNUC_ASM/* define F8type and F8size according to type of FLOAT8 */# if defined FLOAT8_is_double#  define F8type "l"#  define F8size "8"# elif defined FLOAT8_is_float#  define F8type "s"#  define F8size "4"# else/* only float and double supported */#  error invalid FLOAT8 type for USE_GNUC_ASM# endif#endifvoid quantize_xrpow(FLOAT8 xr[576], int ix[576], gr_info *cod_info) {  /* quantize on xr^(3/4) instead of xr */  const FLOAT8 istep = IPOW20(cod_info->global_gain);#if defined (USE_GNUC_ASM)   {      int rx[4];      __asm__ __volatile__(        "\n\nloop1:\n\t"        "fld" F8type " 0*" F8size "(%1)\n\t"        "fld" F8type " 1*" F8size "(%1)\n\t"        "fld" F8type " 2*" F8size "(%1)\n\t"        "fld" F8type " 3*" F8size "(%1)\n\t"        "fxch %%st(3)\n\t"        "fmul %%st(4)\n\t"        "fxch %%st(2)\n\t"        "fmul %%st(4)\n\t"        "fxch %%st(1)\n\t"        "fmul %%st(4)\n\t"        "fxch %%st(3)\n\t"        "fmul %%st(4)\n\t"        "addl $4*" F8size ", %1\n\t"        "addl $16, %3\n\t"        "fxch %%st(2)\n\t"        "fistl %5\n\t"        "fxch %%st(1)\n\t"        "fistl 4+%5\n\t"        "fxch %%st(3)\n\t"        "fistl 8+%5\n\t"        "fxch %%st(2)\n\t"        "fistl 12+%5\n\t"        "dec %4\n\t"        "movl %5, %%eax\n\t"        "movl 4+%5, %%ebx\n\t"        "fxch %%st(1)\n\t"        "fadd" F8type " (%2,%%eax," F8size ")\n\t"        "fxch %%st(3)\n\t"        "fadd" F8type " (%2,%%ebx," F8size ")\n\t"        "movl 8+%5, %%eax\n\t"        "movl 12+%5, %%ebx\n\t"        "fxch %%st(2)\n\t"        "fadd" F8type " (%2,%%eax," F8size ")\n\t"        "fxch %%st(1)\n\t"        "fadd" F8type " (%2,%%ebx," F8size ")\n\t"        "fxch %%st(3)\n\t"        "fistpl -16(%3)\n\t"        "fxch %%st(1)\n\t"        "fistpl -12(%3)\n\t"        "fistpl -8(%3)\n\t"        "fistpl -4(%3)\n\t"        "jnz loop1\n\n"        : /* no outputs */        : "t" (istep), "r" (xr), "r" (adj43asm), "r" (ix), "r" (576 / 4), "m" (rx)        : "%eax", "%ebx", "memory", "cc"      );  }#elif defined (USE_MSC_ASM)  {      /* asm from Acy Stapp <AStapp@austin.rr.com> */      int rx[4];      _asm {          fld F8type ptr [istep]          mov esi, dword ptr [xr]          lea edi, dword ptr [adj43asm]          mov edx, dword ptr [ix]          mov ecx, 576/4      } loop1: _asm {          fld F8type ptr [esi+(0*F8size)] // 0          fld F8type ptr [esi+(1*F8size)] // 1 0          fld F8type ptr [esi+(2*F8size)] // 2 1 0          fld F8type ptr [esi+(3*F8size)] // 3 2 1 0          fxch st(3)                  // 0 2 1 3          fmul st(0), st(4)          fxch st(2)                  // 1 2 0 3          fmul st(0), st(4)          fxch st(1)                  // 2 1 0 3          fmul st(0), st(4)          fxch st(3)                  // 3 1 0 2          fmul st(0), st(4)          add esi, 4*F8size          add edx, 16          fxch st(2)                  // 0 1 3 2          fist dword ptr [rx]          fxch st(1)                  // 1 0 3 2          fist dword ptr [rx+4]          fxch st(3)                  // 2 0 3 1          fist dword ptr [rx+8]          fxch st(2)                  // 3 0 2 1          fist dword ptr [rx+12]          dec ecx          mov eax, dword ptr [rx]          mov ebx, dword ptr [rx+4]          fxch st(1)                  // 0 3 2 1          fadd F8type ptr [edi+eax*F8size]          fxch st(3)                  // 1 3 2 0          fadd F8type ptr [edi+ebx*F8size]          mov eax, dword ptr [rx+8]          mov ebx, dword ptr [rx+12]          fxch st(2)                  // 2 3 1 0          fadd F8type ptr [edi+eax*F8size]          fxch st(1)                  // 3 2 1 0          fadd F8type ptr [edi+ebx*F8size]          fxch st(3)                  // 0 2 1 3          fistp dword ptr [edx-16]    // 2 1 3          fxch st(1)                  // 1 2 3          fistp dword ptr [edx-12]    // 2 3          fistp dword ptr [edx-8]     // 3          fistp dword ptr [edx-4]          jnz loop1          mov dword ptr [xr], esi          mov dword ptr [ix], edx          fstp st(0)      }  }#else#if 0  {   /* generic code if you write ASM for XRPOW_FTOI() */      FLOAT8 x;      int j, rx;      for (j = 576 / 4; j > 0; --j) {          x = *xr++ * istep;          XRPOW_FTOI(x, rx);          XRPOW_FTOI(x + QUANTFAC(rx), *ix++);          x = *xr++ * istep;          XRPOW_FTOI(x, rx);          XRPOW_FTOI(x + QUANTFAC(rx), *ix++);          x = *xr++ * istep;          XRPOW_FTOI(x, rx);          XRPOW_FTOI(x + QUANTFAC(rx), *ix++);          x = *xr++ * istep;          XRPOW_FTOI(x, rx);          XRPOW_FTOI(x + QUANTFAC(rx), *ix++);      }  }#endif  {/* from Wilfried.Behne@t-online.de.  Reported to be 2x faster than       the above code (when not using ASM) on PowerPC */     	int j;     	     	for ( j = 576/8; j > 0; --j)     	{			FLOAT8	x1, x2, x3, x4, x5, x6, x7, x8;			int		rx1, rx2, rx3, rx4, rx5, rx6, rx7, rx8;			x1 = *xr++ * istep;			x2 = *xr++ * istep;			XRPOW_FTOI(x1, rx1);			x3 = *xr++ * istep;			XRPOW_FTOI(x2, rx2);			x4 = *xr++ * istep;			XRPOW_FTOI(x3, rx3);			x5 = *xr++ * istep;			XRPOW_FTOI(x4, rx4);			x6 = *xr++ * istep;			XRPOW_FTOI(x5, rx5);			x7 = *xr++ * istep;			XRPOW_FTOI(x6, rx6);			x8 = *xr++ * istep;			XRPOW_FTOI(x7, rx7);			x1 += QUANTFAC(rx1);			XRPOW_FTOI(x8, rx8);			x2 += QUANTFAC(rx2);			XRPOW_FTOI(x1,*ix++);			x3 += QUANTFAC(rx3);			XRPOW_FTOI(x2,*ix++);			x4 += QUANTFAC(rx4);					XRPOW_FTOI(x3,*ix++);			x5 += QUANTFAC(rx5);			XRPOW_FTOI(x4,*ix++);			x6 += QUANTFAC(rx6);			XRPOW_FTOI(x5,*ix++);			x7 += QUANTFAC(rx7);			XRPOW_FTOI(x6,*ix++);			x8 += QUANTFAC(rx8);					XRPOW_FTOI(x7,*ix++);			XRPOW_FTOI(x8,*ix++);     	}	}#endif}void quantize_xrpow_ISO( FLOAT8 xr[576], int ix[576], gr_info *cod_info ){  /* quantize on xr^(3/4) instead of xr */  const FLOAT8 istep = IPOW20(cod_info->global_gain);  #if defined(USE_GNUC_ASM)   {      __asm__ __volatile__ (        "\n\nloop0:\n\t"        "fld" F8type " 0*" F8size "(%3)\n\t"        "fld" F8type " 1*" F8size "(%3)\n\t"        "fld" F8type " 2*" F8size "(%3)\n\t"        "fld" F8type " 3*" F8size "(%3)\n\t"        "addl $4*" F8size ", %3\n\t"        "addl $16, %4\n\t"        "fxch %%st(3)\n\t"        "fmul %%st(4)\n\t"        "fxch %%st(2)\n\t"        "fmul %%st(4)\n\t"        "fxch %%st(1)\n\t"        "fmul %%st(4)\n\t"        "fxch %%st(3)\n\t"        "fmul %%st(4)\n\t"        "dec %0\n\t"        "fxch %%st(2)\n\t"        "fadd %%st(5)\n\t"        "fxch %%st(1)\n\t"        "fadd %%st(5)\n\t"        "fxch %%st(3)\n\t"        "fadd %%st(5)\n\t"        "fxch %%st(2)\n\t"        "fadd %%st(5)\n\t"        "fxch %%st(1)\n\t"        "fistpl -16(%4)\n\t"        "fxch %%st(2)\n\t"        "fistpl -12(%4)\n\t"        "fistpl -8(%4)\n\t"        "fistpl -4(%4)\n\t"        "jnz loop0\n\n"        : /* no outputs */        : "r" (576 / 4), "u" ((FLOAT8)(0.4054 - 0.5)), "t" (istep), "r" (xr), "r" (ix)        : "memory", "cc"      );  }#elif defined(USE_MSC_ASM)  {      /* asm from Acy Stapp <AStapp@austin.rr.com> */      const FLOAT8 temp0 = 0.4054 - 0.5;      _asm {          mov ecx, 576/4;          fld F8type ptr [temp0];          fld F8type ptr [istep];          mov eax, dword ptr [xr];          mov edx, dword ptr [ix];      } loop0: _asm {          fld F8type ptr [eax+0*F8size]; // 0          fld F8type ptr [eax+1*F8size]; // 1 0          fld F8type ptr [eax+2*F8size]; // 2 1 0          fld F8type ptr [eax+3*F8size]; // 3 2 1 0          add eax, 4*F8size;          add edx, 16;          fxch st(3); // 0 2 1 3          fmul st(0), st(4);          fxch st(2); // 1 2 0 3          fmul st(0), st(4);          fxch st(1); // 2 1 0 3          fmul st(0), st(4);          fxch st(3); // 3 1 0 2          fmul st(0), st(4);          dec ecx;          fxch st(2); // 0 1 3 2          fadd st(0), st(5);          fxch st(1); // 1 0 3 2          fadd st(0), st(5);          fxch st(3); // 2 0 3 1          fadd st(0), st(5);          fxch st(2); // 3 0 2 1          fadd st(0), st(5);          fxch st(1); // 0 3 2 1           fistp dword ptr [edx-16]; // 3 2 1          fxch st(2); // 1 2 3          fistp dword ptr [edx-12];          fistp dword ptr [edx-8];          fistp dword ptr [edx-4];          jnz loop0;          mov dword ptr [xr], eax;          mov dword ptr [ix], edx;          fstp st(0);          fstp st(0);      }  }#else#if 0   /* generic ASM */      register int j;      for (j=576/4;j>0;j--) {         XRPOW_FTOI(istep * (*xr++) + ROUNDFAC, *ix++);         XRPOW_FTOI(istep * (*xr++) + ROUNDFAC, *ix++);         XRPOW_FTOI(istep * (*xr++) + ROUNDFAC, *ix++);         XRPOW_FTOI(istep * (*xr++) + ROUNDFAC, *ix++);      }#endif  {      register int j;      const FLOAT8 compareval0 = (1.0 - 0.4054)/istep;      /* depending on architecture, it may be worth calculating a few more compareval's.         eg.  compareval1 = (2.0 - 0.4054/istep);               .. and then after the first compare do this ...              if compareval1>*xr then ix = 1;         On a pentium166, it's only worth doing the one compare (as done here), as the second         compare becomes more expensive than just calculating the value. Architectures with          slow FP operations may want to add some more comparevals. try it and send your diffs          statistically speaking         73% of all xr*istep values give ix=0         16% will give 1         4%  will give 2      */      for (j=576;j>0;j--)         {          if (compareval0 > *xr) {            *(ix++) = 0;            xr++;          } else	    /*    *(ix++) = (int)( istep*(*(xr++))  + 0.4054); */            XRPOW_FTOI(  istep*(*(xr++))  + ROUNDFAC , *(ix++) );        }  }#endif}#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91蜜桃婷婷狠狠久久综合9色| 6080午夜不卡| 91免费版在线| 欧美日韩三级在线| 久久精品水蜜桃av综合天堂| 亚洲精品视频自拍| 蜜臀国产一区二区三区在线播放| 久久er精品视频| 99久久婷婷国产综合精品电影| 欧美性生活久久| 久久久久久久综合狠狠综合| 亚洲免费视频成人| 夜夜精品视频一区二区| 精品一区二区三区在线观看 | 精品国产精品网麻豆系列| 91精品国产综合久久精品性色| 欧美精品一区二区久久久| 亚洲丝袜另类动漫二区| 免费高清在线一区| 99久久久国产精品免费蜜臀| 色天天综合久久久久综合片| 国产一区二区福利视频| 欧美性极品少妇| 中文字幕免费一区| 蜜臀久久99精品久久久久久9| 97久久超碰精品国产| 日韩精品资源二区在线| 一区二区三区在线观看网站| 韩日欧美一区二区三区| 国产资源精品在线观看| 欧美在线不卡视频| 自拍av一区二区三区| 成人黄色777网| 国产精品久久久久久妇女6080| 激情图区综合网| 精品国产一区二区三区av性色| 蜜臀av一区二区在线免费观看| 日韩一区二区三区av| 蜜臀精品久久久久久蜜臀| 日韩一区二区三区视频在线| 蜜桃视频在线一区| 欧美xxxxxxxxx| 国产一二三精品| 国产欧美一区二区精品久导航 | 久久99精品久久久久久久久久久久| 欧美视频中文一区二区三区在线观看| 一区二区三区四区视频精品免费| 91福利精品第一导航| 亚洲国产精品一区二区久久 | kk眼镜猥琐国模调教系列一区二区| 久久久精品欧美丰满| 国产福利视频一区二区三区| 久久精品视频网| 成人18精品视频| 亚洲一区二区三区四区在线| 欧美伦理影视网| 久久激情综合网| 国产精品高潮久久久久无| 93久久精品日日躁夜夜躁欧美| 亚洲一区二区在线观看视频| 欧美久久久一区| 经典三级一区二区| 欧美国产成人精品| 91久久人澡人人添人人爽欧美| 亚洲成人午夜影院| 欧美一级日韩一级| 国产麻豆成人传媒免费观看| 综合自拍亚洲综合图不卡区| 欧美精选一区二区| 国产精品一区二区在线看| 亚洲激情图片一区| 欧美成人欧美edvon| 日本韩国欧美一区二区三区| 精品综合久久久久久8888| 亚洲天堂成人在线观看| 日韩欧美国产精品| 色又黄又爽网站www久久| 久热成人在线视频| 亚洲精品水蜜桃| 国产日韩欧美精品电影三级在线| 色综合久久久久综合体| 久草精品在线观看| 一区二区三区**美女毛片| 国产欧美一区二区精品婷婷| 911国产精品| 91黄视频在线观看| 成人午夜在线播放| 麻豆精品国产91久久久久久| 亚洲精品视频免费观看| 国产亚洲制服色| 欧美一二三四在线| 欧美视频在线一区| 91丝袜呻吟高潮美腿白嫩在线观看| 久久99国产精品麻豆| 图片区小说区区亚洲影院| 亚洲日本在线看| 中文字幕免费不卡| 国产无人区一区二区三区| 日韩一区二区影院| 欧美男生操女生| 欧美视频精品在线| 91久久一区二区| 色天使久久综合网天天| 91麻豆文化传媒在线观看| 成人激情图片网| 成人综合婷婷国产精品久久蜜臀 | 国产欧美一区二区三区在线看蜜臀| 7777精品伊人久久久大香线蕉的 | 91在线丨porny丨国产| 国产老女人精品毛片久久| 韩国女主播成人在线观看| 免费一级欧美片在线观看| 日韩精品国产欧美| 日韩av一区二区三区四区| 日本在线不卡视频一二三区| 亚洲一级片在线观看| 亚洲精品国产品国语在线app| 国产精品乱人伦一区二区| 国产精品青草综合久久久久99| 国产清纯白嫩初高生在线观看91| 久久久久久毛片| 国产亚洲精品精华液| 国产精品久久毛片| 国产精品国模大尺度视频| 亚洲女人的天堂| 一区二区三区日本| 日韩精品成人一区二区三区| 理论电影国产精品| 国产成人在线视频免费播放| 成人性生交大片免费看中文网站| 91亚洲大成网污www| 欧美三区在线视频| 日韩一区二区三区视频| 国产亚洲一区二区三区在线观看| 欧美经典三级视频一区二区三区| 国产精品久久影院| 亚洲成av人影院| 精品中文字幕一区二区| 成人三级伦理片| 在线欧美日韩精品| 日韩一级片在线观看| 日本一区二区免费在线观看视频| 国产精品精品国产色婷婷| 天使萌一区二区三区免费观看| 久久国产成人午夜av影院| 成人美女视频在线观看18| 欧美无砖专区一中文字| 欧美大片在线观看一区二区| 国产精品国产三级国产普通话99 | 国产乱色国产精品免费视频| 成人av网站在线| 欧美高清一级片在线| 欧美精品一区二区三区蜜臀| 亚洲欧美电影一区二区| 美女www一区二区| 91丝袜美女网| 精品国产乱码久久久久久蜜臀| 中文字幕一区二区三| 久久精品理论片| 欧美影片第一页| 国产拍揄自揄精品视频麻豆| 亚洲丶国产丶欧美一区二区三区| 国产成人在线色| 91精品国产欧美一区二区18| 国产精品超碰97尤物18| 日韩av电影天堂| 一本色道久久综合精品竹菊| 精品国精品国产尤物美女| 亚洲一区成人在线| 99re热视频精品| 久久久无码精品亚洲日韩按摩| 亚洲成人一区在线| 91猫先生在线| 亚洲国产高清在线| 国内精品久久久久影院色 | 日本亚洲三级在线| 99r国产精品| 久久嫩草精品久久久久| 香港成人在线视频| 欧洲亚洲国产日韩| 亚洲欧美日韩久久精品| 国产一区二区三区日韩| 91精品国产欧美一区二区18| 亚洲精品自拍动漫在线| 成人av在线播放网址| 久久精品人人爽人人爽| 国产综合色在线视频区| 欧美mv日韩mv| 免费看日韩a级影片| 欧美日韩国产综合久久| 一区二区三区在线观看动漫| 不卡视频一二三四| 国产精品久久久久久久久久久免费看 | 欧美剧情片在线观看| 亚洲国产精品久久艾草纯爱| 欧美最新大片在线看| 亚洲国产cao| 777色狠狠一区二区三区| 日日夜夜一区二区| 日韩欧美亚洲国产精品字幕久久久|