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

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

?? zfft.c

?? DSP信號處理源碼,包括數字信號處理課程中的基本源程序。
?? C
字號:
/**********************************************************************
ZFFT.C -   ZOOM FFT 演示程序
fft        FFT 子程序
ifft       IFFT 子程序
***********************************************************************/

#include    <math.h>
#include    <stdlib.h>
#include    <stdio.h>
#include    <string.h>
#include    <conio.h>
#include    <graphics.h>

/* COMPLEX STRUCTURE */
typedef struct {
    float real, imag;
} COMPLEX;

#define    PI	(4.0*atan(1.0))

 void fft(COMPLEX *,int);
 void ifft(COMPLEX *,int);

/********************************************************/
void main(void)
{
  int          i,length,m,j;
  char         title[80],tmp[20],dis[40];
  double       *amp;
  double       a,tempflt;
  COMPLEX      *samp,*rsamp;

  int gdriver=DETECT, gmode,errorcode;
  int scx,scy,y0,signa,signb;
  int style, userpat;
  int start_x=60,start_y1=20,start_y2,end_x=10,end_y=40;
  long tlen;
  double ys,xs,ym;

  int N = 256;           /* FFT 點數 */
  int M = 512;           /* ZFFT 點數 */
  int A = 5;             /* ZFFT 放大倍數 */
  int start_F = 15;      /* ZFFT 開始點 */
  int B0,B;

  B = N/A/2;
  B0 = start_F+B;

 /*initializes the graphics mode */
  initgraph(&gdriver,&gmode,"");
  errorcode=graphresult();
  if (errorcode != grOk) {
     printf("Graphics error: %s\n",grapherrormsg(errorcode));
     printf("Press any key to halt!\n");
     getch();
     exit(1);
  }
  if(N>M) {
     amp = (double *) calloc(N+1,sizeof(double));
     samp = (COMPLEX *) calloc(N+1,sizeof(COMPLEX));
     rsamp = (COMPLEX *) calloc(N+1,sizeof(COMPLEX));
  }
  else {
     amp = (double *) calloc(M+1,sizeof(double));
     samp = (COMPLEX *) calloc(M+1,sizeof(COMPLEX));
     rsamp = (COMPLEX *) calloc(M+1,sizeof(COMPLEX));
  }
  if(!rsamp) {
      printf("\nUnable to allocate complex array for fft\n");
      exit(1);
  }

  scx=getmaxx();
  scy=getmaxy();
  start_y2=scy/2;

  /* draw the frame */
  setcolor(LIGHTGREEN);
  rectangle(start_x-1,start_y1-20,scx-end_x+1,start_y2-end_y+1);
  rectangle(start_x-1,start_y2-20,scx-end_x+1,scy-end_y+1);
  setcolor(GREEN);
  style=SOLID_LINE;
  userpat = 1;
  setlinestyle(style, userpat, 1);
  rectangle(start_x,start_y1,scx-end_x,start_y2-end_y);
  rectangle(start_x,start_y2,scx-end_x,scy-end_y);

  settextstyle(DEFAULT_FONT,HORIZ_DIR,1);
  setcolor(YELLOW);
  strcpy(dis,"0");
  outtextxy(start_x-10,start_y2-end_y+3,dis);
  itoa(N,dis,10);
  outtextxy(scx-end_x+5-strlen(dis)*8,start_y2-end_y+3,dis);
  strcpy(dis,"0");
  outtextxy(start_x-10,scy-end_y+3,dis);
  itoa(M,dis,10);
  outtextxy(scx-end_x+5-strlen(dis)*8,scy-end_y+3,dis);

  settextstyle(DEFAULT_FONT,VERT_DIR,1);
  strcpy(title,"The Magnitude of Spectrum");
  tlen=strlen(title);
  if ((tlen<<3)<scy) {
     setcolor(YELLOW);
     outtextxy(start_x-20,(scy-end_y-(tlen<<3))>>1,title);
  }

  settextstyle(DEFAULT_FONT,HORIZ_DIR,1);
  strcpy(title,"The Input Signal Spectrum(FFT)");
  tlen=strlen(title);
  if ((tlen<<3)<scx) {
    setcolor(LIGHTGREEN);
    outtextxy((start_x+scx-end_x-(tlen<<3))>>1,start_y1-13,title);
  }

  strcpy(title,"The Spectrum of ZFFT Result A=");
  itoa(A,dis,10);
  strcat(title,dis);
  tlen=strlen(title);
  if ((tlen<<3)<scx) {
    setcolor(LIGHTGREEN);
    outtextxy((start_x+scx-end_x-(tlen<<3))>>1,start_y2-13,title);
  }

  /* Input sampling data for processing */
  settextstyle(DEFAULT_FONT,HORIZ_DIR,1);
  strcpy(title,"Waitting for the calculation...");
  tlen=strlen(title);
  if ((tlen<<3)<scx) {
    setcolor(LIGHTRED);
    outtextxy((start_x+scx-end_x-(tlen<<3))>>1,start_y2/2,title);
  }

  /* Input signal sample */
  for (i = 0; i < N; i++)  {
     samp[i].real = 0;
     samp[i].imag = 0;
  }
  for (i = 0; i < N/8; i++)  {
      samp[i].real=1;
      samp[N/2+i].real=1;
      samp[N/4+i].real=1;
      samp[N*3/4+i].real=1;
  }

  /* Calculate the input data's spectrum */
  fft(samp,log(N)/log(2));

  for (i = 0; i < N; i++)
     amp[i] = sqrt(samp[i].real*samp[i].real+samp[i].imag*samp[i].imag);

  /* Display the spectrum curve */
  ym = 1.0e-90;
  for(i = 0; i < N; i++)
     if (amp[i] > ym)  ym = amp[i];

  ys=(double)(start_y2-end_y-start_y1)/ym;
  xs=(double)(scx - start_x - end_x)/N;
  y0=start_y2-end_y;

  setfillstyle(EMPTY_FILL,BLACK);
  bar(start_x+1,start_y1+1,scx-end_x-1,start_y2-end_y-1);

  setcolor(DARKGRAY);
  style=DASHED_LINE;
  userpat = 1;
  setlinestyle(style, userpat, 1);
  for(i=0;i<=10;i++)
    line(start_x,start_y1+(start_y2-start_y1-end_y)*i/10,scx-end_x,start_y1+(start_y2-start_y1-end_y)*i/10);
  for(i=0;i<=10;i++)
    line(start_x+(scx-start_x-end_x)*i/10,start_y1,start_x+(scx-start_x-end_x)*i/10,start_y2-end_y);

  style=SOLID_LINE;
  setlinestyle(style, userpat, 1);
  setcolor(LIGHTMAGENTA);
  for(i=0;i<N-1;i++)
    line(xs*i+start_x,y0-amp[i]*ys,xs*(i+1)+start_x,y0-amp[i+1]*ys);

  gcvt(ym,8,dis);
  outtextxy(start_x+3,start_y1-10,dis);

  setcolor(WHITE);
  setwritemode(XOR_PUT);
  line(xs*(B0-B)+start_x,start_y1,xs*(B0-B)+start_x,y0);
  line(xs*(B0+B)+start_x,start_y1,xs*(B0+B)+start_x,y0);
  setwritemode(COPY_PUT);

  /* Input resampling data for processing */
  settextstyle(DEFAULT_FONT,HORIZ_DIR,1);
  strcpy(title,"Waitting for the calculation...");
  tlen=strlen(title);
  if ((tlen<<3)<scx) {
    setcolor(LIGHTRED);
    outtextxy((start_x+scx-end_x-(tlen<<3))>>1,start_y2+start_y2/2,title);
  }

  for (i = 0; i < N; i++)  {
     rsamp[i].real = 0;
     rsamp[i].imag = 0;
  }
  for (i = B0; i < B0+B; i++) {
     rsamp[(i-B0)].real = samp[i].real;
     rsamp[(i-B0)].imag = samp[i].imag;
  }

  for (i = B0; i > B0-B; i--) {
     rsamp[(N-B0+i)].real = samp[i].real;
     rsamp[(N-B0+i)].imag = samp[i].imag;
  }

  /* Calculate the input data spectrum */
  ifft(rsamp,log(N)/log(2));

  for (i = 0; i < M; i++) {
     if (i*A < N) {
       samp[i].real = rsamp[i*A].real;
       samp[i].imag = rsamp[i*A].imag;
     }
     else {
       samp[i].real = 0;
       samp[i].imag = 0;
     }
  }

  fft(samp,log(M)/log(2));

  /* Trim the output order */
  for (i = 0; i < M/2; i++)  {
     rsamp[i].real = samp[i+M/2].real;
     rsamp[i].imag = samp[i+M/2].imag;
     rsamp[i+M/2].real = samp[i].real;
     rsamp[i+M/2].imag = samp[i].imag;
  }
  for (i = 0; i < M; i++)
     amp[i] = (sqrt(rsamp[i].real*rsamp[i].real+rsamp[i].imag*rsamp[i].imag))*A;

  ym = 1.0e-90;
  for(i = 0; i < M; i++)
     if (amp[i] > ym)  ym = amp[i];

  ys=(double)(start_y2-end_y-start_y1)/ym;
  xs=(double)(scx - start_x - end_x)/N;
  y0=start_y2-end_y;

  ym = 1.0e-90;
  for(i = 0; i < M; i++)
     if (amp[i] > ym)  ym = amp[i];

  ys=(double)(scy - end_y - start_y2)/ym;
  xs=(double)(scx - start_x - end_x)/M;
  y0=scy-end_y;

  setfillstyle(EMPTY_FILL,BLACK);
  bar(start_x+1,start_y2+1,scx-end_x-1,scy-end_y-1);

  setcolor(DARKGRAY);
  style=DASHED_LINE;
  userpat = 1;
  setlinestyle(style, userpat, 1);
  for(i=0;i<=10;i++)
    line(start_x,start_y2+(scy-start_y2-end_y)*i/10,scx-end_x,start_y2+(scy-start_y2-end_y)*i/10);
  for(i=0;i<=10;i++)
    line(start_x+(scx-start_x-end_x)*i/10,start_y2,start_x+(scx-start_x-end_x)*i/10,scy-end_y);

  style=SOLID_LINE;
  setlinestyle(style, userpat, 1);
  setcolor(LIGHTMAGENTA);
  for(i=0;i<M-1;i++)
    line(xs*i+start_x,y0-amp[i]*ys,xs*(i+1)+start_x,y0-amp[i+1]*ys);

  gcvt(ym,8,dis);
  outtextxy(start_x+3,start_y2-10,dis);

  strcpy(dis,"Press any key to quit...");
  setcolor(LIGHTRED);
  outtextxy((scx-28*8)>>1,scy-16,dis);

  getch();
  closegraph();
  free(samp);
  free(rsamp);
  free(amp);
}

