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

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

?? image.c

?? h264標準的VC實現
?? C
?? 第 1 頁 / 共 5 頁
字號:

  for (i = 0; i < 3; i++)
    for (k = 0; k < 2; k++)
      for (l = 0; l < 18; l++)
        img->cofDC[i][k][l] = rdopt->cofDC[i][k][l];

  for (j = 0; j < 4; j++)
    for (i = 0; i < 4; i++)
    {
      enc_picture->ref_idx[LIST_0][img->block_x + i][img->block_y + j] = rdopt->refar[LIST_0][j][i];
      enc_picture->ref_pic_id [LIST_0][img->block_x+i][img->block_y+j] = enc_picture->ref_pic_num[LIST_0 + list_offset][enc_picture->ref_idx[LIST_0][img->block_x+i][img->block_y+j]];
      if (bframe)
      {
        enc_picture->ref_idx[LIST_1][img->block_x + i][img->block_y + j] = rdopt->refar[LIST_1][j][i];
        enc_picture->ref_pic_id [LIST_1][img->block_x+i][img->block_y+j] = enc_picture->ref_pic_num[LIST_1 + list_offset][enc_picture->ref_idx[LIST_1][img->block_x+i][img->block_y+j]];
      }
    }
    
    //===== reconstruction values =====
  for (j = 0; j < 16; j++)
    for (i = 0; i < 16; i++)
    {
      enc_picture->imgY[img->pix_y + j][img->pix_x + i] = rdopt->rec_mbY[j][i];
    }
      
     
    if (img->yuv_format != YUV400)
    {
      for (j = 0; j < img->mb_cr_size_y; j++)
        for (i = 0; i < img->mb_cr_size_x; i++)
        {
          enc_picture->imgUV[0][img->pix_c_y + j][img->pix_c_x + i] = rdopt->rec_mbU[j][i];
          enc_picture->imgUV[1][img->pix_c_y + j][img->pix_c_x + i] = rdopt->rec_mbV[j][i];
        }
    }

  for (i = 0; i < 4; i++)
  {
    currMB->b8mode[i] = rdopt->b8mode[i];
    currMB->b8pdir[i] = rdopt->b8pdir[i];
  }

  currMB->luma_transform_size_8x8_flag = rdopt->luma_transform_size_8x8_flag;
//  currMB->NoMbPartLessThan8x8Flag  = rdopt->NoMbPartLessThan8x8Flag;  //DEL-VG-29072004
  
  //==== intra prediction modes ====
  if (mode == P8x8)
  {
    for (k = 0, j = img->block_y; j < img->block_y + 4; j++)
      for (i = img->block_x; i < img->block_x + 4; i++, k++)
      {
        img->ipredmode[i][j]        = rdopt->ipredmode[i][j];
        currMB->intra_pred_modes[k] = rdopt->intra_pred_modes[k];
      }
  }
  else if (mode != I4MB && mode != I8MB)
  {
    for (k = 0, j = img->block_y; j < img->block_y + 4; j++)
      for (     i = img->block_x; i < img->block_x + 4; i++, k++)
      {
        img->ipredmode[i][j]        = DC_PRED;
        currMB->intra_pred_modes[k] = DC_PRED;
      }
  }
  else if (mode == I4MB || mode == I8MB)
  {
    for (k = 0, j = img->block_y; j < img->block_y + 4; j++)
      for (     i = img->block_x; i < img->block_x + 4; i++, k++)
      {
        img->ipredmode[i][j]        = rdopt->ipredmode[i][j];
        currMB->intra_pred_modes[k] = rdopt->intra_pred_modes[k];
        
      }
      
  }

  if (img->MbaffFrameFlag)
  {
    // motion vectors
    copy_motion_vectors_MB ();
    
    
    if (!IS_INTRA(currMB))
    {
      for (j = 0; j < 4; j++)
        for (i = 0; i < 4; i++)
        {
          b8mode = currMB->b8mode[i/2+2*(j/2)];
          b8pdir = currMB->b8pdir[i/2+2*(j/2)];

          if (b8pdir!=1)
          {
            enc_picture->mv[LIST_0][i+img->block_x][j+img->block_y][0] = rdopt->all_mv[i][j][LIST_0][rdopt->refar[LIST_0][j][i]][b8mode][0];
            enc_picture->mv[LIST_0][i+img->block_x][j+img->block_y][1] = rdopt->all_mv[i][j][LIST_0][rdopt->refar[LIST_0][j][i]][b8mode][1];
          }
          else
          {
            enc_picture->mv[LIST_0][i+img->block_x][j+img->block_y][0] = 0;
            enc_picture->mv[LIST_0][i+img->block_x][j+img->block_y][1] = 0;
          }
          if (bframe)
          {
            if (b8pdir!=0)
            {
              enc_picture->mv[LIST_1][i+img->block_x][j+img->block_y][0] = rdopt->all_mv[i][j][LIST_1][rdopt->refar[LIST_1][j][i]][b8mode][0];
              enc_picture->mv[LIST_1][i+img->block_x][j+img->block_y][1] = rdopt->all_mv[i][j][LIST_1][rdopt->refar[LIST_1][j][i]][b8mode][1];
            }
            else
            {
              enc_picture->mv[LIST_1][i+img->block_x][j+img->block_y][0] = 0;
              enc_picture->mv[LIST_1][i+img->block_x][j+img->block_y][1] = 0;
            }
          }
        }
    }
    else
    {
      for (j = 0; j < 4; j++)
        for (i = 0; i < 4; i++)
        {
          enc_picture->mv[LIST_0][i+img->block_x][j+img->block_y][0] = 0;
          enc_picture->mv[LIST_0][i+img->block_x][j+img->block_y][1] = 0;
          
          if (bframe)
          {
            enc_picture->mv[LIST_1][i+img->block_x][j+img->block_y][0] = 0;
            enc_picture->mv[LIST_1][i+img->block_x][j+img->block_y][1] = 0;
          }
        }
    }
  }
  
}                             // end of copy_rdopt_data
  
