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

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

?? jidctred.cpp

?? Windows 圖形編程 書籍
?? CPP
字號:
//-------------------------------------------------------------------------//
//          Windows Graphics Programming: Win32 GDI and DirectDraw         //
//                        ISBN  0-13-086985-6                              //
//                                                                         //
//  Modified by: Yuan, Feng                             www.fengyuan.com   //
//  Changes    : C++, exception, in-memory source, BGR byte order          //
//  Version    : 1.00.000, May 31, 2000                                    //
//-------------------------------------------------------------------------//

/*
 * jidctred.c
 *
 * Copyright (C) 1994-1998, Thomas G. Lane.
 * This file is part of the Independent JPEG Group's software.
 * For conditions of distribution and use, see the accompanying README file.
 *
 * This file contains inverse-DCT routines that produce reduced-size output:
 * either 4x4, 2x2, or 1x1 pixels from an 8x8 DCT block.
 *
 * The implementation is based on the Loeffler, Ligtenberg and Moschytz (LL&M)
 * algorithm used in jidctint.c.  We simply replace each 8-to-8 1-D IDCT step
 * with an 8-to-4 step that produces the four averages of two adjacent outputs
 * (or an 8-to-2 step producing two averages of four outputs, for 2x2 output).
 * These steps were derived by computing the corresponding values at the end
 * of the normal LL&M code, then simplifying as much as possible.
 *
 * 1x1 is trivial: just take the DC coefficient divided by 8.
 *
 * See jidctint.c for additional comments.
 */

#define JPEG_INTERNALS
#include "jinclude.h"
#include "jpeglib.h"
#include "jdct.h"		/* Private declarations for DCT subsystem */

#ifdef IDCT_SCALING_SUPPORTED


/*
 * This module is specialized to the case DCTSIZE = 8.
 */

#if DCTSIZE != 8
  Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
#endif


/* Scaling is the same as in jidctint.c. */

#if BITS_IN_JSAMPLE == 8
#define CONST_BITS  13
#define PASS1_BITS  2
#else
#define CONST_BITS  13
#define PASS1_BITS  1		/* lose a little precision to avoid overflow */
#endif

/* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
 * causing a lot of useless floating-point operations at run time.
 * To get around this we use the following pre-calculated constants.
 * If you change CONST_BITS you may want to add appropriate values.
 * (With a reasonable C compiler, you can just rely on the FIX() macro...)
 */

#if CONST_BITS == 13
#define FIX_0_211164243  ((long)  1730)	/* FIX(0.211164243) */
#define FIX_0_509795579  ((long)  4176)	/* FIX(0.509795579) */
#define FIX_0_601344887  ((long)  4926)	/* FIX(0.601344887) */
#define FIX_0_720959822  ((long)  5906)	/* FIX(0.720959822) */
#define FIX_0_765366865  ((long)  6270)	/* FIX(0.765366865) */
#define FIX_0_850430095  ((long)  6967)	/* FIX(0.850430095) */
#define FIX_0_899976223  ((long)  7373)	/* FIX(0.899976223) */
#define FIX_1_061594337  ((long)  8697)	/* FIX(1.061594337) */
#define FIX_1_272758580  ((long)  10426)	/* FIX(1.272758580) */
#define FIX_1_451774981  ((long)  11893)	/* FIX(1.451774981) */
#define FIX_1_847759065  ((long)  15137)	/* FIX(1.847759065) */
#define FIX_2_172734803  ((long)  17799)	/* FIX(2.172734803) */
#define FIX_2_562915447  ((long)  20995)	/* FIX(2.562915447) */
#define FIX_3_624509785  ((long)  29692)	/* FIX(3.624509785) */
#else
#define FIX_0_211164243  FIX(0.211164243)
#define FIX_0_509795579  FIX(0.509795579)
#define FIX_0_601344887  FIX(0.601344887)
#define FIX_0_720959822  FIX(0.720959822)
#define FIX_0_765366865  FIX(0.765366865)
#define FIX_0_850430095  FIX(0.850430095)
#define FIX_0_899976223  FIX(0.899976223)
#define FIX_1_061594337  FIX(1.061594337)
#define FIX_1_272758580  FIX(1.272758580)
#define FIX_1_451774981  FIX(1.451774981)
#define FIX_1_847759065  FIX(1.847759065)
#define FIX_2_172734803  FIX(2.172734803)
#define FIX_2_562915447  FIX(2.562915447)
#define FIX_3_624509785  FIX(3.624509785)
#endif


