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

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

?? bitstream.c

?? 視頻壓縮編解碼標準MPEG4商業(yè)級別的VC代碼實現(xiàn)標準
?? C
?? 第 1 頁 / 共 3 頁
字號:
/***************************************************************************** * *  XVID MPEG-4 VIDEO CODEC *  - Bitstream reader/writer - * *  Copyright (C) 2001-2003 Peter Ross <pross@xvid.org> *                     2003 Cristoph Lampert <gruel@web.de> * *  This program is free software ; you can redistribute it and/or modify *  it under the terms of the GNU General Public License as published by *  the Free Software Foundation ; either version 2 of the License, or *  (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY ; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details. * *  You should have received a copy of the GNU General Public License *  along with this program ; if not, write to the Free Software *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA * * $Id$ * ****************************************************************************/#include <string.h>#include <stdio.h>#include "bitstream.h"#include "zigzag.h"#include "../quant/quant_matrix.h"#include "mbcoding.h"static uint32_t __inlinelog2bin(uint32_t value){	int n = 0;	while (value) {		value >>= 1;		n++;	}	return n;}static const uint32_t intra_dc_threshold_table[] = {	32,							/* never use */	13,	15,	17,	19,	21,	23,	1,};voidbs_get_matrix(Bitstream * bs,			  uint8_t * matrix){	int i = 0;	int last, value = 0;	do {		last = value;		value = BitstreamGetBits(bs, 8);		matrix[scan_tables[0][i++]] = value;	}	while (value != 0 && i < 64);	if (value != 0) return;	i--;	while (i < 64) {		matrix[scan_tables[0][i++]] = last;	}}/* * for PVOP addbits == fcode - 1 * for BVOP addbits == max(fcode,bcode) - 1 * returns mbpos */intread_video_packet_header(Bitstream *bs,						DECODER * dec,						const int addbits,						int * quant,						int * fcode_forward,						int  * fcode_backward,						int * intra_dc_threshold){	int startcode_bits = NUMBITS_VP_RESYNC_MARKER + addbits;	int mbnum_bits = log2bin(dec->mb_width *  dec->mb_height - 1);	int mbnum;	int hec = 0;	BitstreamSkip(bs, BitstreamNumBitsToByteAlign(bs));	BitstreamSkip(bs, startcode_bits);	DPRINTF(XVID_DEBUG_STARTCODE, "<video_packet_header>\n");	if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)	{		hec = BitstreamGetBit(bs);		/* header_extension_code */		if (hec && !(dec->sprite_enable == SPRITE_STATIC /* && current_coding_type = I_VOP */))		{			BitstreamSkip(bs, 13);			/* vop_width */			READ_MARKER();			BitstreamSkip(bs, 13);			/* vop_height */			READ_MARKER();			BitstreamSkip(bs, 13);			/* vop_horizontal_mc_spatial_ref */			READ_MARKER();			BitstreamSkip(bs, 13);			/* vop_vertical_mc_spatial_ref */			READ_MARKER();		}	}	mbnum = BitstreamGetBits(bs, mbnum_bits);		/* macroblock_number */	DPRINTF(XVID_DEBUG_HEADER, "mbnum %i\n", mbnum);	if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)	{		*quant = BitstreamGetBits(bs, dec->quant_bits);	/* quant_scale */		DPRINTF(XVID_DEBUG_HEADER, "quant %i\n", *quant);	}	if (dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR)		hec = BitstreamGetBit(bs);		/* header_extension_code */	DPRINTF(XVID_DEBUG_HEADER, "header_extension_code %i\n", hec);	if (hec)	{		int time_base;		int time_increment;		int coding_type;		for (time_base=0; BitstreamGetBit(bs)!=0; time_base++);		/* modulo_time_base */		READ_MARKER();		if (dec->time_inc_bits)			time_increment = (BitstreamGetBits(bs, dec->time_inc_bits));	/* vop_time_increment */		READ_MARKER();		DPRINTF(XVID_DEBUG_HEADER,"time %i:%i\n", time_base, time_increment);		coding_type = BitstreamGetBits(bs, 2);		DPRINTF(XVID_DEBUG_HEADER,"coding_type %i\n", coding_type);		if (dec->shape != VIDOBJLAY_SHAPE_RECTANGULAR)		{			BitstreamSkip(bs, 1);	/* change_conv_ratio_disable */			if (coding_type != I_VOP)				BitstreamSkip(bs, 1);	/* vop_shape_coding_type */		}		if (dec->shape != VIDOBJLAY_SHAPE_BINARY_ONLY)		{			*intra_dc_threshold = intra_dc_threshold_table[BitstreamGetBits(bs, 3)];			if (dec->sprite_enable == SPRITE_GMC && coding_type == S_VOP &&				dec->sprite_warping_points > 0)			{				/* TODO: sprite trajectory */			}			if (dec->reduced_resolution_enable &&				dec->shape == VIDOBJLAY_SHAPE_RECTANGULAR &&				(coding_type == P_VOP || coding_type == I_VOP))			{				BitstreamSkip(bs, 1); /* XXX: vop_reduced_resolution */			}			if (coding_type != I_VOP && fcode_forward)			{				*fcode_forward = BitstreamGetBits(bs, 3);				DPRINTF(XVID_DEBUG_HEADER,"fcode_forward %i\n", *fcode_forward);			}			if (coding_type == B_VOP && fcode_backward)			{				*fcode_backward = BitstreamGetBits(bs, 3);				DPRINTF(XVID_DEBUG_HEADER,"fcode_backward %i\n", *fcode_backward);			}		}	}	if (dec->newpred_enable)	{		int vop_id;		int vop_id_for_prediction;		vop_id = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));		DPRINTF(XVID_DEBUG_HEADER, "vop_id %i\n", vop_id);		if (BitstreamGetBit(bs))	/* vop_id_for_prediction_indication */		{			vop_id_for_prediction = BitstreamGetBits(bs, MIN(dec->time_inc_bits + 3, 15));			DPRINTF(XVID_DEBUG_HEADER, "vop_id_for_prediction %i\n", vop_id_for_prediction);		}		READ_MARKER();	}	return mbnum;}/* vol estimation header */static voidread_vol_complexity_estimation_header(Bitstream * bs, DECODER * dec){	ESTIMATION * e = &dec->estimation;	e->method = BitstreamGetBits(bs, 2);	/* estimation_method */	DPRINTF(XVID_DEBUG_HEADER,"+ complexity_estimation_header; method=%i\n", e->method);	if (e->method == 0 || e->method == 1)	{		if (!BitstreamGetBit(bs))		/* shape_complexity_estimation_disable */		{			e->opaque = BitstreamGetBit(bs);		/* opaque */			e->transparent = BitstreamGetBit(bs);		/* transparent */			e->intra_cae = BitstreamGetBit(bs);		/* intra_cae */			e->inter_cae = BitstreamGetBit(bs);		/* inter_cae */			e->no_update = BitstreamGetBit(bs);		/* no_update */			e->upsampling = BitstreamGetBit(bs);		/* upsampling */		}		if (!BitstreamGetBit(bs))	/* texture_complexity_estimation_set_1_disable */		{			e->intra_blocks = BitstreamGetBit(bs);		/* intra_blocks */			e->inter_blocks = BitstreamGetBit(bs);		/* inter_blocks */			e->inter4v_blocks = BitstreamGetBit(bs);		/* inter4v_blocks */			e->not_coded_blocks = BitstreamGetBit(bs);		/* not_coded_blocks */		}	}	READ_MARKER();	if (!BitstreamGetBit(bs))		/* texture_complexity_estimation_set_2_disable */	{		e->dct_coefs = BitstreamGetBit(bs);		/* dct_coefs */		e->dct_lines = BitstreamGetBit(bs);		/* dct_lines */		e->vlc_symbols = BitstreamGetBit(bs);		/* vlc_symbols */		e->vlc_bits = BitstreamGetBit(bs);		/* vlc_bits */	}	if (!BitstreamGetBit(bs))		/* motion_compensation_complexity_disable */	{		e->apm = BitstreamGetBit(bs);		/* apm */		e->npm = BitstreamGetBit(bs);		/* npm */		e->interpolate_mc_q = BitstreamGetBit(bs);		/* interpolate_mc_q */		e->forw_back_mc_q = BitstreamGetBit(bs);		/* forw_back_mc_q */		e->halfpel2 = BitstreamGetBit(bs);		/* halfpel2 */		e->halfpel4 = BitstreamGetBit(bs);		/* halfpel4 */	}	READ_MARKER();	if (e->method == 1)	{		if (!BitstreamGetBit(bs))	/* version2_complexity_estimation_disable */		{			e->sadct = BitstreamGetBit(bs);		/* sadct */			e->quarterpel = BitstreamGetBit(bs);		/* quarterpel */		}	}}/* vop estimation header */static voidread_vop_complexity_estimation_header(Bitstream * bs, DECODER * dec, int coding_type){	ESTIMATION * e = &dec->estimation;	if (e->method == 0 || e->method == 1)	{		if (coding_type == I_VOP) {			if (e->opaque)		BitstreamSkip(bs, 8);	/* dcecs_opaque */			if (e->transparent) BitstreamSkip(bs, 8);	/* */			if (e->intra_cae)	BitstreamSkip(bs, 8);	/* */			if (e->inter_cae)	BitstreamSkip(bs, 8);	/* */			if (e->no_update)	BitstreamSkip(bs, 8);	/* */			if (e->upsampling)	BitstreamSkip(bs, 8);	/* */			if (e->intra_blocks) BitstreamSkip(bs, 8);	/* */			if (e->not_coded_blocks) BitstreamSkip(bs, 8);	/* */			if (e->dct_coefs)	BitstreamSkip(bs, 8);	/* */			if (e->dct_lines)	BitstreamSkip(bs, 8);	/* */			if (e->vlc_symbols) BitstreamSkip(bs, 8);	/* */			if (e->vlc_bits)	BitstreamSkip(bs, 8);	/* */			if (e->sadct)		BitstreamSkip(bs, 8);	/* */		}		if (coding_type == P_VOP) {			if (e->opaque) BitstreamSkip(bs, 8);		/* */			if (e->transparent) BitstreamSkip(bs, 8);	/* */			if (e->intra_cae)	BitstreamSkip(bs, 8);	/* */			if (e->inter_cae)	BitstreamSkip(bs, 8);	/* */			if (e->no_update)	BitstreamSkip(bs, 8);	/* */			if (e->upsampling) BitstreamSkip(bs, 8);	/* */			if (e->intra_blocks) BitstreamSkip(bs, 8);	/* */			if (e->not_coded_blocks)	BitstreamSkip(bs, 8);	/* */			if (e->dct_coefs)	BitstreamSkip(bs, 8);	/* */			if (e->dct_lines)	BitstreamSkip(bs, 8);	/* */			if (e->vlc_symbols) BitstreamSkip(bs, 8);	/* */			if (e->vlc_bits)	BitstreamSkip(bs, 8);	/* */			if (e->inter_blocks) BitstreamSkip(bs, 8);	/* */			if (e->inter4v_blocks) BitstreamSkip(bs, 8);	/* */			if (e->apm)			BitstreamSkip(bs, 8);	/* */			if (e->npm)			BitstreamSkip(bs, 8);	/* */			if (e->forw_back_mc_q) BitstreamSkip(bs, 8);	/* */			if (e->halfpel2)	BitstreamSkip(bs, 8);	/* */			if (e->halfpel4)	BitstreamSkip(bs, 8);	/* */			if (e->sadct)		BitstreamSkip(bs, 8);	/* */			if (e->quarterpel)	BitstreamSkip(bs, 8);	/* */		}		if (coding_type == B_VOP) {			if (e->opaque)		BitstreamSkip(bs, 8);	/* */			if (e->transparent)	BitstreamSkip(bs, 8);	/* */			if (e->intra_cae)	BitstreamSkip(bs, 8);	/* */			if (e->inter_cae)	BitstreamSkip(bs, 8);	/* */			if (e->no_update)	BitstreamSkip(bs, 8);	/* */			if (e->upsampling)	BitstreamSkip(bs, 8);	/* */			if (e->intra_blocks) BitstreamSkip(bs, 8);	/* */			if (e->not_coded_blocks) BitstreamSkip(bs, 8);	/* */			if (e->dct_coefs)	BitstreamSkip(bs, 8);	/* */			if (e->dct_lines)	BitstreamSkip(bs, 8);	/* */			if (e->vlc_symbols)	BitstreamSkip(bs, 8);	/* */			if (e->vlc_bits)	BitstreamSkip(bs, 8);	/* */			if (e->inter_blocks) BitstreamSkip(bs, 8);	/* */			if (e->inter4v_blocks) BitstreamSkip(bs, 8);	/* */			if (e->apm)			BitstreamSkip(bs, 8);	/* */			if (e->npm)			BitstreamSkip(bs, 8);	/* */			if (e->forw_back_mc_q) BitstreamSkip(bs, 8);	/* */			if (e->halfpel2)	BitstreamSkip(bs, 8);	/* */			if (e->halfpel4)	BitstreamSkip(bs, 8);	/* */			if (e->interpolate_mc_q) BitstreamSkip(bs, 8);	/* */			if (e->sadct)		BitstreamSkip(bs, 8);	/* */			if (e->quarterpel)	BitstreamSkip(bs, 8);	/* */		}		if (coding_type == S_VOP && dec->sprite_enable == SPRITE_STATIC) {			if (e->intra_blocks) BitstreamSkip(bs, 8);	/* */			if (e->not_coded_blocks) BitstreamSkip(bs, 8);	/* */			if (e->dct_coefs)	BitstreamSkip(bs, 8);	/* */			if (e->dct_lines)	BitstreamSkip(bs, 8);	/* */			if (e->vlc_symbols)	BitstreamSkip(bs, 8);	/* */			if (e->vlc_bits)	BitstreamSkip(bs, 8);	/* */			if (e->inter_blocks) BitstreamSkip(bs, 8);	/* */			if (e->inter4v_blocks)	BitstreamSkip(bs, 8);	/* */			if (e->apm)			BitstreamSkip(bs, 8);	/* */			if (e->npm)			BitstreamSkip(bs, 8);	/* */			if (e->forw_back_mc_q)	BitstreamSkip(bs, 8);	/* */			if (e->halfpel2)	BitstreamSkip(bs, 8);	/* */			if (e->halfpel4)	BitstreamSkip(bs, 8);	/* */			if (e->interpolate_mc_q) BitstreamSkip(bs, 8);	/* */		}	}}/*decode headersreturns coding_type, or -1 if error*/#define VIDOBJ_START_CODE_MASK		0x0000001f#define VIDOBJLAY_START_CODE_MASK	0x0000000fintBitstreamReadHeaders(Bitstream * bs,					 DECODER * dec,					 uint32_t * rounding,					 uint32_t * quant,					 uint32_t * fcode_forward,					 uint32_t * fcode_backward,					 uint32_t * intra_dc_threshold,					 WARPPOINTS *gmc_warp){	uint32_t vol_ver_id;	uint32_t coding_type;	uint32_t start_code;	uint32_t time_incr = 0;	int32_t time_increment = 0;	int resize = 0;	while ((BitstreamPos(bs) >> 3) + 4 <= bs->length) {		BitstreamByteAlign(bs);		start_code = BitstreamShowBits(bs, 32);		if (start_code == VISOBJSEQ_START_CODE) {			int profile;			DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object_sequence>\n");			BitstreamSkip(bs, 32);	/* visual_object_sequence_start_code */			profile = BitstreamGetBits(bs, 8);	/* profile_and_level_indication */			DPRINTF(XVID_DEBUG_HEADER, "profile_and_level_indication %i\n", profile);		} else if (start_code == VISOBJSEQ_STOP_CODE) {			BitstreamSkip(bs, 32);	/* visual_object_sequence_stop_code */			DPRINTF(XVID_DEBUG_STARTCODE, "</visual_object_sequence>\n");		} else if (start_code == VISOBJ_START_CODE) {			int visobj_ver_id;			DPRINTF(XVID_DEBUG_STARTCODE, "<visual_object>\n");			BitstreamSkip(bs, 32);	/* visual_object_start_code */			if (BitstreamGetBit(bs))	/* is_visual_object_identified */			{				visobj_ver_id = BitstreamGetBits(bs, 4);	/* visual_object_ver_id */				DPRINTF(XVID_DEBUG_HEADER,"visobj_ver_id %i\n", visobj_ver_id);				BitstreamSkip(bs, 3);	/* visual_object_priority */			} else {				visobj_ver_id = 1;			}			if (BitstreamShowBits(bs, 4) != VISOBJ_TYPE_VIDEO)	/* visual_object_type */			{				DPRINTF(XVID_DEBUG_ERROR, "visual_object_type != video\n");				return -1;			}			BitstreamSkip(bs, 4);			/* video_signal_type */			if (BitstreamGetBit(bs))	/* video_signal_type */			{				DPRINTF(XVID_DEBUG_HEADER,"+ video_signal_type\n");				BitstreamSkip(bs, 3);	/* video_format */				BitstreamSkip(bs, 1);	/* video_range */				if (BitstreamGetBit(bs))	/* color_description */				{					DPRINTF(XVID_DEBUG_HEADER,"+ color_description");					BitstreamSkip(bs, 8);	/* color_primaries */					BitstreamSkip(bs, 8);	/* transfer_characteristics */					BitstreamSkip(bs, 8);	/* matrix_coefficients */				}			}		} else if ((start_code & ~VIDOBJ_START_CODE_MASK) == VIDOBJ_START_CODE) {			DPRINTF(XVID_DEBUG_STARTCODE, "<video_object>\n");			DPRINTF(XVID_DEBUG_HEADER, "vo id %i\n", start_code & VIDOBJ_START_CODE_MASK);			BitstreamSkip(bs, 32);	/* video_object_start_code */		} else if ((start_code & ~VIDOBJLAY_START_CODE_MASK) == VIDOBJLAY_START_CODE) {			DPRINTF(XVID_DEBUG_STARTCODE, "<video_object_layer>\n");			DPRINTF(XVID_DEBUG_HEADER, "vol id %i\n", start_code & VIDOBJLAY_START_CODE_MASK);			BitstreamSkip(bs, 32);	/* video_object_layer_start_code */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲四区在线观看| 欧美日韩一级二级三级| 国产色产综合产在线视频| 久久se精品一区二区| 精品免费国产二区三区| 国产一区二区不卡在线| 日韩欧美一区二区三区在线| 精品制服美女丁香| xnxx国产精品| 不卡一区中文字幕| 亚洲综合在线电影| 欧美久久久一区| 久久精品国产亚洲高清剧情介绍| 欧美精品一区二区精品网| 国产福利一区二区三区视频| 日韩毛片在线免费观看| 欧美亚一区二区| 奇米影视7777精品一区二区| 久久欧美一区二区| 国产高清无密码一区二区三区| 中文字幕在线不卡一区| 欧美综合亚洲图片综合区| 日本午夜精品视频在线观看 | 一本色道久久加勒比精品| 亚洲综合色婷婷| 欧美电影免费观看高清完整版在线| 精品一区二区三区免费毛片爱| 国产欧美日韩亚州综合| 91色porny| 蜜乳av一区二区| 国产精品理论在线观看| 欧美日韩在线播放一区| 激情六月婷婷综合| 国产精品久久久久永久免费观看 | 久久免费精品国产久精品久久久久| 国产精品影视网| 一区二区三区精品视频在线| 日韩精品中文字幕在线不卡尤物 | 欧美一区二区三区在线观看视频| 国产精品亚洲一区二区三区妖精| 亚洲精品中文在线| 精品少妇一区二区| 欧美伊人精品成人久久综合97| 久久99国产精品免费| 亚洲欧美日韩在线| 日韩欧美一二区| av爱爱亚洲一区| 九九精品视频在线看| 亚洲一区二区精品3399| 2019国产精品| 在线成人免费视频| 91网站黄www| 国产一二三精品| 日本成人中文字幕在线视频| 国产精品久久久久久久久免费樱桃| 51精品国自产在线| 94-欧美-setu| 国产91精品久久久久久久网曝门| 午夜精品福利一区二区蜜股av | 亚洲精品伦理在线| 国产女同性恋一区二区| 日韩午夜电影在线观看| 精品1区2区3区| 欧美午夜精品一区二区三区| 国产乱国产乱300精品| 免费的成人av| 亚洲h动漫在线| 亚洲欧美国产高清| 国产精品久久久久久久久免费相片 | 久久免费精品国产久精品久久久久| 欧美日韩国产首页在线观看| 色综合久久中文字幕| 国产69精品久久99不卡| 国产在线播放一区| 美女视频黄 久久| 亚洲综合久久久久| 亚洲一区二区三区四区五区黄| 国产精品久久久久久久午夜片| 久久久久久久久久久久久女国产乱| 欧美成人一区二区三区在线观看 | 久久精品国产99久久6| 视频一区欧美精品| 石原莉奈在线亚洲二区| 亚洲va国产天堂va久久en| 亚洲高清免费一级二级三级| 樱花草国产18久久久久| 亚洲黄色尤物视频| 亚洲高清视频的网址| 午夜私人影院久久久久| 日韩影院免费视频| 蜜桃一区二区三区在线观看| 久久精品噜噜噜成人av农村| 老色鬼精品视频在线观看播放| 久久电影国产免费久久电影| 美腿丝袜亚洲色图| 国产一区二区在线看| 国产成人日日夜夜| 不卡一区在线观看| 91激情在线视频| 91麻豆国产在线观看| 在线观看视频91| 日韩免费观看高清完整版| 精品999在线播放| 国产精品免费免费| 亚洲综合小说图片| 蜜臀av性久久久久蜜臀aⅴ | av福利精品导航| 欧美三级日韩在线| 精品成人在线观看| 亚洲免费电影在线| 日韩一区精品字幕| 成人毛片视频在线观看| 在线中文字幕一区二区| 日韩视频在线一区二区| 中文字幕亚洲欧美在线不卡| 亚洲午夜精品在线| 国产综合成人久久大片91| 一本在线高清不卡dvd| 日韩欧美一区二区免费| 亚洲视频资源在线| 久久精品99国产精品日本| 粉嫩aⅴ一区二区三区四区五区| 欧美一二三四在线| 欧美丰满美乳xxx高潮www| 777精品伊人久久久久大香线蕉| 欧美一区二区二区| 欧美一级午夜免费电影| 国产精品国产精品国产专区不片| 中文字幕一区在线观看视频| 亚洲婷婷综合色高清在线| 久草热8精品视频在线观看| 精品影视av免费| 国产99久久久精品| 天堂久久久久va久久久久| 午夜伊人狠狠久久| 黄页网站大全一区二区| 欧美日韩卡一卡二| 91精品麻豆日日躁夜夜躁| 欧美日韩一卡二卡| 亚洲欧美日本在线| 午夜伦理一区二区| 日韩精品亚洲一区| 色婷婷精品久久二区二区蜜臂av | 在线视频你懂得一区二区三区| 欧美性色综合网| 欧美亚洲综合色| 亚洲欧美日韩中文字幕一区二区三区 | 亚洲精品成人天堂一二三| 九九九久久久精品| 波多野结衣精品在线| 欧美图区在线视频| 亚洲欧美在线高清| 亚洲精品日产精品乱码不卡| 亚洲国产毛片aaaaa无费看| 成人天堂资源www在线| 欧美午夜免费电影| 精品国产一区二区亚洲人成毛片 | 国产成人av自拍| 色欧美乱欧美15图片| 欧美日韩国产影片| 欧美一区二区在线视频| 日韩一区二区麻豆国产| 中文字幕第一页久久| 午夜精品免费在线观看| 国产jizzjizz一区二区| 欧美男同性恋视频网站| 56国语精品自产拍在线观看| 亚洲天堂2016| 美国毛片一区二区三区| 国产一区二区不卡在线| 欧美成人aa大片| 亚洲午夜羞羞片| 亚洲图片你懂的| 成人丝袜高跟foot| 日韩一卡二卡三卡四卡| 激情五月激情综合网| 欧美在线短视频| 国产精品久久久一区麻豆最新章节| 不卡的电影网站| 久久久久亚洲蜜桃| 视频一区在线视频| 日韩欧美视频一区| 亚洲无线码一区二区三区| 日本va欧美va瓶| 精品1区2区在线观看| 日日夜夜一区二区| 韩国欧美一区二区| 日韩一区日韩二区| 国产不卡视频一区| 一区二区三区欧美激情| 成人一区二区三区视频在线观看| 日韩丝袜美女视频| 国产99久久久久久免费看农村| 日韩亚洲国产中文字幕欧美| 亚洲一区免费视频| 精品精品欲导航| 亚洲国产精品一区二区www在线 | 久久精品夜色噜噜亚洲a∨| 1024亚洲合集| av激情成人网|