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

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

?? jidctred.c

?? MPEG4解碼程序源代碼(能夠對各種MPEG4文件進行解碼)
?? C
字號:
////////////////////////////////////////////////////////////////////////
//
//	Note : this file is included as part of the Smaller Animals Software
//	JpegFile package. Though this file has not been modified from it's 
//	original IJG 6a form, it is not the responsibility on the Independent
//	JPEG Group to answer questions regarding this code.
//	
//	Any questions you have about this code should be addressed to :
//
//	CHRISDL@PAGESZ.NET	- the distributor of this package.
//
//	Remember, by including this code in the JpegFile package, Smaller 
//	Animals Software assumes all responsibilities for answering questions
//	about it. If we (SA Software) can't answer your questions ourselves, we 
//	will direct you to people who can.
//
//	Thanks, CDL.
//
////////////////////////////////////////////////////////////////////////

/*
 * jidctred.c
 *
 * Copyright (C) 1994-1996, 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.
 */

#if BITS_IN_JSAMPLE == 8
#define MULTIPLY(var,const)  MULTIPLY16C16(var,const)
#else
#define MULTIPLY(var,const)  ((var) * (const))
#endif


/* 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] | inptr[DCTSIZE*2] | inptr[DCTSIZE*3] |
	 inptr[DCTSIZE*5] | inptr[DCTSIZE*6] | 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] | wsptr[2] | wsptr[3] | wsptr[5] | wsptr[6] |
	 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] | inptr[DCTSIZE*3] |
	 inptr[DCTSIZE*5] | 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] | wsptr[3] | wsptr[5] | 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一区二区三区免费野_久草精品视频
国产精品综合视频| 精品福利一区二区三区| 日韩免费高清视频| 亚洲三级免费电影| 麻豆精品国产传媒mv男同| 91欧美一区二区| 精品国内二区三区| 午夜精品福利视频网站| 成人性色生活片免费看爆迷你毛片| 欧美色大人视频| 国产精品九色蝌蚪自拍| 老司机午夜精品99久久| 欧美亚洲日本国产| 亚洲人成人一区二区在线观看| 国产在线精品不卡| 欧美一二三四在线| 污片在线观看一区二区| 91麻豆高清视频| 欧美r级电影在线观看| 色老综合老女人久久久| 国产午夜精品一区二区三区视频| 五月天激情综合| 欧美亚洲自拍偷拍| 日韩美女啊v在线免费观看| 国产成人日日夜夜| 精品区一区二区| 老司机免费视频一区二区| 欧美日韩中文一区| 一区二区三区四区蜜桃| 99国产欧美另类久久久精品| 国产天堂亚洲国产碰碰| 国产成人99久久亚洲综合精品| 日韩你懂的在线观看| 免费观看91视频大全| 欧美一区二区三区播放老司机| 香蕉久久一区二区不卡无毒影院 | 日韩精品欧美精品| 欧美日韩高清一区| 日韩国产欧美一区二区三区| 制服丝袜成人动漫| 日本欧美大码aⅴ在线播放| 欧美一级欧美一级在线播放| 日韩成人一区二区| 欧美一区二区三区在线视频| 日韩高清在线观看| 久久久久久久综合狠狠综合| 国产激情视频一区二区在线观看| 国产免费观看久久| 91女神在线视频| 亚洲伊人伊色伊影伊综合网| 欧美性色黄大片| 毛片av一区二区| 国产日产欧美一区二区三区| 99久久亚洲一区二区三区青草| 亚洲男人的天堂在线观看| 一本大道久久a久久综合婷婷| 偷拍一区二区三区| 日韩欧美国产系列| 成人听书哪个软件好| 亚洲欧美日韩人成在线播放| 欧美久久久久久蜜桃| 国产一区二区精品久久91| 亚洲另类一区二区| 欧美成人一级视频| 99re热这里只有精品视频| 亚洲国产精品久久人人爱蜜臀| 精品美女在线观看| 日本韩国视频一区二区| 另类中文字幕网| 亚洲欧洲性图库| 日韩欧美中文字幕公布| 一本大道久久a久久综合 | 亚洲午夜视频在线观看| 日韩欧美成人激情| 91欧美一区二区| 国产精品一区二区三区网站| 亚洲影院久久精品| 国产三级精品在线| 91精品在线观看入口| 一本一道波多野结衣一区二区| 久久精品国产免费看久久精品| 亚洲婷婷国产精品电影人久久| 日韩欧美专区在线| 欧美日韩一区精品| 成人av网站在线观看免费| 日本不卡免费在线视频| 亚洲精品国产精品乱码不99 | 精品在线一区二区| 亚洲精品大片www| 国产亚洲精品久| 日韩精品一区二区三区在线观看| 欧日韩精品视频| 粉嫩嫩av羞羞动漫久久久| 蜜桃视频在线观看一区| 午夜精品一区二区三区三上悠亚| 国产精品乱码一区二区三区软件| 欧美v日韩v国产v| 欧美精品粉嫩高潮一区二区| 色丁香久综合在线久综合在线观看| 国产福利91精品一区二区三区| 美女一区二区视频| 日本最新不卡在线| 天堂久久一区二区三区| 一区二区三区欧美在线观看| **性色生活片久久毛片| 国产精品每日更新在线播放网址| 日韩精品一区二区三区中文不卡| 69p69国产精品| 91精品久久久久久久久99蜜臂| 欧美在线观看视频一区二区| 色婷婷亚洲一区二区三区| 91浏览器在线视频| 91在线精品一区二区| 波多野洁衣一区| 色综合咪咪久久| 在线视频一区二区三区| 在线观看成人小视频| 在线日韩国产精品| 欧美伊人久久久久久久久影院| 在线免费观看视频一区| 在线看日韩精品电影| 欧美日韩国产一二三| 欧美片在线播放| 欧美一区二区黄色| 精品国产乱码久久| 欧美精品一区二区在线播放| 久久久久久久久伊人| 欧美激情综合五月色丁香小说| 国产精品国产精品国产专区不片| 亚洲欧洲国产专区| 亚洲一区二区三区四区在线免费观看| 亚洲国产另类精品专区| 日本不卡高清视频| 国产成人免费高清| 一本色道久久综合狠狠躁的推荐| 欧美少妇性性性| 日韩女优毛片在线| 欧美国产禁国产网站cc| 洋洋成人永久网站入口| 日本aⅴ免费视频一区二区三区| 久草精品在线观看| 白白色 亚洲乱淫| 欧美私模裸体表演在线观看| 日韩欧美一区在线| 国产欧美中文在线| 亚洲国产精品视频| 国产一区不卡在线| 91女厕偷拍女厕偷拍高清| 欧美高清一级片在线| 久久久亚洲精华液精华液精华液| 国产精品福利影院| 日日夜夜一区二区| 国产成人综合在线播放| 在线观看欧美黄色| 久久久久久一级片| 午夜电影久久久| 成人性生交大片免费看视频在线 | 久久久久国产精品麻豆ai换脸| 中文成人av在线| 日韩国产精品大片| 91视频在线观看| 精品国产免费人成电影在线观看四季| 最新国产成人在线观看| 久久电影网站中文字幕| 在线观看视频一区二区| 久久久久久久电影| 日韩精品成人一区二区三区| 99热精品国产| 亚洲精品一区二区精华| 五月婷婷综合在线| av中文字幕一区| 久久亚洲一区二区三区四区| 亚洲第一狼人社区| 97超碰欧美中文字幕| 久久久美女毛片| 奇米888四色在线精品| 欧美午夜片在线看| 亚洲欧洲美洲综合色网| 高清不卡在线观看av| 精品少妇一区二区三区视频免付费| 亚洲精品高清在线观看| 91丝袜呻吟高潮美腿白嫩在线观看| 欧美不卡一区二区三区四区| 午夜不卡av在线| 欧美综合色免费| 一区二区三区四区蜜桃| 色八戒一区二区三区| 中文字幕一区二区三区不卡在线 | 色欧美片视频在线观看| 国产精品私人影院| 国产黄色精品视频| 久久久亚洲欧洲日产国码αv| 奇米一区二区三区av| 欧美日韩一区 二区 三区 久久精品| 自拍偷拍国产亚洲| 91一区二区在线观看| 国产精品萝li| 成人av小说网| 亚洲精品美国一| 欧美日韩一本到|