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

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

?? seq_midi_event.c

?? 優(yōu)龍2410linux2.6.8內(nèi)核源代碼
?? C
字號(hào):
/* *  MIDI byte <-> sequencer event coder * *  Copyright (C) 1998,99 Takashi Iwai <tiwai@suse.de>, *                        Jaroslav Kysela <perex@suse.cz> * *   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 */#include <sound/driver.h>#include <linux/slab.h>#include <linux/errno.h>#include <linux/string.h>#include <sound/core.h>#include <sound/seq_kernel.h>#include <sound/seq_midi_event.h>#include <sound/asoundef.h>MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>, Jaroslav Kysela <perex@suse.cz>");MODULE_DESCRIPTION("MIDI byte <-> sequencer event coder");MODULE_LICENSE("GPL");/* queue type *//* from 0 to 7 are normal commands (note off, on, etc.) */#define ST_NOTEOFF	0#define ST_NOTEON	1#define ST_SPECIAL	8#define ST_SYSEX	ST_SPECIAL/* from 8 to 15 are events for 0xf0-0xf7 *//* status event types */typedef void (*event_encode_t)(snd_midi_event_t *dev, snd_seq_event_t *ev);typedef void (*event_decode_t)(snd_seq_event_t *ev, unsigned char *buf);/* * prototypes */static void note_event(snd_midi_event_t *dev, snd_seq_event_t *ev);static void one_param_ctrl_event(snd_midi_event_t *dev, snd_seq_event_t *ev);static void pitchbend_ctrl_event(snd_midi_event_t *dev, snd_seq_event_t *ev);static void two_param_ctrl_event(snd_midi_event_t *dev, snd_seq_event_t *ev);static void one_param_event(snd_midi_event_t *dev, snd_seq_event_t *ev);static void songpos_event(snd_midi_event_t *dev, snd_seq_event_t *ev);static void note_decode(snd_seq_event_t *ev, unsigned char *buf);static void one_param_decode(snd_seq_event_t *ev, unsigned char *buf);static void pitchbend_decode(snd_seq_event_t *ev, unsigned char *buf);static void two_param_decode(snd_seq_event_t *ev, unsigned char *buf);static void songpos_decode(snd_seq_event_t *ev, unsigned char *buf);/* * event list */static struct status_event_list_t {	int event;	int qlen;	event_encode_t encode;	event_decode_t decode;} status_event[] = {	/* 0x80 - 0xf0 */	{SNDRV_SEQ_EVENT_NOTEOFF,	2, note_event, note_decode},	{SNDRV_SEQ_EVENT_NOTEON,	2, note_event, note_decode},	{SNDRV_SEQ_EVENT_KEYPRESS,	2, note_event, note_decode},	{SNDRV_SEQ_EVENT_CONTROLLER,	2, two_param_ctrl_event, two_param_decode},	{SNDRV_SEQ_EVENT_PGMCHANGE,	1, one_param_ctrl_event, one_param_decode},	{SNDRV_SEQ_EVENT_CHANPRESS,	1, one_param_ctrl_event, one_param_decode},	{SNDRV_SEQ_EVENT_PITCHBEND,	2, pitchbend_ctrl_event, pitchbend_decode},	{SNDRV_SEQ_EVENT_NONE,		0, NULL, NULL}, /* 0xf0 */	/* 0xf0 - 0xff */	{SNDRV_SEQ_EVENT_SYSEX,		1, NULL, NULL}, /* sysex: 0xf0 */	{SNDRV_SEQ_EVENT_QFRAME,	1, one_param_event, one_param_decode}, /* 0xf1 */	{SNDRV_SEQ_EVENT_SONGPOS,	2, songpos_event, songpos_decode}, /* 0xf2 */	{SNDRV_SEQ_EVENT_SONGSEL,	1, one_param_event, one_param_decode}, /* 0xf3 */	{SNDRV_SEQ_EVENT_NONE,		0, NULL, NULL}, /* 0xf4 */	{SNDRV_SEQ_EVENT_NONE,		0, NULL, NULL}, /* 0xf5 */	{SNDRV_SEQ_EVENT_TUNE_REQUEST,	0, NULL, NULL},	/* 0xf6 */	{SNDRV_SEQ_EVENT_NONE,		0, NULL, NULL}, /* 0xf7 */	{SNDRV_SEQ_EVENT_CLOCK,		0, NULL, NULL}, /* 0xf8 */	{SNDRV_SEQ_EVENT_NONE,		0, NULL, NULL}, /* 0xf9 */	{SNDRV_SEQ_EVENT_START,		0, NULL, NULL}, /* 0xfa */	{SNDRV_SEQ_EVENT_CONTINUE,	0, NULL, NULL}, /* 0xfb */	{SNDRV_SEQ_EVENT_STOP, 		0, NULL, NULL}, /* 0xfc */	{SNDRV_SEQ_EVENT_NONE, 		0, NULL, NULL}, /* 0xfd */	{SNDRV_SEQ_EVENT_SENSING, 	0, NULL, NULL}, /* 0xfe */	{SNDRV_SEQ_EVENT_RESET, 	0, NULL, NULL}, /* 0xff */};static int extra_decode_ctrl14(snd_midi_event_t *dev, unsigned char *buf, int len, snd_seq_event_t *ev);static int extra_decode_xrpn(snd_midi_event_t *dev, unsigned char *buf, int count, snd_seq_event_t *ev);static struct extra_event_list_t {	int event;	int (*decode)(snd_midi_event_t *dev, unsigned char *buf, int len, snd_seq_event_t *ev);} extra_event[] = {	{SNDRV_SEQ_EVENT_CONTROL14, extra_decode_ctrl14},	{SNDRV_SEQ_EVENT_NONREGPARAM, extra_decode_xrpn},	{SNDRV_SEQ_EVENT_REGPARAM, extra_decode_xrpn},};/* *  new/delete record */int snd_midi_event_new(int bufsize, snd_midi_event_t **rdev){	snd_midi_event_t *dev;	*rdev = NULL;	dev = (snd_midi_event_t *)snd_kcalloc(sizeof(snd_midi_event_t), GFP_KERNEL);	if (dev == NULL)		return -ENOMEM;	if (bufsize > 0) {		dev->buf = kmalloc(bufsize, GFP_KERNEL);		if (dev->buf == NULL) {			kfree(dev);			return -ENOMEM;		}	}	dev->bufsize = bufsize;	dev->lastcmd = 0xff;	spin_lock_init(&dev->lock);	*rdev = dev;	return 0;}void snd_midi_event_free(snd_midi_event_t *dev){	if (dev != NULL) {		if (dev->buf)			kfree(dev->buf);		kfree(dev);	}}/* * initialize record */inline static void reset_encode(snd_midi_event_t *dev){	dev->read = 0;	dev->qlen = 0;	dev->type = 0;}void snd_midi_event_reset_encode(snd_midi_event_t *dev){	unsigned long flags;	spin_lock_irqsave(&dev->lock, flags);	reset_encode(dev);	spin_unlock_irqrestore(&dev->lock, flags);}void snd_midi_event_reset_decode(snd_midi_event_t *dev){	unsigned long flags;	spin_lock_irqsave(&dev->lock, flags);	dev->lastcmd = 0xff;	spin_unlock_irqrestore(&dev->lock, flags);}void snd_midi_event_init(snd_midi_event_t *dev){	snd_midi_event_reset_encode(dev);	snd_midi_event_reset_decode(dev);}void snd_midi_event_no_status(snd_midi_event_t *dev, int on){	dev->nostat = on ? 1 : 0;}/* * resize buffer */int snd_midi_event_resize_buffer(snd_midi_event_t *dev, int bufsize){	unsigned char *new_buf, *old_buf;	unsigned long flags;	if (bufsize == dev->bufsize)		return 0;	new_buf = kmalloc(bufsize, GFP_KERNEL);	if (new_buf == NULL)		return -ENOMEM;	spin_lock_irqsave(&dev->lock, flags);	old_buf = dev->buf;	dev->buf = new_buf;	dev->bufsize = bufsize;	reset_encode(dev);	spin_unlock_irqrestore(&dev->lock, flags);	if (old_buf)		kfree(old_buf);	return 0;}/* *  read bytes and encode to sequencer event if finished *  return the size of encoded bytes */long snd_midi_event_encode(snd_midi_event_t *dev, unsigned char *buf, long count, snd_seq_event_t *ev){	long result = 0;	int rc;	ev->type = SNDRV_SEQ_EVENT_NONE;	while (count-- > 0) {		rc = snd_midi_event_encode_byte(dev, *buf++, ev);		result++;		if (rc < 0)			return rc;		else if (rc > 0)			return result;	}	return result;}/* *  read one byte and encode to sequencer event: *  return 1 if MIDI bytes are encoded to an event *         0 data is not finished *         negative for error */int snd_midi_event_encode_byte(snd_midi_event_t *dev, int c, snd_seq_event_t *ev){	int rc = 0;	unsigned long flags;	c &= 0xff;	if (c >= MIDI_CMD_COMMON_CLOCK) {		/* real-time event */		ev->type = status_event[ST_SPECIAL + c - 0xf0].event;		ev->flags &= ~SNDRV_SEQ_EVENT_LENGTH_MASK;		ev->flags |= SNDRV_SEQ_EVENT_LENGTH_FIXED;		return 1;	}	spin_lock_irqsave(&dev->lock, flags);	if (dev->qlen > 0) {		/* rest of command */		dev->buf[dev->read++] = c;		if (dev->type != ST_SYSEX)			dev->qlen--;	} else {		/* new command */		dev->read = 1;		if (c & 0x80) {			dev->buf[0] = c;			if ((c & 0xf0) == 0xf0) /* special events */				dev->type = (c & 0x0f) + ST_SPECIAL;			else				dev->type = (c >> 4) & 0x07;			dev->qlen = status_event[dev->type].qlen;		} else {			/* process this byte as argument */			dev->buf[dev->read++] = c;			dev->qlen = status_event[dev->type].qlen - 1;		}	}	if (dev->qlen == 0) {		ev->type = status_event[dev->type].event;		ev->flags &= ~SNDRV_SEQ_EVENT_LENGTH_MASK;		ev->flags |= SNDRV_SEQ_EVENT_LENGTH_FIXED;		if (status_event[dev->type].encode) /* set data values */			status_event[dev->type].encode(dev, ev);		rc = 1;	} else 	if (dev->type == ST_SYSEX) {		if (c == MIDI_CMD_COMMON_SYSEX_END ||		    dev->read >= dev->bufsize) {			ev->flags &= ~SNDRV_SEQ_EVENT_LENGTH_MASK;			ev->flags |= SNDRV_SEQ_EVENT_LENGTH_VARIABLE;			ev->type = SNDRV_SEQ_EVENT_SYSEX;			ev->data.ext.len = dev->read;			ev->data.ext.ptr = dev->buf;			if (c != MIDI_CMD_COMMON_SYSEX_END)				dev->read = 0; /* continue to parse */			else				reset_encode(dev); /* all parsed */			rc = 1;		}	}	spin_unlock_irqrestore(&dev->lock, flags);	return rc;}/* encode note event */static void note_event(snd_midi_event_t *dev, snd_seq_event_t *ev){	ev->data.note.channel = dev->buf[0] & 0x0f;	ev->data.note.note = dev->buf[1];	ev->data.note.velocity = dev->buf[2];}/* encode one parameter controls */static void one_param_ctrl_event(snd_midi_event_t *dev, snd_seq_event_t *ev){	ev->data.control.channel = dev->buf[0] & 0x0f;	ev->data.control.value = dev->buf[1];}/* encode pitch wheel change */static void pitchbend_ctrl_event(snd_midi_event_t *dev, snd_seq_event_t *ev){	ev->data.control.channel = dev->buf[0] & 0x0f;	ev->data.control.value = (int)dev->buf[2] * 128 + (int)dev->buf[1] - 8192;}/* encode midi control change */static void two_param_ctrl_event(snd_midi_event_t *dev, snd_seq_event_t *ev){	ev->data.control.channel = dev->buf[0] & 0x0f;	ev->data.control.param = dev->buf[1];	ev->data.control.value = dev->buf[2];}/* encode one parameter value*/static void one_param_event(snd_midi_event_t *dev, snd_seq_event_t *ev){	ev->data.control.value = dev->buf[1];}/* encode song position */static void songpos_event(snd_midi_event_t *dev, snd_seq_event_t *ev){	ev->data.control.value = (int)dev->buf[2] * 128 + (int)dev->buf[1];}/* * decode from a sequencer event to midi bytes * return the size of decoded midi events */long snd_midi_event_decode(snd_midi_event_t *dev, unsigned char *buf, long count, snd_seq_event_t *ev){	unsigned int cmd, type;	if (ev->type == SNDRV_SEQ_EVENT_NONE)		return -ENOENT;	for (type = 0; type < ARRAY_SIZE(status_event); type++) {		if (ev->type == status_event[type].event)			goto __found;	}	for (type = 0; type < ARRAY_SIZE(extra_event); type++) {		if (ev->type == extra_event[type].event)			return extra_event[type].decode(dev, buf, count, ev);	}	return -ENOENT;      __found:	if (type >= ST_SPECIAL)		cmd = 0xf0 + (type - ST_SPECIAL);	else		/* data.note.channel and data.control.channel is identical */		cmd = 0x80 | (type << 4) | (ev->data.note.channel & 0x0f);	if (cmd == MIDI_CMD_COMMON_SYSEX) {		snd_midi_event_reset_decode(dev);		return snd_seq_expand_var_event(ev, count, buf, 1, 0);	} else {		int qlen;		unsigned char xbuf[4];		unsigned long flags;		spin_lock_irqsave(&dev->lock, flags);		if ((cmd & 0xf0) == 0xf0 || dev->lastcmd != cmd || dev->nostat) {			dev->lastcmd = cmd;			spin_unlock_irqrestore(&dev->lock, flags);			xbuf[0] = cmd;			if (status_event[type].decode)				status_event[type].decode(ev, xbuf + 1);			qlen = status_event[type].qlen + 1;		} else {			spin_unlock_irqrestore(&dev->lock, flags);			if (status_event[type].decode)				status_event[type].decode(ev, xbuf + 0);			qlen = status_event[type].qlen;		}		if (count < qlen)			return -ENOMEM;		memcpy(buf, xbuf, qlen);		return qlen;	}}/* decode note event */static void note_decode(snd_seq_event_t *ev, unsigned char *buf){	buf[0] = ev->data.note.note & 0x7f;	buf[1] = ev->data.note.velocity & 0x7f;}/* decode one parameter controls */static void one_param_decode(snd_seq_event_t *ev, unsigned char *buf){	buf[0] = ev->data.control.value & 0x7f;}/* decode pitch wheel change */static void pitchbend_decode(snd_seq_event_t *ev, unsigned char *buf){	int value = ev->data.control.value + 8192;	buf[0] = value & 0x7f;	buf[1] = (value >> 7) & 0x7f;}/* decode midi control change */static void two_param_decode(snd_seq_event_t *ev, unsigned char *buf){	buf[0] = ev->data.control.param & 0x7f;	buf[1] = ev->data.control.value & 0x7f;}/* decode song position */static void songpos_decode(snd_seq_event_t *ev, unsigned char *buf){	buf[0] = ev->data.control.value & 0x7f;	buf[1] = (ev->data.control.value >> 7) & 0x7f;}/* decode 14bit control */static int extra_decode_ctrl14(snd_midi_event_t *dev, unsigned char *buf, int count, snd_seq_event_t *ev){	unsigned char cmd;	int idx = 0;	cmd = MIDI_CMD_CONTROL|(ev->data.control.channel & 0x0f);	if (ev->data.control.param < 0x20) {		if (count < 4)			return -ENOMEM;		if (dev->nostat && count < 6)			return -ENOMEM;		if (cmd != dev->lastcmd || dev->nostat) {			if (count < 5)				return -ENOMEM;			buf[idx++] = dev->lastcmd = cmd;		}		buf[idx++] = ev->data.control.param;		buf[idx++] = (ev->data.control.value >> 7) & 0x7f;		if (dev->nostat)			buf[idx++] = cmd;		buf[idx++] = ev->data.control.param + 0x20;		buf[idx++] = ev->data.control.value & 0x7f;	} else {		if (count < 2)			return -ENOMEM;		if (cmd != dev->lastcmd || dev->nostat) {			if (count < 3)				return -ENOMEM;			buf[idx++] = dev->lastcmd = cmd;		}		buf[idx++] = ev->data.control.param & 0x7f;		buf[idx++] = ev->data.control.value & 0x7f;	}	return idx;}/* decode reg/nonreg param */static int extra_decode_xrpn(snd_midi_event_t *dev, unsigned char *buf, int count, snd_seq_event_t *ev){	unsigned char cmd;	char *cbytes;	static char cbytes_nrpn[4] = { MIDI_CTL_NONREG_PARM_NUM_MSB,				       MIDI_CTL_NONREG_PARM_NUM_LSB,				       MIDI_CTL_MSB_DATA_ENTRY,				       MIDI_CTL_LSB_DATA_ENTRY };	static char cbytes_rpn[4] =  { MIDI_CTL_REGIST_PARM_NUM_MSB,				       MIDI_CTL_REGIST_PARM_NUM_LSB,				       MIDI_CTL_MSB_DATA_ENTRY,				       MIDI_CTL_LSB_DATA_ENTRY };	unsigned char bytes[4];	int idx = 0, i;	if (count < 8)		return -ENOMEM;	if (dev->nostat && count < 12)		return -ENOMEM;	cmd = MIDI_CMD_CONTROL|(ev->data.control.channel & 0x0f);	bytes[0] = ev->data.control.param & 0x007f;	bytes[1] = (ev->data.control.param & 0x3f80) >> 7;	bytes[2] = ev->data.control.value & 0x007f;	bytes[3] = (ev->data.control.value & 0x3f80) >> 7;	if (cmd != dev->lastcmd && !dev->nostat) {		if (count < 9)			return -ENOMEM;		buf[idx++] = dev->lastcmd = cmd;	}	cbytes = ev->type == SNDRV_SEQ_EVENT_NONREGPARAM ? cbytes_nrpn : cbytes_rpn;	for (i = 0; i < 4; i++) {		if (dev->nostat)			buf[idx++] = dev->lastcmd = cmd;		buf[idx++] = cbytes[i];		buf[idx++] = bytes[i];	}	return idx;}/* *  exports */ EXPORT_SYMBOL(snd_midi_event_new);EXPORT_SYMBOL(snd_midi_event_free);EXPORT_SYMBOL(snd_midi_event_resize_buffer);EXPORT_SYMBOL(snd_midi_event_init);EXPORT_SYMBOL(snd_midi_event_reset_encode);EXPORT_SYMBOL(snd_midi_event_reset_decode);EXPORT_SYMBOL(snd_midi_event_no_status);EXPORT_SYMBOL(snd_midi_event_encode);EXPORT_SYMBOL(snd_midi_event_encode_byte);EXPORT_SYMBOL(snd_midi_event_decode);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
午夜婷婷国产麻豆精品| 精一区二区三区| bt7086福利一区国产| 精品福利视频一区二区三区| 日本不卡视频一二三区| 在线播放中文一区| 日韩国产欧美在线播放| 欧美精三区欧美精三区| 亚洲va韩国va欧美va| 欧美日韩综合一区| 亚洲电影欧美电影有声小说| 欧美日韩精品综合在线| 午夜久久电影网| 91精品国产麻豆国产自产在线 | 国产精品美女久久久久久久久| 国产乱子伦一区二区三区国色天香| 欧美xxxxx牲另类人与| 激情久久五月天| 久久久天堂av| 国产·精品毛片| 亚洲欧洲另类国产综合| 91偷拍与自偷拍精品| 亚洲黄色录像片| 精品婷婷伊人一区三区三| 午夜精品一区二区三区电影天堂| 欧美剧情电影在线观看完整版免费励志电影| 亚洲一区二区三区四区的| 欧美日韩成人综合| 久久成人综合网| 久久久电影一区二区三区| 丁香另类激情小说| 亚洲精品日日夜夜| 欧美精品一卡二卡| 久久国产乱子精品免费女| 久久女同性恋中文字幕| 波多野结衣中文一区| 亚洲蜜桃精久久久久久久| 欧美乱妇20p| 国产美女在线精品| 亚洲天堂精品视频| 91 com成人网| 国产美女视频一区| 亚洲精品亚洲人成人网在线播放| 欧美久久一二三四区| 黄色成人免费在线| 中文字幕亚洲在| 91精品在线观看入口| 国产高清不卡一区| 一区二区三区在线看| 91精品国产入口| 成人黄色在线网站| 亚洲国产精品久久人人爱蜜臀| 日韩限制级电影在线观看| 成人小视频在线观看| 亚洲一线二线三线视频| 精品国产乱码久久久久久牛牛 | 色哟哟一区二区| 青青草国产成人99久久| 中文字幕精品—区二区四季| 欧美性生活一区| 国产一区二区三区在线观看精品 | 欧美视频自拍偷拍| 韩国午夜理伦三级不卡影院| 最近日韩中文字幕| 日韩丝袜情趣美女图片| 91在线视频免费91| 美女精品自拍一二三四| 自拍偷自拍亚洲精品播放| 91精品国产高清一区二区三区| 高清国产一区二区| 午夜久久久影院| 中文字幕在线不卡视频| 日韩一区二区不卡| 一本久久a久久免费精品不卡| 久久爱另类一区二区小说| 一区二区三区加勒比av| 久久久久国产精品人| 欧美日韩精品电影| 成人伦理片在线| 久久综合综合久久综合| 亚洲乱码国产乱码精品精可以看 | 国产精品热久久久久夜色精品三区| 欧美色图一区二区三区| 成人理论电影网| 久久国产福利国产秒拍| 亚洲va天堂va国产va久| 国产精品白丝在线| 久久亚洲欧美国产精品乐播| 欧美片网站yy| 99re成人精品视频| 国产乱码精品一区二区三区av| 日韩专区在线视频| 夜夜亚洲天天久久| 国产精品短视频| 久久久久国产精品免费免费搜索| 欧美一区二区福利在线| 欧美丝袜丝nylons| 日本大香伊一区二区三区| 国产91丝袜在线观看| 美女被吸乳得到大胸91| 无吗不卡中文字幕| 亚洲午夜影视影院在线观看| 国产精品精品国产色婷婷| 久久久久久久国产精品影院| 日韩美女天天操| 51精品国自产在线| 欧美日韩国产小视频在线观看| 99国产精品久久久久| 成人精品免费网站| 国产+成+人+亚洲欧洲自线| 精品一区二区三区免费播放 | 亚洲国产wwwccc36天堂| 亚洲天堂精品视频| 最新成人av在线| 国产精品国产三级国产a| 久久蜜臀中文字幕| 精品国产乱码久久久久久1区2区| 91精品婷婷国产综合久久| 欧美日韩在线观看一区二区 | 日韩无一区二区| 日韩一区二区三区观看| 欧美另类高清zo欧美| 欧美精品123区| 51午夜精品国产| 欧美一区二区三级| 欧美一卡2卡3卡4卡| 日韩一区国产二区欧美三区| 欧美日本一区二区| 欧美电影在线免费观看| 日本精品视频一区二区三区| 91久久线看在观草草青青| 日本精品一级二级| 色婷婷久久久综合中文字幕| 色婷婷一区二区三区四区| 91麻豆123| 欧美亚洲一区三区| 在线播放日韩导航| 日韩欧美国产小视频| 精品国产免费一区二区三区香蕉| 欧美精品一区二| 国产欧美一区二区精品性| 国产欧美一二三区| 久久精品免视看| 国产精品乱码人人做人人爱| 中文字幕一区二区三区不卡| 亚洲精品网站在线观看| 亚洲午夜久久久久中文字幕久| 亚洲午夜免费电影| 蜜桃91丨九色丨蝌蚪91桃色| 国内精品免费**视频| 国产成人综合自拍| 99久久精品免费看| 欧美日韩大陆一区二区| 日韩精品在线一区二区| 久久新电视剧免费观看| 中文字幕乱码亚洲精品一区 | 国产精品传媒入口麻豆| 亚洲在线中文字幕| 美女脱光内衣内裤视频久久网站 | 亚洲精品一二三| 日日夜夜免费精品视频| 精品一区二区三区日韩| 成人免费观看视频| 欧美三级蜜桃2在线观看| 日韩精品一区在线| 国产精品伦一区二区三级视频| 亚洲在线成人精品| 裸体健美xxxx欧美裸体表演| 国产乱国产乱300精品| 99久久久国产精品免费蜜臀| 欧美日韩高清一区二区不卡| 久久久久久久久97黄色工厂| 亚洲毛片av在线| 毛片一区二区三区| 成人激情免费电影网址| 欧美精品三级日韩久久| 国产午夜久久久久| 亚洲最新视频在线观看| 麻豆91精品视频| 91丨porny丨最新| 欧美一级日韩免费不卡| 国产精品美女久久久久久| 午夜精品123| 成人黄页在线观看| 91精品国产综合久久福利软件| 中文字幕精品在线不卡| 日韩精品欧美精品| 成人精品小蝌蚪| 日韩精品专区在线影院观看| 亚洲欧美日韩国产另类专区| 免费人成在线不卡| 91老师片黄在线观看| 日韩免费视频一区二区| 亚洲精品大片www| 国产精品性做久久久久久| 欧美视频中文字幕| 国产精品你懂的在线| 奇米综合一区二区三区精品视频| 成人少妇影院yyyy| 欧美一区二区三区思思人|