/************************************************************************
fft - 基2 DIF FFT 子程序

輸入參數:
	 COMPLEX *x : FFT 輸入和輸出數據區指針;
	      int m : FFT 長度 ( length = 2^m );
輸出參數:
	 輸出數據放在 x 所指的輸入數據區.
	 無輸出參數.

void fft(COMPLEX *x, int m)
*************************************************************************/
void fft(COMPLEX *x,int m)
{
    static COMPLEX *w;           /* used to store the w complex array */
    static int mstore = 0;       /* stores m for future reference */
    static int n = 1;            /* length of fft stored for future */

    COMPLEX u,temp,tm;
    COMPLEX *xi,*xip,*xj,*wptr;

    int i,j,k,l,le,windex;

    double arg,w_real,w_imag,wrecur_real,wrecur_imag,wtemp_real;

    if(m != mstore) {

/* free previously allocated storage and set new m */

	if(mstore != 0) free(w);
	mstore = m;
	if(m == 0) return;       /* if m=0 then done */

/* n = 2**m = fft length */

	n = 1 << m;
	le = n/2;

/* allocate the storage for w */

	w = (COMPLEX *) calloc(le-1,sizeof(COMPLEX));
	if(!w) {
	    printf("\nUnable to allocate complex W array\n");
	    exit(1);
	}

/* calculate the w values recursively */

	arg = 4.0*atan(1.0)/le;         /* PI/le calculation */
	wrecur_real = w_real = cos(arg);
	wrecur_imag = w_imag = -sin(arg);
	xj = w;
	for (j = 1 ; j < le ; j++) {
	    xj->real = (float)wrecur_real;
	    xj->imag = (float)wrecur_imag;
	    xj++;
	    wtemp_real = wrecur_real*w_real - wrecur_imag*w_imag;
	    wrecur_imag = wrecur_real*w_imag + wrecur_imag*w_real;
	    wrecur_real = wtemp_real;
	}
    }

/* start fft */

    le = n;
    windex = 1;
    for (l = 0 ; l < m ; l++) {
	le = le/2;

/* first iteration with no multiplies */

	for(i = 0 ; i < n ; i = i + 2*le) {
	    xi = x + i;
	    xip = xi + le;
	    temp.real = xi->real + xip->real;
	    temp.imag = xi->imag + xip->imag;
	    xip->real = xi->real - xip->real;
	    xip->imag = xi->imag - xip->imag;
	    *xi = temp;
	}

/* remaining iterations use stored w */

	wptr = w + windex - 1;
	for (j = 1 ; j < le ; j++) {
	    u = *wptr;
	    for (i = j ; i < n ; i = i + 2*le) {
		xi = x + i;
		xip = xi + le;
		temp.real = xi->real + xip->real;
		temp.imag = xi->imag + xip->imag;
		tm.real = xi->real - xip->real;
		tm.imag = xi->imag - xip->imag;
		xip->real = tm.real*u.real - tm.imag*u.imag;
		xip->imag = tm.real*u.imag + tm.imag*u.real;
		*xi = temp;
	    }
	    wptr = wptr + windex;
	}
	windex = 2*windex;
    }

/* rearrange data by bit reversing */

    j = 0;
    for (i = 1 ; i < (n-1) ; i++) {
	k = n/2;
	while(k <= j) {
	    j = j - k;
	    k = k/2;
	}
	j = j + k;
	if (i < j) {
	    xi = x + i;
	    xj = x + j;
	    temp = *xj;
	    *xj = *xi;
	    *xi = temp;
	}
    }
}

