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

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

?? resizer.cpp

?? < VC++視頻音頻開發>> 這本書的源碼
?? CPP
字號:

#include "Resizer.h"



aspect_ratio_factors_t aspectRatios[] = {

	{1,  1},
	{1,  1},
	{4,  3},
	{16, 9},
	{1,  1},
};


Resizer::Resizer() {

	this->lastPt.x = -1;
	this->lastPt.y = -1;
}

Resizer::~Resizer() {

}

void Resizer::Start(POINT *pt, DWORD originalWidth, DWORD originalHeight) {

	this->lastPt.x = -1;
	this->lastPt.y = -1;

	this->originalWidth  = originalWidth;
	this->originalHeight = originalHeight;
}

void Resizer::DrawFree(HWND hwnd, POINT *pt1) {

	POINT p, pt;
	RECT  rect;
	HPEN  pen, oldPen;
	HDC   dc;
	int   oldMode;

	pt.x = pt1->x;
	pt.y = pt1->y;

	GetClientRect(hwnd, &rect);
	
	p.x = rect.left;
	p.y = rect.top;

	ClientToScreen(hwnd, &p);
	dc = GetDC(NULL);

	pen    = CreatePen(PS_SOLID, 2, 0);
	oldPen = (HPEN) SelectObject(dc, pen);

	oldMode = SetROP2(dc, R2_NOT);



	if(this->lastPt.x != -1 && this->lastPt.y != -1) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, this->lastPt.x, p.y + 2);
		LineTo(dc, this->lastPt.x, this->lastPt.y);
		LineTo(dc, p.x + 2, this->lastPt.y);
		LineTo(dc, p.x + 2, p.y + 2);
	}

	if(pt1->x > 32768 || pt1->y > 32768) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
	
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_HEIGHT);
		LineTo(dc, p.x + 2, p.y + DEFAULT_SKIN_HEIGHT);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_HEIGHT;

		goto end;
	}

	ClientToScreen(hwnd, &pt);



	if((pt.x - p.x) >= DEFAULT_SKIN_WIDTH && (pt.y - p.y) >= DEFAULT_SKIN_HEIGHT) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, pt.x + 5, p.y + 2);
		LineTo(dc, pt.x + 5, pt.y + 5);
		LineTo(dc, p.x + 2,  pt.y + 5);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = pt.x + 5;
		this->lastPt.y = pt.y + 5;
	}
	else {

		if((pt.x - p.x) >= DEFAULT_SKIN_WIDTH) {

			MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
			LineTo(dc, pt.x + 5, p.y + 2);
			LineTo(dc, pt.x + 5, p.y + DEFAULT_SKIN_HEIGHT);
			LineTo(dc, p.x + 2,  p.y + DEFAULT_SKIN_HEIGHT);
			LineTo(dc, p.x + 2, p.y + 2);
	
			this->lastPt.x = pt.x + 5;
			this->lastPt.y = p.y + DEFAULT_SKIN_HEIGHT;

		}
		else {

			if((pt.y - p.y) >= DEFAULT_SKIN_HEIGHT) {
			
				MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
				LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
				LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, pt.y + 5);
				LineTo(dc, p.x + 2, pt.y + 5);
				LineTo(dc, p.x + 2, p.y + 2);
	
				this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
				this->lastPt.y = pt.y + 5;

			}
			else {

				MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
				LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
				LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_HEIGHT);
				LineTo(dc, p.x + 2, p.y + DEFAULT_SKIN_HEIGHT);
				LineTo(dc, p.x + 2, p.y + 2);
	
				this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
				this->lastPt.y = p.y + DEFAULT_SKIN_HEIGHT;
			}
		}
	}

end:



	SetROP2(dc, oldMode);

	SelectObject(dc, oldPen);
			
	DeleteObject(pen);
	ReleaseDC(NULL, dc);
}