static void copy_motion_vectors_MB ()
{
  int i,j,k,l;

  for (i = 0; i < 4; i++)
  {
    for (j = 0; j < 4; j++)
    {
      for (k = 0; k < img->max_num_references; k++)
      {
        for (l = 0; l < 9; l++)
        {
          img->all_mv[i][j][LIST_0][k][l][0] = rdopt->all_mv[i][j][LIST_0][k][l][0];
          img->all_mv[i][j][LIST_0][k][l][1] = rdopt->all_mv[i][j][LIST_0][k][l][1];

          img->all_mv[i][j][LIST_1][k][l][0] = rdopt->all_mv[i][j][LIST_1][k][l][0];
          img->all_mv[i][j][LIST_1][k][l][1] = rdopt->all_mv[i][j][LIST_1][k][l][1];

          img->pred_mv[i][j][LIST_0][k][l][0] = rdopt->pred_mv[i][j][LIST_0][k][l][0];
          img->pred_mv[i][j][LIST_0][k][l][1] = rdopt->pred_mv[i][j][LIST_0][k][l][1];
          
          img->pred_mv[i][j][LIST_1][k][l][0] = rdopt->pred_mv[i][j][LIST_1][k][l][0];
          img->pred_mv[i][j][LIST_1][k][l][1] = rdopt->pred_mv[i][j][LIST_1][k][l][1];
          
        }
      }
    }
  }
}
  

static void ReportNALNonVLCBits(int tmp_time, int me_time)
{
  //! Need to add type (i.e. SPS, PPS, SEI etc).
    printf ("%04d(NVB)%8d \n", frame_no, stats->bit_ctr_parametersets_n);

}
static void ReportFirstframe(int tmp_time,int me_time)
{
  //Rate control
  int bits;
  printf ("%04d(IDR)%8d %1d %2d %7.3f %7.3f %7.3f  %7d   %5d     %3s   %3d\n",
    frame_no, stats->bit_ctr - stats->bit_ctr_n,0,
    img->qp, snr->snr_y, snr->snr_u, snr->snr_v, tmp_time, me_time,
    img->fld_flag ? "FLD" : "FRM", intras);

  //Rate control
  if(input->RCEnable)
  {
    if((!input->PicInterlace)&&(!input->MbInterlace))
        bits = stats->bit_ctr-stats->bit_ctr_n; // used for rate control update 
    else
    {
      bits = stats->bit_ctr - Iprev_bits; // used for rate control update 
      Iprev_bits = stats->bit_ctr;
    }
  }

  stats->bitr0 = stats->bitr;
  stats->bit_ctr_0 = stats->bit_ctr;
  stats->bit_ctr = 0;
}