/************************************************************************
ifft - 基2 DIF IFFT 子程序

輸入參數:
	 COMPLEX *x : IFFT 輸入和輸出數據區指針;
	      int m : IFFT 長度 ( length = 2^m );
輸出參數:
	 輸出數據放在 x 所指的輸入數據區.
	 無輸出參數.

void ifft(COMPLEX *x, int m)
*************************************************************************/
void ifft(x,m)
    COMPLEX *x;
    int m;
{
    static COMPLEX *w;           /* used to store the w complex array */
    static int mstore = 0;       /* stores m for future reference */
    static int n = 1;            /* length of ifft stored for future */

    COMPLEX u,temp,tm;
    COMPLEX *xi,*xip,*xj,*wptr;

    int i,j,k,l,le,windex;

    double arg,w_real,w_imag,wrecur_real,wrecur_imag,wtemp_real;
    float scale;

    if(m != mstore) {

/* free previously allocated storage and set new m */

	if(mstore != 0) free(w);
	mstore = m;
	if(m == 0) return;       /* if m=0 then done */

/* n = 2**m = inverse fft length */

	n = 1 << m;
	le = n/2;

/* allocate the storage for w */

	w = (COMPLEX *) calloc(le-1,sizeof(COMPLEX));
	if(!w) {
	    printf("\nUnable to allocate complex W array\n");
	    exit(1);
	}

/* calculate the w values recursively */

	arg = 4.0*atan(1.0)/le;         /* PI/le calculation */
	wrecur_real = w_real = cos(arg);
	wrecur_imag = w_imag = sin(arg);  /* opposite sign from fft */
	xj = w;
	for (j = 1 ; j < le ; j++) {
	    xj->real = (float)wrecur_real;
	    xj->imag = (float)wrecur_imag;
	    xj++;
	    wtemp_real = wrecur_real*w_real - wrecur_imag*w_imag;
	    wrecur_imag = wrecur_real*w_imag + wrecur_imag*w_real;
	    wrecur_real = wtemp_real;
	}
    }

/* start inverse fft */

    le = n;
    windex = 1;
    for (l = 0 ; l < m ; l++) {
	le = le/2;

/* first iteration with no multiplies */

	for(i = 0 ; i < n ; i = i + 2*le) {
	    xi = x + i;
	    xip = xi + le;
	    temp.real = xi->real + xip->real;
	    temp.imag = xi->imag + xip->imag;
	    xip->real = xi->real - xip->real;
	    xip->imag = xi->imag - xip->imag;
	    *xi = temp;
	}

/* remaining iterations use stored w */

	wptr = w + windex - 1;
	for (j = 1 ; j < le ; j++) {
	    u = *wptr;
	    for (i = j ; i < n ; i = i + 2*le) {
		xi = x + i;
		xip = xi + le;
		temp.real = xi->real + xip->real;
		temp.imag = xi->imag + xip->imag;
		tm.real = xi->real - xip->real;
		tm.imag = xi->imag - xip->imag;
		xip->real = tm.real*u.real - tm.imag*u.imag;
		xip->imag = tm.real*u.imag + tm.imag*u.real;
		*xi = temp;
	    }
	    wptr = wptr + windex;
	}
	windex = 2*windex;
    }

/* rearrange data by bit reversing */

    j = 0;
    for (i = 1 ; i < (n-1) ; i++) {
	k = n/2;
	while(k <= j) {
	    j = j - k;
	    k = k/2;
	}
	j = j + k;
	if (i < j) {
	    xi = x + i;
	    xj = x + j;
	    temp = *xj;
	    *xj = *xi;
	    *xi = temp;
	}
    }

/* scale all results by 1/n */
    scale = (float)(1.0/n);
    for(i = 0 ; i < n ; i++) {
	x->real = scale*x->real;
	x->imag = scale*x->imag;
	x++;
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天堂蜜桃一区二区三区 | 久久国产精品第一页| 亚洲精品美国一| 综合激情网...| 亚洲视频1区2区| 一区二区三区四区不卡在线| 中文字幕在线一区二区三区| 日本一区二区高清| 国产精品你懂的在线欣赏| 中国色在线观看另类| 中文字幕亚洲不卡| 亚洲精品成人天堂一二三| 亚洲一区二区三区中文字幕| 亚洲国产中文字幕在线视频综合| 亚洲一级不卡视频| 日韩不卡免费视频| 狠狠狠色丁香婷婷综合激情| 国产一区二区三区在线看麻豆| 国产一区二区在线观看免费| 国产麻豆91精品| 99久久精品国产毛片| 在线观看不卡一区| 91精品国产91热久久久做人人| 日韩视频免费直播| 国产网红主播福利一区二区| 国产精品久久久久久久久免费丝袜| 亚洲三级电影网站| 午夜天堂影视香蕉久久| 六月丁香综合在线视频| 国产传媒久久文化传媒| 色综合欧美在线视频区| 91精品欧美综合在线观看最新 | 欧美一卡2卡3卡4卡| 精品国产a毛片| 国产精品动漫网站| 午夜国产精品一区| 国产精品一区二区视频| 色综合久久久久综合体| 日韩一级片网站| 国产精品久久看| 亚洲国产精品欧美一二99| 精品午夜久久福利影院| 99国产精品久| 日韩欧美国产综合| **欧美大码日韩| 蜜臀va亚洲va欧美va天堂 | www.激情成人| 欧美一区二区三区四区在线观看| 久久久久久久久久久久电影| 亚洲一区二区在线免费观看视频| 久久99精品一区二区三区三区| 成人ar影院免费观看视频| 欧美日韩精品是欧美日韩精品| 久久久久久9999| 亚洲一区二区在线免费观看视频| 激情综合色丁香一区二区| 91麻豆视频网站| 亚洲精品在线电影| 亚洲午夜免费视频| 国产91丝袜在线播放0| 欧美另类变人与禽xxxxx| 国产婷婷色一区二区三区在线| 午夜天堂影视香蕉久久| 白白色 亚洲乱淫| 日韩欧美高清在线| 亚洲一区在线观看视频| 国产成人精品在线看| 宅男在线国产精品| 有坂深雪av一区二区精品| 国产精品夜夜爽| 日韩一级大片在线观看| 一区二区久久久久| 不卡av在线免费观看| 精品免费99久久| 午夜久久久久久电影| 91蜜桃视频在线| 国产嫩草影院久久久久| 久久成人免费网| 欧美男同性恋视频网站| 亚洲最新在线观看| 9i在线看片成人免费| 久久精品在线免费观看| 久久不见久久见中文字幕免费| 色婷婷精品大视频在线蜜桃视频| 国产女人aaa级久久久级| 久久精品国产秦先生| 在线综合视频播放| 午夜久久福利影院| 欧美性生活久久| 亚洲精品综合在线| 91丝袜呻吟高潮美腿白嫩在线观看| 久久一日本道色综合| 久久激情五月婷婷| 欧美一区二区三级| 日韩精品电影一区亚洲| 欧美日韩精品一区二区在线播放| 亚洲精品成人悠悠色影视| 一本色道久久综合亚洲aⅴ蜜桃| 国产精品女人毛片| 成人av网址在线| 中文字幕一区二区在线播放| 国产iv一区二区三区| 国产女人水真多18毛片18精品视频| 国产尤物一区二区| 久久久久国产成人精品亚洲午夜| 久久99久久99| 337p粉嫩大胆噜噜噜噜噜91av| 激情文学综合丁香| 久久久久97国产精华液好用吗| 欧美高清视频不卡网| 偷拍亚洲欧洲综合| 91精品一区二区三区久久久久久 | 偷拍与自拍一区| 欧美一区日韩一区| 久久精品久久综合| 国产亚洲精品aa| 91视频免费观看| 亚洲第一电影网| 欧美一区二区久久| 国产精品一区在线观看你懂的| 日本一区二区三区久久久久久久久不| 国产mv日韩mv欧美| 亚洲免费电影在线| 91精品国产综合久久久久久久久久| 午夜精品免费在线观看| 日韩一级二级三级| 成人午夜视频网站| 夜夜嗨av一区二区三区中文字幕| 欧美色大人视频| 精品一区二区免费在线观看| 国产亚洲综合在线| 色偷偷久久一区二区三区| 午夜电影一区二区三区| 久久亚洲欧美国产精品乐播| 成人av在线影院| 丝袜美腿亚洲一区二区图片| 精品女同一区二区| 91视视频在线直接观看在线看网页在线看| 怡红院av一区二区三区| 日韩一级成人av| 成人激情午夜影院| 日韩成人dvd| 国产精品伦一区| 亚洲综合免费观看高清在线观看| 欧美日韩国产欧美日美国产精品| 久久99精品国产麻豆婷婷洗澡| 中文字幕中文字幕一区二区| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 欧美不卡一区二区| www.欧美亚洲| 麻豆精品新av中文字幕| 国产精品乱码久久久久久| 欧美二区在线观看| av资源站一区| 麻豆国产一区二区| 亚洲男同1069视频| 欧美一级欧美三级| 色综合久久久久网| 国产麻豆91精品| 午夜欧美大尺度福利影院在线看| 国产女主播视频一区二区| 欧美日韩五月天| 成人高清免费在线播放| 人人超碰91尤物精品国产| 国产精品久久久久桃色tv| 欧美一级在线视频| 在线观看国产91| 成人黄动漫网站免费app| 免播放器亚洲一区| 亚洲一区二区美女| 国产精品久久久久久久浪潮网站| 日韩欧美国产电影| 欧美亚洲丝袜传媒另类| 成人深夜在线观看| 精品一区二区在线视频| 午夜精品成人在线| 亚洲图片激情小说| 国产精品性做久久久久久| 亚洲国产人成综合网站| 中文字幕一区二区三| 久久久久高清精品| 欧美大片一区二区三区| 欧美日韩一本到| 在线观看成人免费视频| 不卡一卡二卡三乱码免费网站| 精品一区二区在线视频| 日本特黄久久久高潮 | 91丝袜呻吟高潮美腿白嫩在线观看| 麻豆国产精品官网| 视频一区视频二区中文字幕| 亚洲欧美另类久久久精品| 日本一区二区三区四区| 久久蜜桃香蕉精品一区二区三区| 欧美一区二区美女| 日韩一区二区三区四区| 日韩一区二区三区电影在线观看| 欧美亚洲高清一区二区三区不卡| 91香蕉视频黄| 一道本成人在线| 日本精品裸体写真集在线观看 |