void Resizer::DrawOriginal(HWND hwnd, POINT *pt1)
{
	POINT p, pt;
	RECT  rect;
	HPEN  pen, oldPen;
	HDC   dc;
	int   oldMode;

	pt.x = pt1->x;
	pt.y = pt1->y;

	GetClientRect(hwnd, &rect);
	
	p.x = rect.left;
	p.y = rect.top;

	ClientToScreen(hwnd, &p);
	dc = GetDC(NULL);

	pen    = CreatePen(PS_SOLID, 2, 0);
	oldPen = (HPEN) SelectObject(dc, pen);

	oldMode = SetROP2(dc, R2_NOT);


	if(this->lastPt.x != -1 && this->lastPt.y != -1) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, this->lastPt.x, p.y + 2);
		LineTo(dc, this->lastPt.x, this->lastPt.y);
		LineTo(dc, p.x + 2, this->lastPt.y);
		LineTo(dc, p.x + 2, p.y + 2);
	}

	if(pt1->x > 32768 || pt1->y > 32768) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
	
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*this->originalHeight/this->originalWidth + 115 + 22);
		LineTo(dc, p.x + 2, p.y + DEFAULT_SKIN_WIDTH*this->originalHeight/this->originalWidth + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*this->originalHeight/this->originalWidth + 115 + 22;

		goto endTV;
	}

	ClientToScreen(hwnd, &pt);




	if((pt.x - p.x) >= DEFAULT_SKIN_WIDTH) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, pt.x + 5, p.y + 2);
		LineTo(dc, pt.x + 5, p.y + (pt.x - p.x - 10)*this->originalHeight/this->originalWidth + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + (pt.x - p.x - 10)*this->originalHeight/this->originalWidth + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = pt.x + 5;
		this->lastPt.y = p.y + (pt.x - p.x - 10)*this->originalHeight/this->originalWidth + 115 + 22;
	}
	else {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*this->originalHeight/this->originalWidth + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + DEFAULT_SKIN_WIDTH*this->originalHeight/this->originalWidth + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*this->originalHeight/this->originalWidth + 115 + 22;
	}

endTV:


	SetROP2(dc, oldMode);

	SelectObject(dc, oldPen);
			
	DeleteObject(pen);
	ReleaseDC(NULL, dc);
}

void Resizer::DrawTV(HWND hwnd, POINT *pt1)
{
	POINT p, pt;
	RECT  rect;
	HPEN  pen, oldPen;
	HDC   dc;
	int   oldMode;

	pt.x = pt1->x;
	pt.y = pt1->y;

	GetClientRect(hwnd, &rect);
	
	p.x = rect.left;
	p.y = rect.top;

	ClientToScreen(hwnd, &p);
	dc = GetDC(NULL);

	pen    = CreatePen(PS_SOLID, 2, 0);
	oldPen = (HPEN) SelectObject(dc, pen);

	oldMode = SetROP2(dc, R2_NOT);



	if(this->lastPt.x != -1 && this->lastPt.y != -1) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, this->lastPt.x, p.y + 2);
		LineTo(dc, this->lastPt.x, this->lastPt.y);
		LineTo(dc, p.x + 2, this->lastPt.y);
		LineTo(dc, p.x + 2, p.y + 2);
	}

	if(pt1->x > 32768 || pt1->y > 32768) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
	
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*3/4 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + DEFAULT_SKIN_WIDTH*3/4 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*3/4 + 115 + 22;

		goto endTV;
	}

	ClientToScreen(hwnd, &pt);




	if((pt.x - p.x) >= DEFAULT_SKIN_WIDTH) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, pt.x + 5, p.y + 2);
		LineTo(dc, pt.x + 5, p.y + (pt.x - p.x - 10)*3/4 + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + (pt.x - p.x - 10)*3/4 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = pt.x + 5;
		this->lastPt.y = p.y + (pt.x - p.x - 10)*3/4 + 115 + 22;
	}
	else {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*3/4 + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + DEFAULT_SKIN_WIDTH*3/4 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*3/4 + 115 + 22;
	}

endTV:


	SetROP2(dc, oldMode);

	SelectObject(dc, oldPen);
			
	DeleteObject(pen);
	ReleaseDC(NULL, dc);
}