/* Multiply an long variable by an long constant to yield an long result.
 * For 8-bit samples with the recommended scaling, all the variable
 * and constant values involved are no more than 16 bits wide, so a
 * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
 * For 12-bit samples, a full 32-bit multiplication will be needed.
 */

#define MULTIPLY(var,const)  ((var) * (const))


/* Dequantize a coefficient by multiplying it by the multiplier-table
 * entry; produce an int result.  In this module, both inputs and result
 * are 16 bits or less, so either int or short multiply will work.
 */

#define DEQUANTIZE(coef,quantval)  (((ISLOW_MULT_TYPE) (coef)) * (quantval))


/*
 * Perform dequantization and inverse DCT on one block of coefficients,
 * producing a reduced-size 4x4 output block.
 */

GLOBAL(void)
jpeg_idct_4x4 (j_decompress_ptr cinfo, jpeg_component_info * compptr,
	       JCOEFPTR coef_block,
	       JSAMPARRAY output_buf, JDIMENSION output_col)
{
  long tmp0, tmp2, tmp10, tmp12;
  long z1, z2, z3, z4;
  JCOEFPTR inptr;
  ISLOW_MULT_TYPE * quantptr;
  int * wsptr;
  JSAMPROW outptr;
  JSAMPLE *range_limit = IDCT_range_limit(cinfo);
  int ctr;
  int workspace[DCTSIZE*4];	/* buffers data between passes */
  SHIFT_TEMPS

  /* Pass 1: process columns from input, store into work array. */

  inptr = coef_block;
  quantptr = (ISLOW_MULT_TYPE *) compptr->dct_table;
  wsptr = workspace;
  for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
    /* Don't bother to process column 4, because second pass won't use it */
    if (ctr == DCTSIZE-4)
      continue;
    if (inptr[DCTSIZE*1] == 0 && inptr[DCTSIZE*2] == 0 &&
	inptr[DCTSIZE*3] == 0 && inptr[DCTSIZE*5] == 0 &&
	inptr[DCTSIZE*6] == 0 && inptr[DCTSIZE*7] == 0) {
      /* AC terms all zero; we need not examine term 4 for 4x4 output */
      int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_BITS;
      
      wsptr[DCTSIZE*0] = dcval;
      wsptr[DCTSIZE*1] = dcval;
      wsptr[DCTSIZE*2] = dcval;
      wsptr[DCTSIZE*3] = dcval;
      
      continue;
    }
    
    /* Even part */
    
    tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
    tmp0 <<= (CONST_BITS+1);
    
    z2 = DEQUANTIZE(inptr[DCTSIZE*2], quantptr[DCTSIZE*2]);
    z3 = DEQUANTIZE(inptr[DCTSIZE*6], quantptr[DCTSIZE*6]);

    tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, - FIX_0_765366865);
    
    tmp10 = tmp0 + tmp2;
    tmp12 = tmp0 - tmp2;
    
    /* Odd part */
    
    z1 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
    z2 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
    z3 = DEQUANTIZE(inptr[DCTSIZE*3], quantptr[DCTSIZE*3]);
    z4 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
    
    tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
	 + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) */
	 + MULTIPLY(z3, - FIX_2_172734803) /* sqrt(2) * (-c1-c5) */
	 + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
    
    tmp2 = MULTIPLY(z1, - FIX_0_509795579) /* sqrt(2) * (c7-c5) */
	 + MULTIPLY(z2, - FIX_0_601344887) /* sqrt(2) * (c5-c1) */
	 + MULTIPLY(z3, FIX_0_899976223) /* sqrt(2) * (c3-c7) */
	 + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */

    /* Final output stage */
    
    wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp2, CONST_BITS-PASS1_BITS+1);
    wsptr[DCTSIZE*3] = (int) DESCALE(tmp10 - tmp2, CONST_BITS-PASS1_BITS+1);
    wsptr[DCTSIZE*1] = (int) DESCALE(tmp12 + tmp0, CONST_BITS-PASS1_BITS+1);
    wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 - tmp0, CONST_BITS-PASS1_BITS+1);
  }
  
  /* Pass 2: process 4 rows from work array, store into output array. */

  wsptr = workspace;
  for (ctr = 0; ctr < 4; ctr++) {
    outptr = output_buf[ctr] + output_col;
    /* It's not clear whether a zero row test is worthwhile here ... */

#ifndef NO_ZERO_ROW_TEST
    if (wsptr[1] == 0 && wsptr[2] == 0 && wsptr[3] == 0 &&
	wsptr[5] == 0 && wsptr[6] == 0 && wsptr[7] == 0) {
      /* AC terms all zero */
      JSAMPLE dcval = range_limit[(int) DESCALE((long) wsptr[0], PASS1_BITS+3)
				  & RANGE_MASK];
      
      outptr[0] = dcval;
      outptr[1] = dcval;
      outptr[2] = dcval;
      outptr[3] = dcval;
      
      wsptr += DCTSIZE;		/* advance pointer to next row */
      continue;
    }
#endif
    
    /* Even part */
    
    tmp0 = ((long) wsptr[0]) << (CONST_BITS+1);
    
    tmp2 = MULTIPLY((long) wsptr[2], FIX_1_847759065)
	 + MULTIPLY((long) wsptr[6], - FIX_0_765366865);
    
    tmp10 = tmp0 + tmp2;
    tmp12 = tmp0 - tmp2;
    
    /* Odd part */
    
    z1 = (long) wsptr[7];
    z2 = (long) wsptr[5];
    z3 = (long) wsptr[3];
    z4 = (long) wsptr[1];
    
    tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
	 + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) */
	 + MULTIPLY(z3, - FIX_2_172734803) /* sqrt(2) * (-c1-c5) */
	 + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
    
    tmp2 = MULTIPLY(z1, - FIX_0_509795579) /* sqrt(2) * (c7-c5) */
	 + MULTIPLY(z2, - FIX_0_601344887) /* sqrt(2) * (c5-c1) */
	 + MULTIPLY(z3, FIX_0_899976223) /* sqrt(2) * (c3-c7) */
	 + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */

    /* Final output stage */
    
    outptr[0] = range_limit[(int) DESCALE(tmp10 + tmp2,
					  CONST_BITS+PASS1_BITS+3+1)
			    & RANGE_MASK];
    outptr[3] = range_limit[(int) DESCALE(tmp10 - tmp2,
					  CONST_BITS+PASS1_BITS+3+1)
			    & RANGE_MASK];
    outptr[1] = range_limit[(int) DESCALE(tmp12 + tmp0,
					  CONST_BITS+PASS1_BITS+3+1)
			    & RANGE_MASK];
    outptr[2] = range_limit[(int) DESCALE(tmp12 - tmp0,
					  CONST_BITS+PASS1_BITS+3+1)
			    & RANGE_MASK];
    
    wsptr += DCTSIZE;		/* advance pointer to next row */
  }
}


