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

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

?? osdlib.c

?? SigmDesign SMP8634 media decode chip development SDK
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * * Copyright (c) Sigma Designs, Inc. 2002. All rights reserved. * *//** * @file osdbuf_control.c * @brief libray control OSD buffers on 86XX *  * @author Julien Lerouge */#include <stdio.h>#include <stdlib.h>#include <string.h>#include <unistd.h>#include <sys/stat.h>#include <getopt.h>#define ALLOW_OS_CODE 1#include "osdlib.h"/* For debug/verbose output */#if 1#define DEB(f) (f)#else#define DEB(f)#endifstruct osd_format_string_s osd_color_mode_string[EMhwlibColorMode_TrueColorWithKey+1] = {	{"",""},	{"lut1bpp", "clut with 1bpp"},	{"lut2bpp", "clut with 2bpp"},	{"lut4bpp", "clut with 4bpp"},	{"lut8bpp", "clut with 8bpp"},	{"tc", "true color"},	{"tck", "true color with alpha key"},};struct osd_format_string_s osd_color_format_string[EMhwlibColorFormat_16BPP_4444+1] = {	{"",""},	{"24bpp_565","24 bpp 5:6:5 (alpha0)"},	{"24bpp","24 bpp 8:8:8 (alpha0)"},	{"32bpp_4444","32 bpp 4:4:4:4"},	{"32bpp","32 bpp 8:8:8:8"},	{"16bpp_565","16 bpp 5:6:5 (alpha0)"},	{"16bpp_1555","16 bpp 1:5:5:5 (alpha0 or alpha1)"},	{"16bpp_4444","16 bpp 4:4:4:4"}};struct osd_format_string_s osd_csc[EMhwlibColorSpace_YUV_709+1] = {	{"", ""},	{"rgb_16_235","RGB 16 235"},	{"rgb_0_255","RGB 0 255"},	{"yuv_601","YUV 601"},	{"yuv_709","YUV 709"},};#define RUASP(pRUA, moduleID, propertyID, pValue, ValueSize)                                                    \        while ((status = RUASetProperty(pRUA, moduleID, propertyID, pValue, ValueSize, 0)) == RM_PENDING);         \                                                                                                                \        if (status != RM_OK) {                                                                                     \                RMDBGLOG((ENABLE, "Cannot set Property %d on module %d, %d\n", propertyID, moduleID, status));     \                return status;                                                                                     \        }#define RUAGP(pRUA, moduleID, propertyID, pValue, ValueSize)                                                    \        while ((status = RUAGetProperty(pRUA, moduleID, propertyID, pValue, ValueSize)) == RM_PENDING);         \                                                                                                                \        if (status != RM_OK) {                                                                                     \                RMDBGLOG((ENABLE, "Cannot get Property %d on module %d, %d\n", propertyID, moduleID, status));     \                return status;                                                                                     \        }#define RUAEP(pRUA, moduleID, propertyID, pValueIn, ValueInSize, pValueOut, ValueOutSize)                       \        while ((status = RUAExchangeProperty(pRUA, moduleID, propertyID, pValueIn, ValueInSize,			\	                                     pValueOut, ValueOutSize)) == RM_PENDING);         			\                                                                                                                \        if (status != RM_OK) {                                                                                     	\                RMDBGLOG((ENABLE, "Cannot exchange Property %d on module %d, %d\n", propertyID, moduleID, status));     \                return status;                                                                                     	\        }/** Print infos on the given OSD * @param p_osd - filled osd_descriptor * @return void */void print_osd_full_info(struct osd_descriptor *p_osd){	RMuint32 range = 1 << p_osd->kcolor.Range;	RMuint32 end_r = p_osd->kcolor.R_Cr + range;	RMuint32 end_g = p_osd->kcolor.G_Y + range;	RMuint32 end_b = p_osd->kcolor.B_Cb + range;		if (p_osd == NULL )		return;	if (p_osd->LumaAddr){		fprintf(stdout,"Persistent OSD at 0x%08lX with %7lu bytes\n",		        p_osd->LumaAddr, p_osd->LumaSize);		/* FIXME some properties are missing*/		fprintf(stdout,"Format                    : %s:%s\n", osd_color_mode_string[p_osd->profile.ColorMode].name,		        osd_color_format_string[p_osd->profile.ColorFormat].name);		fprintf(stdout,"Resolution                : %ldx%ld\n", p_osd->profile.Width, p_osd->profile.Height);		fprintf(stdout,"Color Space Conversion    : %s\n", osd_csc[p_osd->profile.ColorSpace].comment);		fprintf(stdout,"Input Resolution          : %ldx%ld\n", p_osd->input_window.Width, p_osd->input_window.Height);		fprintf(stdout,"Taps                      : %d\n", p_osd->scaling_config.Taps ? 4 : 2);		fprintf(stdout,"Anti Flicker Color        : %ld\n", p_osd->scaling_config.AntiFlickerColor);		fprintf(stdout,"Anti Flicker Alpha        : %ld\n", p_osd->scaling_config.AntiFlickerAlpha);		fprintf(stdout,"Direction estimation      : %s\n", p_osd->scaling_config.AdaptativeEnable ? "enabled" : "disabled" );		fprintf(stdout,"Alpha0                    : %ld\n", p_osd->alpha0);		fprintf(stdout,"Alpha1                    : %ld\n", p_osd->alpha1);		fprintf(stdout,"Fading                    : %s\n", p_osd->fading ? "enabled" : "disabled" );		fprintf(stdout,"OSD output channel status : %s\n", p_osd->dcc_info.disp_info->osd_enable[0] ? "enabled" : "disabled" );		if (p_osd->profile.ColorMode == EMhwlibColorMode_TrueColorWithKey)			fprintf(stdout,"Key color (R/Cr,G/Y,B/Cb) : [%lu,%lu[, [%lu,%lu[, [%lu,%lu[\n", 			        p_osd->kcolor.R_Cr, CROPV(end_r,256), 				p_osd->kcolor.G_Y, CROPV(end_g,256),				p_osd->kcolor.B_Cb, CROPV(end_b,256));	}else{		fprintf(stdout,"No persistent OSD buffer registered\n");	}}/** Get the BPP corresponding to one mode:submode  * @param osd_color_mode * @param osd_color_format * @return bpp 0 on error */RMuint32 get_osd_bpp(RMuint32 osd_color_mode, RMuint32 osd_color_format){	switch(osd_color_mode){		case EMhwlibColorMode_LUT_1BPP:		case EMhwlibColorMode_LUT_2BPP:		case EMhwlibColorMode_LUT_4BPP:		case EMhwlibColorMode_LUT_8BPP:			return (1 << (osd_color_mode - EMhwlibColorMode_LUT_1BPP));		case EMhwlibColorMode_TrueColor:		case EMhwlibColorMode_TrueColorWithKey:			switch(osd_color_format){				case EMhwlibColorFormat_16BPP_4444:				case EMhwlibColorFormat_16BPP_565:				case EMhwlibColorFormat_16BPP_1555:					return 16;				case EMhwlibColorFormat_24BPP:      //24BPP is really 32BPP				case EMhwlibColorFormat_24BPP_565:  				case EMhwlibColorFormat_32BPP:				case EMhwlibColorFormat_32BPP_4444:					return 32;				default:					return 0;			}		default:			return 0;	}}/** Get current OSD buffer info, store it in p_osd * @param p_osd - osd handle * @return RMstatus */RMstatus get_osd_infos(struct osd_descriptor *p_osd){	RMstatus status;	RMuint32 surface;	struct DisplayBlock_SurfaceSize_in_type size_in;	struct DisplayBlock_SurfaceSize_out_type size_out;	struct DisplayBlock_SurfaceInfo_out_type config;	DEB(fprintf(stderr,"begin get_osd_infos\n"));	if (p_osd == NULL || p_osd->dcc_info.pDCC == NULL || p_osd->dcc_info.pRUA == NULL)		return RM_ERROR;	status = DCCGetScalerModuleID(p_osd->dcc_info.pDCC, p_osd->dcc_info.route, DCCSurface_OSD, 0, 	                              &p_osd->dcc_info.disp_info->osd_scaler[0]);	if (RMFAILED(status)){		fprintf(stderr,"Error getting OSD scaler\n");		return status;	}	RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0], RMGenericPropertyID_Surface,	      &surface, sizeof(surface));	DEB(fprintf(stderr,"surface = 0x%08lx, surf addr=%p\n",surface,&surface));	if (surface == 0){		p_osd->LumaAddr = 0;		p_osd->LumaSize = 0;		p_osd->ChromaAddr = 0;		p_osd->ChromaSize = 0;		return RM_OK;	}		RUAEP(p_osd->dcc_info.pRUA, DisplayBlock, RMDisplayBlockPropertyID_SurfaceInfo,	      (void *) &surface, sizeof(void *), &config, sizeof(config));	RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0],RMGenericPropertyID_Enable,	      &p_osd->dcc_info.disp_info->osd_enable[0], sizeof(p_osd->dcc_info.disp_info->osd_enable[0]));				RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0],RMDispOSDScalerPropertyID_ScalingConfig,	      &p_osd->scaling_config, sizeof(p_osd->scaling_config));	RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0],RMGenericPropertyID_Alpha0,	      &p_osd->alpha0, sizeof(p_osd->alpha0));	RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0],RMGenericPropertyID_Alpha1,	      &p_osd->alpha1, sizeof(p_osd->alpha1));	RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0],RMGenericPropertyID_EnableFading,	      &p_osd->fading, sizeof(p_osd->fading));	RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0],RMGenericPropertyID_KeyColor,	      &p_osd->kcolor, sizeof(p_osd->kcolor));	RUAGP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0],RMGenericPropertyID_ScalerInputWindow,	      &p_osd->input_window, sizeof(p_osd->input_window));	size_in.Width = config.Width;	size_in.Height = config.Height;	size_in.ColorMode = config.ColorMode;	size_in.ColorFormat = config.ColorFormat;	size_in.SamplingMode = config.SamplingMode;		RUAEP(p_osd->dcc_info.pRUA, DisplayBlock, RMDisplayBlockPropertyID_SurfaceSize, &size_in,	      sizeof(size_in), &size_out, sizeof(size_out));	p_osd->LumaAddr = config.LumaAddress;	p_osd->LumaSize = size_out.LumaSize;		p_osd->ChromaAddr = config.ChromaAddress;	p_osd->ChromaSize = size_out.ChromaSize;	/* Copy at the right place */	p_osd->bpp = get_osd_bpp(config.ColorMode, config.ColorFormat);	p_osd->profile.SamplingMode = config.SamplingMode;	p_osd->profile.ColorMode = config.ColorMode;	p_osd->profile.ColorFormat = config.ColorFormat;	p_osd->profile.Width = config.Width;	p_osd->profile.Height = config.Height;	p_osd->profile.ColorSpace = config.ColorSpace;	DEB(fprintf(stderr,"end get_osd_infos\n"));	return RM_OK;}	/** Create a new OSD Buffer * @param p_osd osd_descriptor of the buffer to create * @return RM_OK on success */RMstatus create_osd_buf(struct osd_descriptor *p_osd){	RMstatus status;	RMbool persistent = TRUE;	if (p_osd == NULL || p_osd->dcc_info.pRUA == NULL || p_osd->dcc_info.pDCC == NULL ){		return RM_ERROR;	}		status = DCCOpenOSDVideoSource(p_osd->dcc_info.pDCC, &p_osd->profile, &p_osd->dcc_info.pOSDSource[0]);	if (RMFAILED(status)){		fprintf(stderr,"Error opening OSD video source\n");		return status;	}	status = DCCGetScalerModuleID(p_osd->dcc_info.pDCC, p_osd->dcc_info.route, DCCSurface_OSD, 0, 	                              &p_osd->dcc_info.disp_info->osd_scaler[0]);	if (RMFAILED(status)){		fprintf(stderr,"Error getting surface to display OSD source\n");		return status;	}	status = DCCClearOSDVideoSource(p_osd->dcc_info.pOSDSource[0]);	if (RMFAILED(status)){		fprintf(stderr,"Error clearing OSD source\n");		return status;	}	status = DCCSetSurfaceSource(p_osd->dcc_info.pDCC, p_osd->dcc_info.disp_info->osd_scaler[0], p_osd->dcc_info.pOSDSource[0]);	if (RMFAILED(status)){		fprintf(stderr,"Error setting OSD surface source\n");		return status;	}	/* Set the buffer to be persistent */	RUASP(p_osd->dcc_info.pRUA, p_osd->dcc_info.disp_info->osd_scaler[0], RMGenericPropertyID_PersistentSurface, &persistent, sizeof(persistent));	return RM_OK;}	/** Enable/Disable an OSD mapping a graphic frame buffer * @param p_rua - rua handle * @param enable - enable or disable * @return RM_OK on success */#if 1RMstatus set_osdbuf_out_enable(struct RUA *p_rua, RMbool enable){	RMstatus status = RM_OK;		return status;}#endif#if 0/** Put an osd buffer on screen  * @param p_rua - rua handle * @param p_osd - osd to setup (format, size, start addreess, width and height should be setup) * @param standard - TV standard * @param output - TV outpout to use * @param mixer - mixer to use * @param scaler - scaler to use * @return RM_OK on success */RMstatus init_display_osd(struct RUA *p_rua, struct osd_descriptor *p_osd, enum TVStandard standard,                           TV_Output output, RMuint32 mixer, RMuint32 scaler){	RMstatus status = RM_OK;	struct DispOSDScaler_SurfaceInputFormat_type osd_buffer;	enum DispOSDScaler_Source_type src = DispOSDScaler_Source_Surface;	RMuint32 target_x_pos, target_y_pos;	RMuint32 x_size, y_size, target_x_size, target_y_size;	RMbool interlaced;	DEB(fprintf(stderr,"begin init_display_osd\n"));	if (p_rua == NULL || p_osd == NULL)		return RM_ERROR;	get_video_size(p_rua, standard, &x_size, &y_size, &interlaced); 	DEB(fprintf(stderr,"Standard %d => %ldx%ld, interlaced = %d\n",standard,x_size,y_size,interlaced));	DEB(fprintf(stderr,"Target     => %ldx%ld\n",p_osd->width,p_osd->height));		//osd_vpos = y_size - (interlaced ? 60 : 120);  // low end of screen	target_x_size = p_osd->width;	target_y_size = p_osd->height;	if (interlaced) target_y_size /= 2;	/* Scale picture down if too big for screen */	if (target_x_size > x_size) {		if (target_y_size * x_size / target_x_size > y_size) {			target_x_size = target_x_size * y_size / target_y_size;			target_y_size = y_size;		} else {			target_y_size = target_y_size * x_size / target_x_size;			target_x_size = x_size;		}	} else if (target_y_size > y_size) {		if (target_x_size * y_size / target_y_size > x_size) {			target_y_size = target_y_size * x_size / target_x_size;			target_x_size = x_size;		} else {			target_x_size = target_x_size * y_size / target_y_size;			target_y_size = y_size;		}	}		target_x_pos = (x_size - target_x_size) / 2;  // center	target_y_pos = (y_size - target_y_size) / 2;	DEB(fprintf(stderr,"scale : %ldx%ld\n",target_x_size,target_y_size));	status = set_scaler(p_rua, standard, output, mixer, scaler, target_x_size, 	                    target_y_size, ColorSpaceConversion_RGB_601);	if (RMFAILED(status))		fprintf(stderr,"Error setting scaler : %s\n",RMstatusToString(status));	DEB(fprintf(stderr,"scaler : position %ldx%ld\n",target_x_pos,target_y_pos));	move_scaler(p_rua, mixer, scaler, target_x_pos, target_y_pos);	if (RMFAILED(status))		fprintf(stderr,"Error setting move scaler : %s\n",RMstatusToString(status));	osd_buffer.FormatMode = p_osd->format.FormatMode;	osd_buffer.FormatSubmode = p_osd->format.FormatSubmode;	osd_buffer.XSize = p_osd->width;	osd_buffer.YSize = p_osd->height;	osd_buffer.XPad = FALSE;	osd_buffer.YPad = FALSE;	osd_buffer.StartBuffer = p_osd->dram_address;	osd_buffer.SizeBuffer = p_osd->size; //currently not used in EMhwlib	DEB(fprintf(stderr,"OSD : %ldx%ld, starting at 0x%lx (%ld bytes)\n", osd_buffer.XSize, osd_buffer.YSize, 	            osd_buffer.StartBuffer, osd_buffer.SizeBuffer));	DEB(fprintf(stderr,"OSD : %s:%s (%ld:%ld) format\n", osd_color_mode_string[osd_buffer.FormatMode].name, 	            osd_color_format_string[osd_buffer.FormatSubmode].name, osd_buffer.FormatMode, osd_buffer.FormatSubmode));	/* pass bitmap buffer to hardware lib */	status = RUASetProperty(p_rua, DispOSDScaler, RMDispOSDScalerPropertyID_Source, &src, sizeof(src), 0);	if (RMFAILED(status)){		fprintf(stderr,"  error setting RMDispOSDScalerPropertyID_Source\n");		return RM_ERROR;	}	status = RUASetProperty(p_rua, DispOSDScaler, RMDispOSDScalerPropertyID_SurfaceInputFormat, 			     &osd_buffer, sizeof(osd_buffer), 0);	if (RMFAILED(status)) 		fprintf(stderr,"Error %d setting property: DispOSDScalerProperty_Buffer\n", status);	DEB(fprintf(stderr,"end init_display_osd\n"));	return RM_OK;}#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品国产综合久久久久久漫画| 成人av在线资源网站| 国产999精品久久久久久绿帽| 99re成人精品视频| 91精品国产乱| 99精品国产视频| 首页国产欧美日韩丝袜| 亚洲综合色自拍一区| 久久久久久免费| 久久综合一区二区| 日韩精品一区二区三区视频在线观看| 91网上在线视频| 久久aⅴ国产欧美74aaa| 一区二区中文视频| 日韩一区和二区| 日韩精品一区二区三区视频| 国产精品国产成人国产三级| 免费日本视频一区| 欧美年轻男男videosbes| 国产精品久久久久久久久免费丝袜 | 精品99999| 日韩二区三区在线观看| 91麻豆视频网站| 18成人在线视频| 欧美丝袜第三区| 中文子幕无线码一区tr| 国产一区二区h| 久久久久九九视频| 国产美女精品人人做人人爽| 亚洲一级二级三级在线免费观看| 九色|91porny| 国产成人超碰人人澡人人澡| 精品久久人人做人人爽| 久久成人av少妇免费| 欧美一卡二卡在线观看| 视频一区二区中文字幕| 7777精品伊人久久久大香线蕉最新版| 亚洲大片精品永久免费| 欧美日本一区二区在线观看| 午夜精品爽啪视频| 日韩午夜av电影| 美腿丝袜在线亚洲一区| 久久久蜜臀国产一区二区| 国产丶欧美丶日本不卡视频| 国产女人水真多18毛片18精品视频| 国产麻豆91精品| 国产精品美女久久久久av爽李琼 | 亚洲激情图片一区| 欧洲视频一区二区| 亚洲一区电影777| 欧美日韩aaaaa| 激情五月婷婷综合| 国产亚洲短视频| 91污片在线观看| 亚洲一区二区三区免费视频| 欧美日韩国产一级片| 日韩成人一级片| 中文字幕欧美区| 欧美午夜片在线看| 青青草国产成人99久久| 久久精品综合网| 欧美中文字幕一区二区三区| 日韩国产欧美在线观看| 国产日本欧洲亚洲| 91麻豆高清视频| 久久国产综合精品| 国产精品国产三级国产三级人妇 | 免费观看在线色综合| 日本一区二区成人| 欧美日韩黄色一区二区| 国产另类ts人妖一区二区| 玉米视频成人免费看| 精品三级在线观看| 91猫先生在线| 国产一区二区伦理片| 亚洲第四色夜色| 国产精品久久免费看| 欧美精品tushy高清| 成人av网站免费| 日韩国产一二三区| 亚洲欧美一区二区不卡| 2020国产精品自拍| 在线观看亚洲专区| 国产露脸91国语对白| 无吗不卡中文字幕| 国产精品乱码人人做人人爱| 欧美一级二级三级蜜桃| 91高清视频免费看| 懂色av一区二区三区免费看| 午夜欧美一区二区三区在线播放| 久久久青草青青国产亚洲免观| 欧美肥妇free| 欧美亚洲综合一区| 99久久国产综合精品麻豆| 国产一区二区三区精品视频| 三级久久三级久久| 一区二区三区加勒比av| 国产精品久久久久久亚洲毛片| 欧美一区二区三区人| 欧美综合色免费| 一本大道综合伊人精品热热| www.久久久久久久久| 国产成人丝袜美腿| 国产一区二区三区高清播放| 久久se这里有精品| 美女网站色91| 卡一卡二国产精品 | 日韩欧美中文字幕精品| 91.com在线观看| 91激情在线视频| 在线观看日韩av先锋影音电影院| www.视频一区| 色综合色狠狠综合色| 91麻豆精东视频| 91国偷自产一区二区三区观看| 972aa.com艺术欧美| 99re热这里只有精品免费视频 | 欧美日本国产视频| 911精品国产一区二区在线| 欧美日韩aaa| 日韩欧美国产精品| 精品福利一二区| 国产日韩欧美麻豆| 国产精品久久久久久久久晋中| 日本一区二区三区久久久久久久久不| 国产女人18水真多18精品一级做| 国产亚洲精品aa| 日韩理论电影院| 亚洲精品国产一区二区精华液| 亚洲一二三四区不卡| 免费在线观看一区| 国产激情一区二区三区| 成人国产精品免费观看视频| 97久久久精品综合88久久| 欧美这里有精品| 欧美一级国产精品| 国产精品麻豆网站| 亚洲自拍偷拍图区| 久久99精品国产.久久久久久| 国产精品一级在线| 日本韩国欧美一区二区三区| 欧美少妇bbb| 精品国产成人在线影院| 国产精品无遮挡| 亚洲影视在线播放| 国产美女娇喘av呻吟久久| bt7086福利一区国产| 欧美日韩久久久一区| 国产亚洲欧洲997久久综合| 亚洲天堂2016| 久久精品国产久精国产| 国产91精品一区二区麻豆亚洲| 色婷婷亚洲综合| 欧美一区二区三区在线电影| 国产精品视频观看| 日韩成人一区二区三区在线观看| 国产精品夜夜爽| 欧美精品99久久久**| 国产日韩成人精品| 强制捆绑调教一区二区| 不卡影院免费观看| 日韩欧美在线123| 亚洲自拍另类综合| 成人美女在线观看| 69堂成人精品免费视频| 亚洲欧美一区二区三区孕妇| 狠狠久久亚洲欧美| 91精品蜜臀在线一区尤物| 国产精品久久久久国产精品日日| 日韩国产精品久久| 91激情在线视频| 国产精品成人网| 国产综合久久久久久久久久久久 | 91欧美激情一区二区三区成人| 欧美精品一区二区三区在线 | 丁香另类激情小说| 制服视频三区第一页精品| 亚洲视频免费观看| 成人自拍视频在线观看| 日韩欧美国产wwwww| 视频一区国产视频| 欧美日韩国产经典色站一区二区三区| 欧美经典三级视频一区二区三区| 日本一道高清亚洲日美韩| 精品视频免费看| 亚洲免费观看在线视频| www.亚洲在线| 最新国产の精品合集bt伙计| 国产91精品在线观看| 久久久久高清精品| 国产资源精品在线观看| 欧美成人精精品一区二区频| 五月天一区二区| 制服丝袜亚洲色图| 免费一级片91| 日韩欧美二区三区| 狠狠v欧美v日韩v亚洲ⅴ| 欧美成人vps| 国产高清视频一区| 国产精品视频一区二区三区不卡|