static void ReportIntra(int tmp_time, int me_time)
{
	
  if (img->currentPicture->idr_flag == 1)
    printf ("%04d(IDR)%8d %1d %2d %7.3f %7.3f %7.3f  %7d   %5d     %3s   %3d\n",
    frame_no, stats->bit_ctr - stats->bit_ctr_n, 0,
    img->qp, snr->snr_y, snr->snr_u, snr->snr_v, tmp_time, me_time,
    img->fld_flag ? "FLD" : "FRM", intras); 
  else
    printf ("%04d(I)  %8d %1d %2d %7.3f %7.3f %7.3f  %7d   %5d     %3s   %3d\n",
    frame_no, stats->bit_ctr - stats->bit_ctr_n, 0,
    img->qp, snr->snr_y, snr->snr_u, snr->snr_v, tmp_time, me_time,
    img->fld_flag ? "FLD" : "FRM", intras);

}

static void ReportSP(int tmp_time, int me_time)
{
  printf ("%04d(SP) %8d %1d %2d %7.3f %7.3f %7.3f  %7d   %5d     %3s   %3d\n",
    frame_no, stats->bit_ctr - stats->bit_ctr_n, active_pps->weighted_pred_flag, img->qp, snr->snr_y,
    snr->snr_u, snr->snr_v, tmp_time, me_time,
          img->fld_flag ? "FLD" : "FRM", intras);
}

static void ReportBS(int tmp_time, int me_time)
{
  printf ("%04d(BS) %8d %1d %2d %7.3f %7.3f %7.3f  %7d   %5d     %3s   %3d %1d\n",
    frame_no, stats->bit_ctr - stats->bit_ctr_n, active_pps->weighted_bipred_idc, img->qp, snr->snr_y,
    snr->snr_u, snr->snr_v, tmp_time, me_time,
    img->fld_flag ? "FLD" : "FRM", intras,img->direct_spatial_mv_pred_flag);
}

static void ReportB(int tmp_time, int me_time)
{
    printf ("%04d(B)  %8d %1d %2d %7.3f %7.3f %7.3f  %7d   %5d     %3s   %3d %1d\n",
    frame_no, stats->bit_ctr - stats->bit_ctr_n, active_pps->weighted_bipred_idc,img->qp,
    snr->snr_y, snr->snr_u, snr->snr_v, tmp_time,me_time,
    img->fld_flag ? "FLD" : "FRM",intras,img->direct_spatial_mv_pred_flag);
}


static void ReportP(int tmp_time, int me_time)
{            
    printf ("%04d(P)  %8d %1d %2d %7.3f %7.3f %7.3f  %7d   %5d     %3s   %3d\n",
    frame_no, stats->bit_ctr - stats->bit_ctr_n, active_pps->weighted_pred_flag, img->qp, snr->snr_y,
    snr->snr_u, snr->snr_v, tmp_time, me_time,
          img->fld_flag ? "FLD" : "FRM", intras);

}

/*!
 ************************************************************************
 * \brief
 *    Copies contents of a Sourceframe structure into the old-style
 *    variables imgY_org_frm and imgUV_org_frm.  No other side effects
 * \param sf
 *    the source frame the frame is to be taken from
 ************************************************************************
 */

static void CopyFrameToOldImgOrgVariables (Sourceframe *sf)
{
  int x, y;
  
  for (y=0; y<sf->y_framesize; y++)
  for (x=0; x<sf->x_size; x++)
    imgY_org_frm [y][x] = sf->yf[y*sf->x_size+x];

  if (img->yuv_format != YUV400)
  {
    for (y=0; y<sf->y_framesize_cr; y++)
      for (x=0; x<sf->x_size_cr; x++)
      {
        imgUV_org_frm[0][y][x] = sf->uf[y*sf->x_size_cr+x];
        imgUV_org_frm[1][y][x] = sf->vf[y*sf->x_size_cr+x];
      }
  }
}