void Resizer::DrawWide(HWND hwnd, POINT *pt1)
{
	POINT p, pt;
	RECT  rect;
	HPEN  pen, oldPen;
	HDC   dc;
	int   oldMode;

	pt.x = pt1->x;
	pt.y = pt1->y;

	GetClientRect(hwnd, &rect);
	
	p.x = rect.left;
	p.y = rect.top;

	ClientToScreen(hwnd, &p);
	dc = GetDC(NULL);

	pen    = CreatePen(PS_SOLID, 2, 0);
	oldPen = (HPEN) SelectObject(dc, pen);

	oldMode = SetROP2(dc, R2_NOT);


	if(this->lastPt.x != -1 && this->lastPt.y != -1) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, this->lastPt.x, p.y + 2);
		LineTo(dc, this->lastPt.x, this->lastPt.y);
		LineTo(dc, p.x + 2, this->lastPt.y);
		LineTo(dc, p.x + 2, p.y + 2);
	}

	if(pt1->x > 32768 || pt1->y > 32768) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
	
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*9/16 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + DEFAULT_SKIN_WIDTH*9/16 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*9/16 + 115 + 22;

		goto endWide;
	}

	ClientToScreen(hwnd, &pt);



	if((pt.x - p.x) >= DEFAULT_SKIN_WIDTH) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, pt.x + 5, p.y + 2);
		LineTo(dc, pt.x + 5, p.y + (pt.x - p.x - 10)*9/16 + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + (pt.x - p.x - 10)*9/16 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = pt.x + 5;
		this->lastPt.y = p.y + (pt.x - p.x - 10)*9/16 + 115 + 22;
	}
	else {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*9/16 + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + DEFAULT_SKIN_WIDTH*9/16 + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*9/16 + 115 + 22;
	}

endWide:


	SetROP2(dc, oldMode);

	SelectObject(dc, oldPen);
			
	DeleteObject(pen);
	ReleaseDC(NULL, dc);
}

void Resizer::DrawCustom(HWND hwnd, POINT *pt1)
{
	POINT p, pt;
	RECT  rect;
	HPEN  pen, oldPen;
	HDC   dc;
	int   oldMode;

	pt.x = pt1->x;
	pt.y = pt1->y;

	GetClientRect(hwnd, &rect);
	
	p.x = rect.left;
	p.y = rect.top;

	ClientToScreen(hwnd, &p);
	dc = GetDC(NULL);

	pen    = CreatePen(PS_SOLID, 2, 0);
	oldPen = (HPEN) SelectObject(dc, pen);

	oldMode = SetROP2(dc, R2_NOT);



	if(this->lastPt.x != -1 && this->lastPt.y != -1) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, this->lastPt.x, p.y + 2);
		LineTo(dc, this->lastPt.x, this->lastPt.y);
		LineTo(dc, p.x + 2, this->lastPt.y);
		LineTo(dc, p.x + 2, p.y + 2);
	}

	if(pt1->x > 32768 || pt1->y > 32768) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
	
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22);
		LineTo(dc, p.x + 2, p.y + DEFAULT_SKIN_WIDTH*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22;

		goto endCustom;
	}

	ClientToScreen(hwnd, &pt);



	if((pt.x - p.x) >= DEFAULT_SKIN_WIDTH) {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, pt.x + 5, p.y + 2);
		LineTo(dc, pt.x + 5, p.y + (pt.x - p.x - 10)*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + (pt.x - p.x - 10)*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = pt.x + 5;
		this->lastPt.y = p.y + (pt.x - p.x - 10)*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22;
	}
	else {

		MoveToEx(dc, p.x + 2, p.y + 2, NULL);
		
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + 2);
		LineTo(dc, p.x + DEFAULT_SKIN_WIDTH, p.y + DEFAULT_SKIN_WIDTH*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22);
		LineTo(dc, p.x + 2,  p.y + DEFAULT_SKIN_WIDTH*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22);
		LineTo(dc, p.x + 2, p.y + 2);
	
		this->lastPt.x = p.x + DEFAULT_SKIN_WIDTH;
		this->lastPt.y = p.y + DEFAULT_SKIN_WIDTH*aspectRatios[ASPECT_RATIO_CUSTOM].yFactor/aspectRatios[ASPECT_RATIO_CUSTOM].xFactor + 115 + 22;
	}

