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

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

?? pcm_plugin.c

?? 是關(guān)于linux2.5.1的完全源碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* *  PCM Plug-In shared (kernel/library) code *  Copyright (c) 1999 by Jaroslav Kysela <perex@suse.cz> *  Copyright (c) 2000 by Abramo Bagnara <abramo@alsa-project.org> * * *   This library is free software; you can redistribute it and/or modify *   it under the terms of the GNU Library 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 Library General Public License for more details. * *   You should have received a copy of the GNU Library General Public *   License along with this library; if not, write to the Free Software *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA * */  #if 0#define PLUGIN_DEBUG#endif#define __NO_VERSION__#include <sound/driver.h>#include <linux/slab.h>#include <linux/time.h>#include <linux/vmalloc.h>#include <sound/core.h>#include <sound/pcm.h>#include "pcm_plugin.h"#define snd_pcm_plug_first(plug) ((plug)->runtime->oss.plugin_first)#define snd_pcm_plug_last(plug) ((plug)->runtime->oss.plugin_last)static int snd_pcm_plugin_src_channels_mask(snd_pcm_plugin_t *plugin,					    bitset_t *dst_vmask,					    bitset_t **src_vmask){	bitset_t *vmask = plugin->src_vmask;	bitset_copy(vmask, dst_vmask, plugin->src_format.channels);	*src_vmask = vmask;	return 0;}static int snd_pcm_plugin_dst_channels_mask(snd_pcm_plugin_t *plugin,					    bitset_t *src_vmask,					    bitset_t **dst_vmask){	bitset_t *vmask = plugin->dst_vmask;	bitset_copy(vmask, src_vmask, plugin->dst_format.channels);	*dst_vmask = vmask;	return 0;}static int snd_pcm_plugin_alloc(snd_pcm_plugin_t *plugin, snd_pcm_uframes_t frames){	snd_pcm_plugin_format_t *format;	ssize_t width;	size_t size;	unsigned int channel;	snd_pcm_plugin_channel_t *c;	if (plugin->stream == SNDRV_PCM_STREAM_PLAYBACK) {		format = &plugin->src_format;	} else {		format = &plugin->dst_format;	}	if ((width = snd_pcm_format_physical_width(format->format)) < 0)		return width;	size = frames * format->channels * width;	snd_assert((size % 8) == 0, return -ENXIO);	size /= 8;	if (plugin->buf_frames < frames) {		if (plugin->buf)			vfree(plugin->buf);		plugin->buf = vmalloc(size);		plugin->buf_frames = frames;	}	if (!plugin->buf)		return -ENOMEM;	c = plugin->buf_channels;	if (plugin->access == SNDRV_PCM_ACCESS_RW_INTERLEAVED) {		for (channel = 0; channel < format->channels; channel++, c++) {			c->enabled = 1;			c->wanted = 0;			c->area.addr = plugin->buf;			c->area.first = channel * width;			c->area.step = format->channels * width;		}	} else if (plugin->access == SNDRV_PCM_ACCESS_RW_NONINTERLEAVED) {		snd_assert((size % format->channels) == 0,);		size /= format->channels;		for (channel = 0; channel < format->channels; channel++, c++) {			c->enabled = 1;			c->wanted = 0;			c->area.addr = plugin->buf + (channel * size);			c->area.first = 0;			c->area.step = width;		}	} else		return -EINVAL;	return 0;}int snd_pcm_plug_alloc(snd_pcm_plug_t *plug, snd_pcm_uframes_t frames){	int err;	snd_assert(snd_pcm_plug_first(plug) != NULL, return -ENXIO);	if (snd_pcm_plug_stream(plug) == SNDRV_PCM_STREAM_PLAYBACK) {		snd_pcm_plugin_t *plugin = snd_pcm_plug_first(plug);		while (plugin->next) {			if (plugin->dst_frames)				frames = plugin->dst_frames(plugin, frames);			snd_assert(frames > 0, return -ENXIO);			plugin = plugin->next;			err = snd_pcm_plugin_alloc(plugin, frames);			if (err < 0)				return err;		}	} else {		snd_pcm_plugin_t *plugin = snd_pcm_plug_last(plug);		while (plugin->prev) {			if (plugin->src_frames)				frames = plugin->src_frames(plugin, frames);			snd_assert(frames > 0, return -ENXIO);			plugin = plugin->prev;			err = snd_pcm_plugin_alloc(plugin, frames);			if (err < 0)				return err;		}	}	return 0;}snd_pcm_sframes_t snd_pcm_plugin_client_channels(snd_pcm_plugin_t *plugin,				       snd_pcm_uframes_t frames,				       snd_pcm_plugin_channel_t **channels){	*channels = plugin->buf_channels;	return frames;}int snd_pcm_plugin_build(snd_pcm_plug_t *plug,			 const char *name,			 snd_pcm_plugin_format_t *src_format,			 snd_pcm_plugin_format_t *dst_format,			 size_t extra,			 snd_pcm_plugin_t **ret){	snd_pcm_plugin_t *plugin;	unsigned int channels;		snd_assert(plug != NULL, return -ENXIO);	snd_assert(src_format != NULL && dst_format != NULL, return -ENXIO);	plugin = (snd_pcm_plugin_t *)snd_kcalloc(sizeof(*plugin) + extra, GFP_KERNEL);	if (plugin == NULL)		return -ENOMEM;	plugin->name = name;	plugin->plug = plug;	plugin->stream = snd_pcm_plug_stream(plug);	plugin->access = SNDRV_PCM_ACCESS_RW_INTERLEAVED;	plugin->src_format = *src_format;	plugin->src_width = snd_pcm_format_physical_width(src_format->format);	snd_assert(plugin->src_width > 0, );	plugin->dst_format = *dst_format;	plugin->dst_width = snd_pcm_format_physical_width(dst_format->format);	snd_assert(plugin->dst_width > 0, );	if (plugin->stream == SNDRV_PCM_STREAM_PLAYBACK)		channels = src_format->channels;	else		channels = dst_format->channels;	plugin->buf_channels = snd_kcalloc(channels * sizeof(*plugin->buf_channels), GFP_KERNEL);	if (plugin->buf_channels == NULL) {		snd_pcm_plugin_free(plugin);		return -ENOMEM;	}	plugin->src_vmask = bitset_alloc(src_format->channels);	if (plugin->src_vmask == NULL) {		snd_pcm_plugin_free(plugin);		return -ENOMEM;	}	plugin->dst_vmask = bitset_alloc(dst_format->channels);	if (plugin->dst_vmask == NULL) {		snd_pcm_plugin_free(plugin);		return -ENOMEM;	}	plugin->client_channels = snd_pcm_plugin_client_channels;	plugin->src_channels_mask = snd_pcm_plugin_src_channels_mask;	plugin->dst_channels_mask = snd_pcm_plugin_dst_channels_mask;	*ret = plugin;	return 0;}int snd_pcm_plugin_free(snd_pcm_plugin_t *plugin){	if (! plugin)		return 0;	if (plugin->private_free)		plugin->private_free(plugin);	if (plugin->buf_channels)		kfree(plugin->buf_channels);	if (plugin->buf)		vfree(plugin->buf);	if (plugin->src_vmask)		kfree(plugin->src_vmask);	if (plugin->dst_vmask)		kfree(plugin->dst_vmask);	kfree(plugin);	return 0;}snd_pcm_sframes_t snd_pcm_plug_client_size(snd_pcm_plug_t *plug, snd_pcm_uframes_t drv_frames){	snd_pcm_plugin_t *plugin, *plugin_prev, *plugin_next;	int stream = snd_pcm_plug_stream(plug);	snd_assert(plug != NULL, return -ENXIO);	if (drv_frames == 0)		return 0;	if (stream == SNDRV_PCM_STREAM_PLAYBACK) {		plugin = snd_pcm_plug_last(plug);		while (plugin && drv_frames > 0) {			plugin_prev = plugin->prev;			if (plugin->src_frames)				drv_frames = plugin->src_frames(plugin, drv_frames);			plugin = plugin_prev;		}	} else if (stream == SNDRV_PCM_STREAM_CAPTURE) {		plugin = snd_pcm_plug_first(plug);		while (plugin && drv_frames > 0) {			plugin_next = plugin->next;			if (plugin->dst_frames)				drv_frames = plugin->dst_frames(plugin, drv_frames);			plugin = plugin_next;		}	} else		snd_BUG();	return drv_frames;}snd_pcm_sframes_t snd_pcm_plug_slave_size(snd_pcm_plug_t *plug, snd_pcm_uframes_t clt_frames){	snd_pcm_plugin_t *plugin, *plugin_prev, *plugin_next;	snd_pcm_sframes_t frames;	int stream = snd_pcm_plug_stream(plug);		snd_assert(plug != NULL, return -ENXIO);	if (clt_frames == 0)		return 0;	frames = clt_frames;	if (stream == SNDRV_PCM_STREAM_PLAYBACK) {		plugin = snd_pcm_plug_first(plug);		while (plugin && frames > 0) {			plugin_next = plugin->next;			if (plugin->dst_frames) {				frames = plugin->dst_frames(plugin, frames);				if (frames < 0)					return frames;			}			plugin = plugin_next;		}	} else if (stream == SNDRV_PCM_STREAM_CAPTURE) {		plugin = snd_pcm_plug_last(plug);		while (plugin) {			plugin_prev = plugin->prev;			if (plugin->src_frames) {				frames = plugin->src_frames(plugin, frames);				if (frames < 0)					return frames;			}			plugin = plugin_prev;		}	} else		snd_BUG();	return frames;}unsigned int snd_pcm_plug_formats(unsigned int formats){	int linfmts = (SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S8 |		       SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_S16_LE |		       SNDRV_PCM_FMTBIT_U16_BE | SNDRV_PCM_FMTBIT_S16_BE |		       SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_S24_LE |		       SNDRV_PCM_FMTBIT_U24_BE | SNDRV_PCM_FMTBIT_S24_BE |		       SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_S32_LE |		       SNDRV_PCM_FMTBIT_U32_BE | SNDRV_PCM_FMTBIT_S32_BE);	formats |= SNDRV_PCM_FMTBIT_MU_LAW;		if (formats & linfmts)		formats |= linfmts;	return formats;}static int preferred_formats[] = {	SNDRV_PCM_FORMAT_S16_LE,	SNDRV_PCM_FORMAT_S16_BE,	SNDRV_PCM_FORMAT_U16_LE,	SNDRV_PCM_FORMAT_U16_BE,	SNDRV_PCM_FORMAT_S24_LE,	SNDRV_PCM_FORMAT_S24_BE,	SNDRV_PCM_FORMAT_U24_LE,	SNDRV_PCM_FORMAT_U24_BE,	SNDRV_PCM_FORMAT_S32_LE,	SNDRV_PCM_FORMAT_S32_BE,	SNDRV_PCM_FORMAT_U32_LE,	SNDRV_PCM_FORMAT_U32_BE,	SNDRV_PCM_FORMAT_S8,	SNDRV_PCM_FORMAT_U8};int snd_pcm_plug_slave_format(int format, unsigned int format_mask){	if (format_mask & (1 << format))		return format;	if ((snd_pcm_plug_formats(format_mask) & (1 << format)) == 0)		return -EINVAL;	if (snd_pcm_format_linear(format)) {		int width = snd_pcm_format_width(format);		int unsignd = snd_pcm_format_unsigned(format);		int big = snd_pcm_format_big_endian(format);		int format1;		int wid, width1=width;		int dwidth1 = 8;		for (wid = 0; wid < 4; ++wid) {			int end, big1 = big;			for (end = 0; end < 2; ++end) {				int sgn, unsignd1 = unsignd;				for (sgn = 0; sgn < 2; ++sgn) {					format1 = snd_pcm_build_linear_format(width1, unsignd1, big1);					if (format1 >= 0 &&					    format_mask & (1 << format1))						goto _found;					unsignd1 = !unsignd1;				}				big1 = !big1;			}			if (width1 == 32) {				dwidth1 = -dwidth1;				width1 = width;			}			width1 += dwidth1;		}		return -EINVAL;	_found:		return format1;	} else {		unsigned int i;		switch (format) {		case SNDRV_PCM_FORMAT_MU_LAW:			for (i = 0; i < sizeof(preferred_formats) / sizeof(preferred_formats[0]); ++i) {				int format1 = preferred_formats[i];				if (format_mask & (1 << format1))					return format1;			}		default:			return -EINVAL;		}	}}int snd_pcm_plug_format_plugins(snd_pcm_plug_t *plug,				snd_pcm_hw_params_t *params,				snd_pcm_hw_params_t *slave_params){	snd_pcm_plugin_format_t tmpformat;	snd_pcm_plugin_format_t dstformat;	snd_pcm_plugin_format_t srcformat;	int src_access, dst_access;	snd_pcm_plugin_t *plugin = NULL;	int err, first;	int stream = snd_pcm_plug_stream(plug);	int slave_interleaved = (params_channels(slave_params) == 1 ||				 params_access(slave_params) == SNDRV_PCM_ACCESS_RW_INTERLEAVED);	switch (stream) {	case SNDRV_PCM_STREAM_PLAYBACK:		dstformat.format = params_format(slave_params);		dstformat.rate = params_rate(slave_params);		dstformat.channels = params_channels(slave_params);		srcformat.format = params_format(params);		srcformat.rate = params_rate(params);		srcformat.channels = params_channels(params);		src_access = SNDRV_PCM_ACCESS_RW_INTERLEAVED;		dst_access = (slave_interleaved ? SNDRV_PCM_ACCESS_RW_INTERLEAVED :						  SNDRV_PCM_ACCESS_RW_NONINTERLEAVED);		break;	case SNDRV_PCM_STREAM_CAPTURE:		dstformat.format = params_format(params);		dstformat.rate = params_rate(params);		dstformat.channels = params_channels(params);		srcformat.format = params_format(slave_params);		srcformat.rate = params_rate(slave_params);		srcformat.channels = params_channels(slave_params);		src_access = (slave_interleaved ? SNDRV_PCM_ACCESS_RW_INTERLEAVED :						  SNDRV_PCM_ACCESS_RW_NONINTERLEAVED);		dst_access = SNDRV_PCM_ACCESS_RW_INTERLEAVED;		break;	default:		snd_BUG();		return -EINVAL;	}	tmpformat = srcformat;			pdprintf("srcformat: format=%i, rate=%i, channels=%i\n", 		 srcformat.format,		 srcformat.rate,		 srcformat.channels);	pdprintf("dstformat: format=%i, rate=%i, channels=%i\n", 		 dstformat.format,		 dstformat.rate,		 dstformat.channels);	/* Format change (linearization) */	if ((srcformat.format != dstformat.format ||	     srcformat.rate != dstformat.rate ||	     srcformat.channels != dstformat.channels) &&	    !snd_pcm_format_linear(srcformat.format)) {		if (snd_pcm_format_linear(dstformat.format))			tmpformat.format = dstformat.format;		else			tmpformat.format = SNDRV_PCM_FORMAT_S16;		first = plugin == NULL;		switch (srcformat.format) {		case SNDRV_PCM_FORMAT_MU_LAW:			err = snd_pcm_plugin_build_mulaw(plug,							 &srcformat, &tmpformat,							 &plugin);			break;		default:			return -EINVAL;		}		pdprintf("format change: src=%i, dst=%i returns %i\n", srcformat.format, tmpformat.format, err);		if (err < 0)			return err;		err = snd_pcm_plugin_append(plugin);		if (err < 0) {			snd_pcm_plugin_free(plugin);			return err;		}		srcformat = tmpformat;		src_access = dst_access;	}	/* channels reduction */	if (srcformat.channels > dstformat.channels) {		int sv = srcformat.channels;		int dv = dstformat.channels;		route_ttable_entry_t *ttable = snd_kcalloc(dv*sv*sizeof(*ttable), GFP_KERNEL);		if (ttable == NULL)			return -ENOMEM;#if 1		if (sv == 2 && dv == 1) {			ttable[0] = HALF;			ttable[1] = HALF;		} else#endif		{			int v;			for (v = 0; v < dv; ++v)				ttable[v * sv + v] = FULL;		}		tmpformat.channels = dstformat.channels;		if (srcformat.rate == dstformat.rate &&		    snd_pcm_format_linear(dstformat.format))			tmpformat.format = dstformat.format;		err = snd_pcm_plugin_build_route(plug,						 &srcformat, &tmpformat,						 ttable, &plugin);		kfree(ttable);		pdprintf("channels reduction: src=%i, dst=%i returns %i\n", srcformat.channels, tmpformat.channels, err);		if (err < 0) {			snd_pcm_plugin_free(plugin);			return err;		}		err = snd_pcm_plugin_append(plugin);		if (err < 0) {			snd_pcm_plugin_free(plugin);			return err;		}		srcformat = tmpformat;		src_access = dst_access;	}	/* rate resampling */	if (srcformat.rate != dstformat.rate) {		tmpformat.rate = dstformat.rate;		if (srcformat.channels == dstformat.channels &&		    snd_pcm_format_linear(dstformat.format))			tmpformat.format = dstformat.format;        	err = snd_pcm_plugin_build_rate(plug,        					&srcformat, &tmpformat,						&plugin);		pdprintf("rate down resampling: src=%i, dst=%i returns %i\n", srcformat.rate, tmpformat.rate, err);		if (err < 0) {			snd_pcm_plugin_free(plugin);			return err;		}      					    		err = snd_pcm_plugin_append(plugin);		if (err < 0) {			snd_pcm_plugin_free(plugin);			return err;		}		srcformat = tmpformat;		src_access = dst_access;        }	/* channels extension  */	if (srcformat.channels < dstformat.channels) {		int sv = srcformat.channels;		int dv = dstformat.channels;		route_ttable_entry_t *ttable = snd_kcalloc(dv * sv * sizeof(*ttable), GFP_KERNEL);		if (ttable == NULL)			return -ENOMEM;#if 0		{			int v;			for (v = 0; v < sv; ++v)				ttable[v * sv + v] = FULL;		}#else		{			/* Playback is spreaded on all channels */			int vd, vs;			for (vd = 0, vs = 0; vd < dv; ++vd) {				ttable[vd * sv + vs] = FULL;				vs++;				if (vs == sv)					vs = 0;			}		}#endif		tmpformat.channels = dstformat.channels;		if (snd_pcm_format_linear(dstformat.format))			tmpformat.format = dstformat.format;		err = snd_pcm_plugin_build_route(plug,						 &srcformat, &tmpformat,						 ttable, &plugin);		kfree(ttable);		pdprintf("channels extension: src=%i, dst=%i returns %i\n", srcformat.channels, tmpformat.channels, err);		if (err < 0) {

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成人av电影| 色先锋久久av资源部| 亚洲综合激情小说| 首页国产丝袜综合| 黄网站免费久久| 在线电影院国产精品| 日本久久一区二区三区| 日本不卡视频一二三区| 国产伦精一区二区三区| 欧美日产国产精品| 亚洲一区二区三区四区五区中文| 国产高清不卡一区| 日韩视频在线永久播放| 欧美日韩性生活| 亚洲乱码国产乱码精品精的特点 | 色综合久久久久久久久久久| 欧美系列在线观看| 中文字幕在线播放不卡一区| 99久久er热在这里只有精品15 | 91啪亚洲精品| 国产精品一区二区黑丝| 国产精品乱码妇女bbbb| 亚洲精品一区二区三区福利| 国产91高潮流白浆在线麻豆 | 日韩一区二区麻豆国产| 黄色日韩三级电影| 日韩电影免费在线看| 久久综合久久综合久久| 69堂亚洲精品首页| 欧美性极品少妇| 色综合久久久久网| 美女mm1313爽爽久久久蜜臀| 亚洲第四色夜色| 亚洲综合免费观看高清完整版| 日韩一本二本av| 制服丝袜成人动漫| 成人性视频网站| 亚洲成av人片在线观看| 一区二区日韩av| 一区二区不卡在线视频 午夜欧美不卡在| 91精品福利在线一区二区三区| 国产成人午夜高潮毛片| 国产成人av一区二区| 国产电影精品久久禁18| 国产精品99久久久久久似苏梦涵 | 国内精品久久久久影院薰衣草| 国产精品久久99| 亚洲欧洲日产国码二区| 亚洲欧美在线高清| 亚洲码国产岛国毛片在线| 亚洲男人的天堂在线观看| 亚洲欧美国产毛片在线| 一区二区三区蜜桃| 午夜电影网一区| 免费看黄色91| 国产高清亚洲一区| 成人激情午夜影院| 九色综合国产一区二区三区| 一区二区视频免费在线观看| 亚洲午夜成aⅴ人片| 日本欧美韩国一区三区| 激情文学综合网| 99天天综合性| 欧美日韩亚洲综合| 色婷婷av一区二区三区软件| 国产精品亚洲第一| 精品写真视频在线观看| 国产经典欧美精品| 久久精品国产亚洲高清剧情介绍 | 国产精品丝袜一区| 亚洲美女免费视频| 热久久免费视频| 国产成人午夜精品5599| 在线亚洲免费视频| 日韩一区二区三区观看| 欧美电影影音先锋| 国产亚洲欧美日韩在线一区| 亚洲欧美日韩综合aⅴ视频| 亚洲chinese男男1069| 九九精品视频在线看| 99精品桃花视频在线观看| 欧美日韩高清一区二区三区| 91福利视频在线| 日韩精品专区在线| 最新国产の精品合集bt伙计| 国产精品无码永久免费888| 亚洲精品福利视频网站| 久久99国产精品尤物| 色菇凉天天综合网| 精品国产免费一区二区三区香蕉 | 91麻豆精品国产91久久久久久久久| 色综合久久久久综合体| 色婷婷久久99综合精品jk白丝| eeuss鲁片一区二区三区在线观看| 成人毛片视频在线观看| 成人一区二区三区在线观看| 91麻豆精品国产91久久久更新时间| 在线成人高清不卡| 亚洲欧洲色图综合| 国产真实精品久久二三区| 欧洲亚洲精品在线| 久久久99精品免费观看| 天堂av在线一区| 91免费版pro下载短视频| xnxx国产精品| 日韩电影在线观看一区| 色呦呦一区二区三区| 欧美激情在线观看视频免费| 美女网站色91| 欧美日韩国产bt| 亚洲欧洲精品一区二区三区| 久久免费精品国产久精品久久久久| 色悠悠亚洲一区二区| 欧美韩国日本一区| 蜜桃视频一区二区三区| 欧美日韩精品免费| 亚洲午夜av在线| 日本不卡高清视频| 欧美日韩国产片| www久久精品| 亚洲裸体xxx| 国产福利一区二区三区视频在线| 成人毛片老司机大片| 久久综合久色欧美综合狠狠| 老色鬼精品视频在线观看播放| 国产不卡在线视频| 国产日韩欧美精品电影三级在线 | 久久精品视频一区二区三区| 亚洲欧美一区二区三区久本道91| 亚洲高清久久久| 91丨九色porny丨蝌蚪| 欧美一区二区三区视频免费| 五月婷婷综合激情| 欧美日韩亚洲综合一区| 亚洲一区二区高清| 欧美日韩一区不卡| 香蕉成人伊视频在线观看| 国产九色精品成人porny | 麻豆精品一区二区三区| 成人国产在线观看| 国产精品五月天| 99久久精品国产毛片| 中文字幕综合网| 91美女片黄在线| 亚洲一区二区三区四区不卡| 国产精品一卡二卡| 久久久久久黄色| 成人中文字幕合集| 欧美成人精品高清在线播放| 亚洲美女区一区| 欧美日本高清视频在线观看| 日韩在线观看一区二区| 91色|porny| 香蕉成人伊视频在线观看| 日韩一级免费观看| 国产精品一区二区视频| 91精品免费观看| 国产在线精品一区二区三区不卡| 欧美精品 日韩| 亚洲靠逼com| 在线播放91灌醉迷j高跟美女| 亚洲猫色日本管| 成人亚洲一区二区一| 久久婷婷国产综合精品青草| 粉嫩嫩av羞羞动漫久久久| 亚洲色图欧美在线| 国产亚洲欧洲一区高清在线观看| 久久精品国产澳门| 国产欧美日韩综合精品一区二区| 久久精品国产一区二区三区免费看| 欧美日本一区二区在线观看| 国产又粗又猛又爽又黄91精品| 欧美一区二区三区啪啪| 国产suv精品一区二区三区| 亚洲日本va午夜在线电影| 宅男噜噜噜66一区二区66| 亚洲精品免费视频| 日韩视频一区二区三区在线播放| 午夜一区二区三区在线观看| 欧美日韩综合一区| 精品一区二区影视| 精品美女在线播放| 99riav久久精品riav| 免费久久99精品国产| 国产精品久久网站| 成人中文字幕在线| 日韩精品免费专区| 国产精品每日更新在线播放网址 | 国产一区中文字幕| 亚洲一区二区三区激情| 久久久久国产精品麻豆ai换脸| 国内外精品视频| 亚洲电影一区二区三区| 中文无字幕一区二区三区| 欧美另类久久久品| 99久久精品国产导航| 国产一区999| 天堂蜜桃91精品| 亚洲欧美日韩成人高清在线一区| 欧美中文字幕一区二区三区亚洲|