/*!
 ************************************************************************
 * \brief
 *    Copies contents of a Sourceframe structure into the old-style
 *    variables imgY_org_top and imgUV_org_top.  No other side effects
 * \param sf
 *    the source frame the field is to be taken from
 ************************************************************************
 */

static void CopyTopFieldToOldImgOrgVariables (Sourceframe *sf)
{
  int x, y;

  for (y=0; y<sf->y_fieldsize; y++)
  for (x=0; x<sf->x_size; x++)
    imgY_org_top [y][x] = sf->yt[y*sf->x_size+x];

  if (img->yuv_format != YUV400)
  {
    for (y=0; y<sf->y_fieldsize_cr; y++)
      for (x=0;x<sf->x_size_cr; x++)
      {
        imgUV_org_top[0][y][x] = sf->ut[y*sf->x_size_cr+x];
        imgUV_org_top[1][y][x] = sf->vt[y*sf->x_size_cr+x];
      }
  }
}
/*!
 ************************************************************************
 * \brief
 *    Copies contents of a Sourceframe structure into the old-style
 *    variables imgY_org_bot and imgUV_org_bot.  No other side effects
 * \param sf
 *    the source frame the field is to be taken from
 ************************************************************************
 */

static void CopyBottomFieldToOldImgOrgVariables (Sourceframe *sf)
{
  int x, y;
  
  for (y=0; y<sf->y_fieldsize; y++)
  for (x=0; x<sf->x_size; x++)
    imgY_org_bot [y][x] = sf->yb[y*sf->x_size+x];

  if (img->yuv_format != YUV400)
  {
    for (y=0; y<sf->y_fieldsize_cr; y++)
      for (x=0;x<sf->x_size_cr; x++)
      {
        imgUV_org_bot[0][y][x] = sf->ub[y*sf->x_size_cr+x];
        imgUV_org_bot[1][y][x] = sf->vb[y*sf->x_size_cr+x];
      }
  }
}


/*!
************************************************************************
* \brief
*    Allocates Sourceframe structure
* \param xs
*    horizontal size of frame in pixels
* \param ys
*    vertical size of frame in pixels, must be divisible by 2
* \param xs_cr
*    horizontal chroma size of frame in pixels
* \param ys_cr
*    vertical chroma size of frame in pixels, must be divisible by 2
* \return
*    pointer to initialized source frame structure
************************************************************************
*/

static Sourceframe *AllocSourceframe (int xs, int ys, int xs_cr, int ys_cr)
{
  Sourceframe *sf = NULL;
  const unsigned int bytes_y = xs*ys*sizeof(imgpel);
  const unsigned int bytes_uv = (xs_cr*ys_cr)*sizeof(imgpel);

  if ((sf = calloc (1, sizeof (Sourceframe))) == NULL) no_mem_exit ("ReadOneFrame: sf");
  if (sf->yf == NULL) if ((sf->yf = calloc (1, bytes_y)) == NULL) no_mem_exit ("ReadOneFrame: sf->yf");
  if (sf->yt == NULL) if ((sf->yt = calloc (1, bytes_y/2)) == NULL) no_mem_exit ("ReadOneFrame: sf->yt");
  if (sf->yb == NULL) if ((sf->yb = calloc (1, bytes_y/2)) == NULL) no_mem_exit ("ReadOneFrame: sf->yb");
  if (img->yuv_format != YUV400)
  {
    if (sf->uf == NULL) if ((sf->uf = calloc (1, bytes_uv)) == NULL) no_mem_exit ("ReadOneFrame: sf->uf");
    if (sf->ut == NULL) if ((sf->ut = calloc (1, bytes_uv/2)) == NULL) no_mem_exit ("ReadOneFrame: sf->ut");
    if (sf->ub == NULL) if ((sf->ub = calloc (1, bytes_uv/2)) == NULL) no_mem_exit ("ReadOneFrame: sf->ub");
    if (sf->vf == NULL) if ((sf->vf = calloc (1, bytes_uv)) == NULL) no_mem_exit ("ReadOneFrame: sf->vf");
    if (sf->vt == NULL) if ((sf->vt = calloc (1, bytes_uv/2)) == NULL) no_mem_exit ("ReadOneFrame: sf->vt");
    if (sf->vb == NULL) if ((sf->vb = calloc (1, bytes_uv/2)) == NULL) no_mem_exit ("ReadOneFrame: sf->vb");
  }
  sf->x_size = xs;
  sf->x_size_cr = xs_cr;  //ADD-VG-15052004
  sf->y_framesize = ys;
  sf->y_framesize_cr = ys_cr;
  sf->y_fieldsize = ys/2;
  sf->y_fieldsize_cr = ys_cr/2;
  
  return sf;
}