/*
 * Perform dequantization and inverse DCT on one block of coefficients,
 * producing a reduced-size 2x2 output block.
 */

GLOBAL(void)
jpeg_idct_2x2 (j_decompress_ptr cinfo, jpeg_component_info * compptr,
	       JCOEFPTR coef_block,
	       JSAMPARRAY output_buf, JDIMENSION output_col)
{
  long tmp0, tmp10, z1;
  JCOEFPTR inptr;
  ISLOW_MULT_TYPE * quantptr;
  int * wsptr;
  JSAMPROW outptr;
  JSAMPLE *range_limit = IDCT_range_limit(cinfo);
  int ctr;
  int workspace[DCTSIZE*2];	/* buffers data between passes */
  SHIFT_TEMPS

  /* Pass 1: process columns from input, store into work array. */

  inptr = coef_block;
  quantptr = (ISLOW_MULT_TYPE *) compptr->dct_table;
  wsptr = workspace;
  for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
    /* Don't bother to process columns 2,4,6 */
    if (ctr == DCTSIZE-2 || ctr == DCTSIZE-4 || ctr == DCTSIZE-6)
      continue;
    if (inptr[DCTSIZE*1] == 0 && inptr[DCTSIZE*3] == 0 &&
	inptr[DCTSIZE*5] == 0 && inptr[DCTSIZE*7] == 0) {
      /* AC terms all zero; we need not examine terms 2,4,6 for 2x2 output */
      int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_BITS;
      
      wsptr[DCTSIZE*0] = dcval;
      wsptr[DCTSIZE*1] = dcval;
      
      continue;
    }
    
    /* Even part */
    
    z1 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
    tmp10 = z1 << (CONST_BITS+2);
    
    /* Odd part */

    z1 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
    tmp0 = MULTIPLY(z1, - FIX_0_720959822); /* sqrt(2) * (c7-c5+c3-c1) */
    z1 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
    tmp0 += MULTIPLY(z1, FIX_0_850430095); /* sqrt(2) * (-c1+c3+c5+c7) */
    z1 = DEQUANTIZE(inptr[DCTSIZE*3], quantptr[DCTSIZE*3]);
    tmp0 += MULTIPLY(z1, - FIX_1_272758580); /* sqrt(2) * (-c1+c3-c5-c7) */
    z1 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
    tmp0 += MULTIPLY(z1, FIX_3_624509785); /* sqrt(2) * (c1+c3+c5+c7) */

    /* Final output stage */
    
    wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp0, CONST_BITS-PASS1_BITS+2);
    wsptr[DCTSIZE*1] = (int) DESCALE(tmp10 - tmp0, CONST_BITS-PASS1_BITS+2);
  }
  
  /* Pass 2: process 2 rows from work array, store into output array. */

  wsptr = workspace;
  for (ctr = 0; ctr < 2; ctr++) {
    outptr = output_buf[ctr] + output_col;
    /* It's not clear whether a zero row test is worthwhile here ... */

#ifndef NO_ZERO_ROW_TEST
    if (wsptr[1] == 0 && wsptr[3] == 0 && wsptr[5] == 0 && wsptr[7] == 0) {
      /* AC terms all zero */
      JSAMPLE dcval = range_limit[(int) DESCALE((long) wsptr[0], PASS1_BITS+3)
				  & RANGE_MASK];
      
      outptr[0] = dcval;
      outptr[1] = dcval;
      
      wsptr += DCTSIZE;		/* advance pointer to next row */
      continue;
    }
#endif
    
    /* Even part */
    
    tmp10 = ((long) wsptr[0]) << (CONST_BITS+2);
    
    /* Odd part */

    tmp0 = MULTIPLY((long) wsptr[7], - FIX_0_720959822) /* sqrt(2) * (c7-c5+c3-c1) */
	 + MULTIPLY((long) wsptr[5], FIX_0_850430095) /* sqrt(2) * (-c1+c3+c5+c7) */
	 + MULTIPLY((long) wsptr[3], - FIX_1_272758580) /* sqrt(2) * (-c1+c3-c5-c7) */
	 + MULTIPLY((long) wsptr[1], FIX_3_624509785); /* sqrt(2) * (c1+c3+c5+c7) */

    /* Final output stage */
    
    outptr[0] = range_limit[(int) DESCALE(tmp10 + tmp0,
					  CONST_BITS+PASS1_BITS+3+2)
			    & RANGE_MASK];
    outptr[1] = range_limit[(int) DESCALE(tmp10 - tmp0,
					  CONST_BITS+PASS1_BITS+3+2)
			    & RANGE_MASK];
    
    wsptr += DCTSIZE;		/* advance pointer to next row */
  }
}