endCustom:



	SetROP2(dc, oldMode);

	SelectObject(dc, oldPen);
			
	DeleteObject(pen);
	ReleaseDC(NULL, dc);
}

void Resizer::Draw(HWND hwnd, POINT *pt1, aspect_ratio_t aspectRatio) {

	switch(aspectRatio) {

	case ASPECT_RATIO_FREE:
		this->DrawFree(hwnd, pt1);
		break;

	case ASPECT_RATIO_ORIGINAL:
		this->DrawOriginal(hwnd, pt1);
		break;

	case ASPECT_RATIO_TV:
		this->DrawTV(hwnd, pt1);
		break;

	case ASPECT_RATIO_WIDE:
		this->DrawWide(hwnd, pt1);
		break;

	case ASPECT_RATIO_CUSTOM:
		this->DrawCustom(hwnd, pt1);
		break;
	}
}

POINT *Resizer::GetLastPoint()
{
	return &this->lastPt;
}


void Resizer::Stop() {

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天天色天天操综合| 高清国产一区二区三区| 久久精品国产精品亚洲精品| 精品一区二区三区在线观看国产 | 国产91精品一区二区| 成人激情电影免费在线观看| 成人免费毛片嘿嘿连载视频| 欧美色窝79yyyycom| 精品理论电影在线| 一区二区三区四区蜜桃| 久久99精品视频| 99久久久精品| 日韩欧美中文一区| 亚洲视频免费观看| 免费一区二区视频| 91极品视觉盛宴| 欧美精品一区二区三| 亚洲欧美日韩国产一区二区三区| 天天色 色综合| 成人黄色国产精品网站大全在线免费观看| 欧美亚洲综合一区| 国产精品沙发午睡系列990531| 亚洲国产乱码最新视频 | 日韩精品在线一区| 中文字幕欧美一| 免费成人小视频| 色香色香欲天天天影视综合网| 日韩一级片网址| 亚洲三级在线播放| 国产福利精品导航| 欧美成人高清电影在线| 亚洲成a人v欧美综合天堂下载 | 一区二区三区四区精品在线视频| 另类小说综合欧美亚洲| 欧美伊人久久久久久午夜久久久久| 久久久久久97三级| 蜜臀av一区二区在线免费观看| 在线亚洲免费视频| 国产精品高清亚洲| 国产精品88888| 日韩欧美色综合| 日韩精品91亚洲二区在线观看 | 成人午夜私人影院| 久久亚区不卡日本| 亚洲六月丁香色婷婷综合久久| 精品亚洲aⅴ乱码一区二区三区| 欧美日韩视频不卡| 亚洲va国产va欧美va观看| 色欧美乱欧美15图片| 国产精品高清亚洲| 91免费观看在线| 国产精品高潮呻吟| 色悠悠久久综合| 亚洲美女屁股眼交| 在线精品观看国产| 亚洲大片精品永久免费| 欧美性猛交xxxxxxxx| 一区二区三区在线视频免费| 日本乱人伦aⅴ精品| 亚洲黄一区二区三区| 成人性生交大片免费看视频在线| 国产精品婷婷午夜在线观看| 成人激情综合网站| 亚洲精品五月天| 欧美日韩在线一区二区| 婷婷综合在线观看| 欧美一级理论片| 国产一区不卡视频| 国产精品久久久久影院老司| 99国产欧美另类久久久精品| 日韩美女精品在线| 91福利在线看| 奇米在线7777在线精品| 久久久三级国产网站| 成人福利视频网站| 亚洲欧美日韩国产另类专区| 91.xcao| 老司机午夜精品| 中文子幕无线码一区tr| 日本久久电影网| 亚洲国产aⅴ天堂久久| 91国偷自产一区二区开放时间 | 日韩一级高清毛片| 精品一区二区影视| 中文字幕综合网| 欧美一区二区三区免费观看视频| 国产在线精品免费av| 亚洲国产精品ⅴa在线观看| av亚洲产国偷v产偷v自拍| 中文字幕免费在线观看视频一区| 日本强好片久久久久久aaa| 久久久99精品久久| 欧洲精品在线观看| 久久国产乱子精品免费女| 国产色综合久久| 欧美午夜片在线观看| 国产一区欧美一区| 亚洲成人精品一区| 欧美激情一区二区三区全黄 | 日韩电影一区二区三区| 国产精品1024| 综合久久一区二区三区| 懂色av中文字幕一区二区三区| 欧美大片日本大片免费观看| 亚洲午夜三级在线| 欧美日韩中文字幕一区二区| 国产麻豆视频精品| 自拍偷拍国产精品| 久久精品亚洲精品国产欧美kt∨| 国产精品69毛片高清亚洲| 美女视频网站久久| 麻豆一区二区在线| 国产成人免费视频精品含羞草妖精| 久久成人久久鬼色| 老司机午夜精品99久久| 精品对白一区国产伦| 国产成人无遮挡在线视频| 亚洲色图欧美在线| 91啪九色porn原创视频在线观看| 亚洲天天做日日做天天谢日日欢 | 久久婷婷成人综合色| av电影一区二区| 国产一区在线视频| 日本欧美一区二区在线观看| 一区二区三区色| 精品国产一区二区三区久久久蜜月 | 久久久久久久久久电影| 精品国产免费一区二区三区四区 | 91国产丝袜在线播放| 色偷偷成人一区二区三区91 | 成人网在线免费视频| 国产精品一品二品| 成人国产精品免费网站| 91免费观看视频| 欧美日本精品一区二区三区| 欧美一级生活片| 有坂深雪av一区二区精品| 亚洲自拍偷拍麻豆| 日本欧美在线观看| 国产成人日日夜夜| 91久久国产最好的精华液| 欧美日韩国产三级| 2020国产精品自拍| 最新热久久免费视频| 亚洲国产欧美另类丝袜| 九九国产精品视频| 91免费精品国自产拍在线不卡| 欧美日韩在线播放三区| 欧美r级电影在线观看| 国产精品美女久久久久久2018| 亚洲精品国产精华液| 丝袜亚洲精品中文字幕一区| 国产一区二区三区久久久| 一本到不卡免费一区二区| 91精品国产综合久久久久久久| 久久久av毛片精品| 亚洲成人av在线电影| 国产高清精品久久久久| 欧美三级电影网| 亚洲国产精品传媒在线观看| 亚洲高清三级视频| 夫妻av一区二区| 欧美日韩1区2区| 国产午夜亚洲精品不卡| 亚洲成人777| 成人av网址在线| 欧美电视剧免费全集观看| 亚洲黄网站在线观看| 国产成人综合在线观看| 欧美巨大另类极品videosbest | 精品成人佐山爱一区二区| 亚洲欧洲成人自拍| 国产一区二区三区| 666欧美在线视频| 亚洲免费三区一区二区| 国产一区在线视频| 日韩美女主播在线视频一区二区三区| 亚洲欧美激情小说另类| 成人小视频在线观看| 欧美精品一区二区三| 免费av成人在线| 在线不卡中文字幕| 性做久久久久久免费观看欧美| 91在线码无精品| 中文字幕中文字幕在线一区| 国产毛片精品国产一区二区三区| 欧美一区三区四区| 日本91福利区| 欧美一区日韩一区| 奇米色777欧美一区二区| 精品视频在线免费看| 一区二区三区不卡视频| 成人动漫中文字幕| 国产精品久久久久久久久晋中| 国产91精品精华液一区二区三区 | 国内精品伊人久久久久av影院| 欧美日韩国产区一| 日韩国产精品大片| 日韩欧美的一区| 国产一区二区不卡在线|