/*!
 ************************************************************************
 * \brief
 *    Frees Sourceframe structure
 * \param sf
 *    pointer to Sourceframe previoously allocated with ALlocSourceframe()
 * \return
 *    none
 ************************************************************************
 */

static void FreeSourceframe (Sourceframe *sf)
{
  if (sf!=NULL) 
  {
    if (sf->yf != NULL) free (sf->yf);
    if (sf->yt != NULL) free (sf->yt);
    if (sf->yb != NULL) free (sf->yb);
    if (img->yuv_format != YUV400)
    {
      if (sf->uf != NULL) free (sf->uf);
      if (sf->ut != NULL) free (sf->ut);
      if (sf->ub != NULL) free (sf->ub);
      if (sf->vf != NULL) free (sf->vf);
      if (sf->vt != NULL) free (sf->vt);
      if (sf->vb != NULL) free (sf->vb);
    }
    free (sf);
  }
}

/*!
 ************************************************************************
 * \brief
 *    Calculates the absolute f

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美日韩在线视频| 日韩黄色片在线观看| 久久品道一品道久久精品| 欧美精品aⅴ在线视频| 91精品欧美综合在线观看最新 | 成人天堂资源www在线| 国产成人小视频| 欧美在线视频你懂得| 正在播放亚洲一区| 国产精品久久久久久久久免费桃花 | 久久精品视频免费观看| 亚洲精品免费在线播放| 奇米四色…亚洲| 丁香婷婷综合网| 欧美三级日本三级少妇99| 精品理论电影在线| 一区二区三区色| 粉嫩欧美一区二区三区高清影视| 在线观看视频一区二区 | 九一九一国产精品| 在线欧美日韩国产| 国产精品国产a| 国产精品自在欧美一区| 69堂成人精品免费视频| 亚洲精品久久久蜜桃| 丁香婷婷综合五月| 亚洲精品在线免费观看视频| 亚洲成人在线观看视频| 成人精品视频.| 欧美狂野另类xxxxoooo| 国内精品写真在线观看| 99久久99久久精品国产片果冻| 日韩欧美一级二级三级久久久| 一区二区三区欧美视频| 成人免费电影视频| 日本一区二区三区国色天香| 日韩国产欧美一区二区三区| 在线精品亚洲一区二区不卡| 亚洲高清一区二区三区| 欧美精品乱码久久久久久| 奇米影视7777精品一区二区| 日韩精品专区在线影院观看| 日本午夜一本久久久综合| 欧美午夜精品久久久久久孕妇| 亚洲一二三专区| 欧美一级二级在线观看| 国产精品亚洲视频| 亚洲欧美激情在线| 欧美日韩国产综合一区二区三区| 日日噜噜夜夜狠狠视频欧美人 | 欧美激情在线一区二区三区| 不卡的av电影| 美日韩一区二区三区| 国产欧美日韩精品一区| 成人91在线观看| 日本大胆欧美人术艺术动态| 国产视频不卡一区| 欧美高清视频一二三区| 成人v精品蜜桃久久一区| 日本在线不卡一区| 综合久久给合久久狠狠狠97色| 日本乱码高清不卡字幕| 美国欧美日韩国产在线播放| 成人免费小视频| 精品精品欲导航| 5858s免费视频成人| 在线视频欧美区| 成人av资源下载| 国产精品一区二区黑丝| 美女视频网站久久| 亚洲视频狠狠干| 国产精品精品国产色婷婷| 久久久精品中文字幕麻豆发布| 在线成人高清不卡| 欧美猛男gaygay网站| 在线亚洲人成电影网站色www| 国产成人精品免费看| 日本网站在线观看一区二区三区 | 成人动漫在线一区| 老司机精品视频导航| 日韩电影在线免费观看| 久久91精品国产91久久小草| 欧美aaaaa成人免费观看视频| 伊人婷婷欧美激情| 亚洲乱码国产乱码精品精98午夜 | 国产suv精品一区二区6| 久久99国产精品久久99| 成人午夜视频免费看| av资源站一区| 欧美精品tushy高清| 91精品国产麻豆| 久久久久久亚洲综合| 国产精品美女久久久久aⅴ国产馆| 国产精品久久毛片a| 亚洲欧美日韩国产成人精品影院| 国产精品美女久久久久av爽李琼| 亚洲欧美在线aaa| 天天综合色天天| 成人永久免费视频| 欧美日韩午夜影院| 久久人人爽爽爽人久久久| 亚洲欧美中日韩| 亚洲一区二区av在线| 国产成人午夜精品影院观看视频 | 亚洲国产成人va在线观看天堂| 五月天亚洲精品| 成人高清av在线| 久久精品水蜜桃av综合天堂| 久久一夜天堂av一区二区三区| 中文字幕亚洲综合久久菠萝蜜| 性做久久久久久免费观看| 高清不卡在线观看av| 欧美日韩色一区| 国产精品久久一卡二卡| 国产成人综合网| 日韩一级二级三级精品视频| 亚洲图片你懂的| 99久久久无码国产精品| 亚洲精品一区二区三区福利| 亚洲成av人综合在线观看| 91麻豆.com| 亚洲精品欧美二区三区中文字幕| av成人老司机| 伊人婷婷欧美激情| 色婷婷狠狠综合| 亚洲国产视频一区| 日韩欧美国产一区在线观看| 美女脱光内衣内裤视频久久网站 | 亚洲午夜免费电影| 在线观看91精品国产入口| 国产精品福利一区| 91福利区一区二区三区| 一区二区高清视频在线观看| 在线免费观看日本一区| 亚洲在线视频网站| 欧美精品成人一区二区三区四区| 五月天网站亚洲| 精品国产一区二区三区四区四 | 69成人精品免费视频| 蜜臀av性久久久久蜜臀av麻豆| 亚洲精品一区二区三区精华液 | 91精品综合久久久久久| 精品一区二区在线视频| 国产精品系列在线| 欧美一区二区不卡视频| 国产91色综合久久免费分享| 中文字幕在线不卡一区| 欧美一区二区黄| aa级大片欧美| 精品一区二区三区影院在线午夜| 精品国产乱码久久久久久牛牛| 成人免费视频免费观看| 美女精品自拍一二三四| 亚洲欧美一区二区在线观看| 欧美日精品一区视频| 成人理论电影网| 国精产品一区一区三区mba视频 | 色视频成人在线观看免| 视频精品一区二区| 亚洲成人免费看| 亚洲国产高清aⅴ视频| 精品国产一区二区三区久久久蜜月 | 欧美日韩一区二区三区视频| 色综合久久久久网| 99国产欧美久久久精品| 国产精品18久久久久久久久 | 福利一区二区在线观看| 国产成人精品免费在线| 精品一区二区av| 久久精品国产**网站演员| 午夜电影一区二区| 亚洲一线二线三线视频| 一区二区三区产品免费精品久久75| 国产无一区二区| 成人免费一区二区三区视频| 亚洲欧洲在线观看av| 亚洲欧美日韩中文字幕一区二区三区 | 久久人人97超碰com| 久久久www免费人成精品| 国产日韩欧美一区二区三区乱码 | 韩国女主播一区| 青青草国产精品97视觉盛宴| 美女脱光内衣内裤视频久久网站| 精品一区二区免费在线观看| 成人av在线一区二区三区| 色综合视频一区二区三区高清| 91豆麻精品91久久久久久| 91精品国产综合久久久久久久| 久久亚洲精精品中文字幕早川悠里| 国产视频一区二区在线观看| 亚洲精品大片www| 精品在线观看免费| 欧美丝袜第三区| 精品久久久久久最新网址| 成人免费在线观看入口| 精品一区二区三区免费毛片爱| 成人高清在线视频| 日韩免费成人网| 日本免费新一区视频| 色成人在线视频|