/*
 * Perform dequantization and inverse DCT on one block of coefficients,
 * producing a reduced-size 1x1 output block.
 */

GLOBAL(void)
jpeg_idct_1x1 (j_decompress_ptr cinfo, jpeg_component_info * compptr,
	       JCOEFPTR coef_block,
	       JSAMPARRAY output_buf, JDIMENSION output_col)
{
  int dcval;
  ISLOW_MULT_TYPE * quantptr;
  JSAMPLE *range_limit = IDCT_range_limit(cinfo);
  SHIFT_TEMPS

  /* We hardly need an inverse DCT routine for this: just take the
   * average pixel value, which is one-eighth of the DC coefficient.
   */
  quantptr = (ISLOW_MULT_TYPE *) compptr->dct_table;
  dcval = DEQUANTIZE(coef_block[0], quantptr[0]);
  dcval = (int) DESCALE((long) dcval, 3);

  output_buf[0][output_col] = range_limit[dcval & RANGE_MASK];
}

#endif /* IDCT_SCALING_SUPPORTED */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲第一主播视频| 日韩你懂的在线播放| 亚洲美女在线国产| 色婷婷综合久久久久中文一区二区 | 日本成人中文字幕在线视频| 欧美日韩大陆在线| 日韩国产精品大片| 精品国产青草久久久久福利| 极品少妇xxxx偷拍精品少妇| 中文字幕第一区| 91老司机福利 在线| 亚洲永久精品国产| 91精品综合久久久久久| 久久99国产精品久久| 欧美激情综合在线| 欧美在线观看视频在线| 色哟哟国产精品免费观看| 五月天久久比比资源色| 日韩视频一区二区三区在线播放| 国产九九视频一区二区三区| 自拍偷拍国产精品| 日韩视频一区二区三区| 成年人国产精品| 午夜欧美大尺度福利影院在线看| 日韩免费观看高清完整版| 国产成人免费视频| 亚洲电影视频在线| 久久久综合激的五月天| 在线观看日韩毛片| 国产一区 二区| 亚洲国产日韩在线一区模特| 久久精品一区二区三区不卡牛牛| 色综合视频一区二区三区高清| 亚洲国产精品一区二区www| 久久综合av免费| 在线免费观看日韩欧美| 激情五月婷婷综合| 亚洲午夜一二三区视频| 国产欧美精品一区二区色综合| 欧美日韩精品一区二区在线播放| 国产精品自在在线| 日韩精品成人一区二区在线| |精品福利一区二区三区| 日韩视频一区在线观看| 在线观看国产精品网站| 国产精品系列在线播放| 日本 国产 欧美色综合| 亚洲日本在线天堂| 国产精品私人自拍| 欧美xxxx老人做受| 精品视频999| 99精品欧美一区二区蜜桃免费| 极品销魂美女一区二区三区| 亚洲mv在线观看| 亚洲女厕所小便bbb| 国产欧美一区二区三区在线看蜜臀| 91麻豆精品国产91久久久更新时间 | 久久男人中文字幕资源站| 欧美日韩国产高清一区二区| 99国内精品久久| 国产aⅴ综合色| 国产在线精品一区二区| 久久电影网电视剧免费观看| 天天色图综合网| 亚洲国产一区在线观看| 亚洲毛片av在线| 国产精品成人一区二区艾草 | 亚洲国产成人91porn| 亚洲品质自拍视频网站| 国产精品素人视频| 国产精品理论在线观看| 久久网站最新地址| 精品国产三级电影在线观看| 精品99久久久久久| 精品国精品国产| 亚洲精品在线观看视频| 久久久www成人免费毛片麻豆| 欧美一二三区精品| 欧美www视频| 精品福利视频一区二区三区| 久久综合给合久久狠狠狠97色69| www国产亚洲精品久久麻豆| 亚洲精品在线观看视频| 久久久www成人免费毛片麻豆| 久久九九99视频| 国产精品毛片久久久久久| 国产精品久久久久国产精品日日| 久久久www免费人成精品| 中文字幕免费在线观看视频一区| 欧美韩国一区二区| 亚洲天堂成人网| 亚洲永久精品国产| 免费在线看一区| 蓝色福利精品导航| 韩国精品主播一区二区在线观看 | 视频一区在线播放| 免费在线一区观看| 国产成人免费xxxxxxxx| 91蝌蚪porny九色| 欧美在线观看18| 欧美一区二区在线免费观看| 日韩免费在线观看| 国产精品毛片无遮挡高清| 亚洲黄色免费网站| 欧美aⅴ一区二区三区视频| 国产剧情av麻豆香蕉精品| 91网站在线观看视频| 在线综合亚洲欧美在线视频| 日本一区二区三区视频视频| 一区二区三区四区精品在线视频| 视频一区中文字幕| 成人毛片在线观看| 91精品国产综合久久精品麻豆 | 91精品久久久久久久91蜜桃| 26uuu精品一区二区在线观看| 中文字幕一区二区三区色视频| 亚洲国产日产av| 国产福利91精品一区二区三区| 欧美亚洲高清一区二区三区不卡| 欧美zozozo| 亚洲国产综合在线| 丰满放荡岳乱妇91ww| 欧美日韩国产免费| 国产精品欧美久久久久无广告| 亚洲一区中文日韩| 福利一区二区在线| 91精品免费观看| 亚洲另类在线一区| 高清成人在线观看| 欧美videos中文字幕| 亚洲综合在线免费观看| 国产精品亚洲а∨天堂免在线| 欧美日韩国产高清一区二区| 国产精品乱码一区二三区小蝌蚪| 日韩av中文字幕一区二区三区 | 国产麻豆欧美日韩一区| 欧美无乱码久久久免费午夜一区| 国产亚洲欧美一区在线观看| 爽好多水快深点欧美视频| 91麻豆视频网站| 日本一区二区在线不卡| 精品在线你懂的| 在线91免费看| 亚洲一卡二卡三卡四卡| 成人免费视频caoporn| 精品国产一区二区在线观看| 日韩制服丝袜先锋影音| 91激情在线视频| 亚洲欧洲国产日本综合| 国产精品1024| 精品国产一区a| 日韩高清一级片| 欧美精品日韩精品| 一区二区不卡在线视频 午夜欧美不卡在| 国内外成人在线| 精品久久五月天| 久久精品国产77777蜜臀| 欧美军同video69gay| 一区二区三区高清在线| 色哟哟一区二区在线观看| 国产精品久久久久一区| 成人高清免费观看| 日本一区二区三区视频视频| 国产成人超碰人人澡人人澡| 欧美精品一区二| 国产一区二区三区四| 精品久久久久久久久久久久久久久| 免费观看久久久4p| 日韩精品中午字幕| 久久爱www久久做| 欧美精品一区二区三区视频 | 国产午夜精品久久久久久免费视| 麻豆91精品91久久久的内涵| 欧美一二三四在线| 韩日精品视频一区| 久久欧美一区二区| 风间由美性色一区二区三区| 中文字幕欧美日韩一区| 99久久精品国产导航| 亚洲裸体xxx| 欧美日韩精品一区二区| 日韩精品五月天| 精品日韩在线观看| 国产成人精品影院| 亚洲女厕所小便bbb| 欧美日韩一级视频| 麻豆专区一区二区三区四区五区| 欧美大尺度电影在线| 国产一区二区精品在线观看| 中文字幕一区二区三区av| 色天使色偷偷av一区二区| 五月天一区二区三区| 精品久久99ma| 91在线观看污| 亚洲18女电影在线观看| 337p粉嫩大胆噜噜噜噜噜91av | 在线观看91视频| 免费精品99久久国产综合精品| 国产亚洲精品aa| 欧美性猛片xxxx免费看久爱|