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

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

?? mc_prediction.c

?? 壓縮JM12.3d的完整的全部C語言的代碼文檔,用于嵌入式系統的壓縮編解碼
?? C
?? 第 1 頁 / 共 3 頁
字號:
        tmp_pos = x_pos;

        for (i = 0; i < hor_block_size; i++)
        {
          ipos    = iClip3(0, maxold_x, tmp_pos++);
          ipos_p1 = iClip3(0, maxold_x, tmp_pos  );


          result = (
            dxcur * dycur * cur_line   [ipos   ] + 
            dx    * dycur * cur_line   [ipos_p1]);
          block[j][i] = iClip1(img->max_imgpel_value_uv, rshift_rnd_sf(result, total_scale));
        }
      }      
    }
    else
    { /* other positions */ 
      for (j = 0; j < ver_block_size; j++)
      {
        cur_line    = cur_img[iClip3(0, maxold_y, y_pos + j)];
        cur_line_p1 = cur_img[iClip3(0, maxold_y, y_pos + j + 1)];
        tmp_pos = x_pos;

        for (i = 0; i < hor_block_size; i++)
        {
          ipos    = iClip3(0, maxold_x, tmp_pos++);
          ipos_p1 = iClip3(0, maxold_x, tmp_pos  );


          result = (
            dxcur * dycur * cur_line   [ipos   ] + 
            dx    * dycur * cur_line   [ipos_p1] +
            dxcur * dy    * cur_line_p1[ipos   ] +
            dx    * dy    * cur_line_p1[ipos_p1]);
          block[j][i] = iClip1(img->max_imgpel_value_uv, rshift_rnd_sf(result, total_scale));
        }
      }      
    }
  }
}


void intra_cr_decoding(int yuv, struct img_par *img, int smb, Macroblock *currMB)
{
  imgpel **curUV;
  int uv_shift, uv;
  int b8,b4;
  int i4, j4, ioff, joff, ii, jj, i, j;

  for(uv = 0; uv < 2; uv++)
  {
    curUV = dec_picture->imgUV[uv];
    uv_shift = uv * (img->num_uv_blocks);
    intrapred_chroma(img, uv);

    if (!smb && (currMB->cbp >> 4))
    {
      for (b8 = 0; b8 < (img->num_uv_blocks); b8++)
      {
        for(b4 = 0; b4 < 4; b4++)
        {
          joff = subblk_offset_y[yuv][b8][b4];
          j4   = img->pix_c_y + joff;
          ioff = subblk_offset_x[yuv][b8][b4];
          i4   = img->pix_c_x + ioff;

          itrans(img, ioff, joff, cofuv_blk_x[yuv][b8+uv_shift][b4], cofuv_blk_y[yuv][b8+uv_shift][b4], 1, uv + 1);

          for(jj=0;jj<4;jj++)
            for(ii=0;ii<4;ii++)
            {
              curUV[j4+jj][i4+ii]=img->m7[jj][ii];
            }
        }
      }
    }
    else if ((currMB->cbp >> 4) == 0)
    {
      for (b8 = 0; b8 < (img->num_uv_blocks); b8++)
      {
        for(b4 = 0; b4 < 4; b4++)
        {
          joff = subblk_offset_y[yuv][b8][b4];
          j4   = img->pix_c_y + joff;
          ioff = subblk_offset_x[yuv][b8][b4];
          i4   = img->pix_c_x + ioff;

          for(jj = 0; jj < 4;jj++)
            memcpy(&(curUV[j4+jj][i4]), &(img->mpr[uv + 1][joff + jj][ioff]), BLOCK_SIZE * sizeof(imgpel));
        }
      }
    }
    else
    {
      itrans_sp_cr(img, uv);

      for (j = 4; j < 6; j++)
      {
        joff = (j - 4) * 4;
        j4   = img->pix_c_y+joff;
        for(i = 0; i < 2;i++)
        {
          ioff = i * 4;
          i4   = img->pix_c_x + ioff;
          itrans(img, ioff, joff, 2 * uv + i,j, 1, uv + 1);

          for(jj = 0; jj < 4; jj++)
            for(ii = 0; ii < 4; ii++)
            {
              curUV[j4+jj][i4+ii]=img->m7[jj][ii];
            }
        }
      }
    }
  }
}

void prepare_direct_params(StorablePicture *dec_picture, struct img_par *img, int mb_nr, short pmvl0[2], short pmvl1[2],char *l0_rFrame, char *l1_rFrame)
{
  char l0_rFrameL, l0_rFrameU, l0_rFrameUL, l0_rFrameUR;
  char l1_rFrameL, l1_rFrameU, l1_rFrameUL, l1_rFrameUR;

  PixelPos mb_left, mb_up, mb_upleft, mb_upright;

  getLuma4x4Neighbour(mb_nr, -1,  0, &mb_left);
  getLuma4x4Neighbour(mb_nr,  0, -1, &mb_up);
  getLuma4x4Neighbour(mb_nr, 16, -1, &mb_upright);
  getLuma4x4Neighbour(mb_nr, -1, -1, &mb_upleft);

  if (!img->MbaffFrameFlag)
  {
    l0_rFrameL  = mb_left.available    ? dec_picture->ref_idx[LIST_0][mb_left.pos_y][mb_left.pos_x]       : -1;
    l0_rFrameU  = mb_up.available      ? dec_picture->ref_idx[LIST_0][mb_up.pos_y][mb_up.pos_x]           : -1;
    l0_rFrameUL = mb_upleft.available  ? dec_picture->ref_idx[LIST_0][mb_upleft.pos_y][mb_upleft.pos_x]   : -1;
    l0_rFrameUR = mb_upright.available ? dec_picture->ref_idx[LIST_0][mb_upright.pos_y][mb_upright.pos_x] : l0_rFrameUL;

    l1_rFrameL = mb_left.available     ? dec_picture->ref_idx[LIST_1][mb_left.pos_y][mb_left.pos_x]       : -1;
    l1_rFrameU = mb_up.available       ? dec_picture->ref_idx[LIST_1][mb_up.pos_y][mb_up.pos_x]           : -1;
    l1_rFrameUL = mb_upleft.available  ? dec_picture->ref_idx[LIST_1][mb_upleft.pos_y][mb_upleft.pos_x]   : -1;
    l1_rFrameUR = mb_upright.available ? dec_picture->ref_idx[LIST_1][mb_upright.pos_y][mb_upright.pos_x] : l1_rFrameUL;
  }
  else
  {
    if (img->mb_data[mb_nr].mb_field)
    {
      l0_rFrameL = mb_left.available 
        ? img->mb_data[mb_left.mb_addr].mb_field  || dec_picture->ref_idx[LIST_0][mb_left.pos_y][mb_left.pos_x] < 0
        ? dec_picture->ref_idx[LIST_0][mb_left.pos_y][mb_left.pos_x] 
        : dec_picture->ref_idx[LIST_0][mb_left.pos_y][mb_left.pos_x] * 2: -1;

      l0_rFrameU = mb_up.available 
        ? img->mb_data[mb_up.mb_addr].mb_field || dec_picture->ref_idx[LIST_0][mb_up.pos_y][mb_up.pos_x] < 0
        ? dec_picture->ref_idx[LIST_0][mb_up.pos_y][mb_up.pos_x] 
        : dec_picture->ref_idx[LIST_0][mb_up.pos_y][mb_up.pos_x] * 2: -1;

       l0_rFrameUL = mb_upleft.available 
         ? img->mb_data[mb_upleft.mb_addr].mb_field || dec_picture->ref_idx[LIST_0][mb_upleft.pos_y][mb_upleft.pos_x] < 0
         ? dec_picture->ref_idx[LIST_0][mb_upleft.pos_y][mb_upleft.pos_x] 
         : dec_picture->ref_idx[LIST_0][mb_upleft.pos_y][mb_upleft.pos_x] *2: -1;

       l0_rFrameUR = mb_upright.available 
         ? img->mb_data[mb_upright.mb_addr].mb_field || dec_picture->ref_idx[LIST_0][mb_upright.pos_y][mb_upright.pos_x] < 0 
         ? dec_picture->ref_idx[LIST_0][mb_upright.pos_y][mb_upright.pos_x] 
         : dec_picture->ref_idx[LIST_0][mb_upright.pos_y][mb_upright.pos_x] * 2: l0_rFrameUL;

       l1_rFrameL = mb_left.available 
         ? img->mb_data[mb_left.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_left.pos_y][mb_left.pos_x]  < 0 
         ? dec_picture->ref_idx[LIST_1][mb_left.pos_y][mb_left.pos_x] 
         : dec_picture->ref_idx[LIST_1][mb_left.pos_y][mb_left.pos_x] * 2: -1;

       l1_rFrameU = mb_up.available 
         ? img->mb_data[mb_up.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_up.pos_y][mb_up.pos_x]  < 0 
         ? dec_picture->ref_idx[LIST_1][mb_up.pos_y][mb_up.pos_x] 
         : dec_picture->ref_idx[LIST_1][mb_up.pos_y][mb_up.pos_x] * 2: -1;

       l1_rFrameUL = mb_upleft.available 
         ? img->mb_data[mb_upleft.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_upleft.pos_y][mb_upleft.pos_x]  < 0 
         ? dec_picture->ref_idx[LIST_1][mb_upleft.pos_y][mb_upleft.pos_x] 
         : dec_picture->ref_idx[LIST_1][mb_upleft.pos_y][mb_upleft.pos_x] *2 : -1;

       l1_rFrameUR = mb_upright.available 
         ? img->mb_data[mb_upright.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_upright.pos_y][mb_upright.pos_x] < 0
         ? dec_picture->ref_idx[LIST_1][mb_upright.pos_y][mb_upright.pos_x] 
         : dec_picture->ref_idx[LIST_1][mb_upright.pos_y][mb_upright.pos_x] * 2: l1_rFrameUL;
    }
    else
    {
      l0_rFrameL = mb_left.available 
        ? img->mb_data[mb_left.mb_addr].mb_field || dec_picture->ref_idx[LIST_0][mb_left.pos_y][mb_left.pos_x]  < 0 
        ? dec_picture->ref_idx[LIST_0][mb_left.pos_y][mb_left.pos_x] >> 1 
        : dec_picture->ref_idx[LIST_0][mb_left.pos_y][mb_left.pos_x]: -1;

      l0_rFrameU = mb_up.available 
        ? img->mb_data[mb_up.mb_addr].mb_field || dec_picture->ref_idx[LIST_0][mb_up.pos_y][mb_up.pos_x] < 0 
        ? dec_picture->ref_idx[LIST_0][mb_up.pos_y][mb_up.pos_x] >> 1 
        : dec_picture->ref_idx[LIST_0][mb_up.pos_y][mb_up.pos_x] : -1;

      l0_rFrameUL = mb_upleft.available 
        ? img->mb_data[mb_upleft.mb_addr].mb_field || dec_picture->ref_idx[LIST_0][mb_upleft.pos_y][mb_upleft.pos_x] < 0 
        ? dec_picture->ref_idx[LIST_0][mb_upleft.pos_y][mb_upleft.pos_x]>> 1 
        : dec_picture->ref_idx[LIST_0][mb_upleft.pos_y][mb_upleft.pos_x] : -1;

      l0_rFrameUR = mb_upright.available 
        ? img->mb_data[mb_upright.mb_addr].mb_field || dec_picture->ref_idx[LIST_0][mb_upright.pos_y][mb_upright.pos_x] < 0 
        ? dec_picture->ref_idx[LIST_0][mb_upright.pos_y][mb_upright.pos_x] >> 1 
        : dec_picture->ref_idx[LIST_0][mb_upright.pos_y][mb_upright.pos_x] : l0_rFrameUL;

      l1_rFrameL = mb_left.available 
        ? img->mb_data[mb_left.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_left.pos_y][mb_left.pos_x] < 0 
        ? dec_picture->ref_idx[LIST_1][mb_left.pos_y][mb_left.pos_x] >> 1 
        : dec_picture->ref_idx[LIST_1][mb_left.pos_y][mb_left.pos_x] : -1;

      l1_rFrameU = mb_up.available 
        ? img->mb_data[mb_up.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_up.pos_y][mb_up.pos_x] < 0 
        ? dec_picture->ref_idx[LIST_1][mb_up.pos_y][mb_up.pos_x] >> 1 
        : dec_picture->ref_idx[LIST_1][mb_up.pos_y][mb_up.pos_x] : -1;

      l1_rFrameUL = mb_upleft.available 
        ? img->mb_data[mb_upleft.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_upleft.pos_y][mb_upleft.pos_x] < 0 
        ? dec_picture->ref_idx[LIST_1][mb_upleft.pos_y][mb_upleft.pos_x] >> 1 
        : dec_picture->ref_idx[LIST_1][mb_upleft.pos_y][mb_upleft.pos_x] : -1;

      l1_rFrameUR = mb_upright.available 
        ? img->mb_data[mb_upright.mb_addr].mb_field || dec_picture->ref_idx[LIST_1][mb_upright.pos_y][mb_upright.pos_x] < 0 
        ? dec_picture->ref_idx[LIST_1][mb_upright.pos_y][mb_upright.pos_x] >> 1
        : dec_picture->ref_idx[LIST_1][mb_upright.pos_y][mb_upright.pos_x] : l1_rFrameUL;
    }
  }

  *l0_rFrame = (l0_rFrameL >= 0 && l0_rFrameU >= 0) ? imin(l0_rFrameL,l0_rFrameU): imax(l0_rFrameL,l0_rFrameU);
  *l0_rFrame = (*l0_rFrame >= 0 && l0_rFrameUR >= 0) ? imin(*l0_rFrame,l0_rFrameUR): imax(*l0_rFrame,l0_rFrameUR);

  *l1_rFrame = (l1_rFrameL >= 0 && l1_rFrameU >= 0) ? imin(l1_rFrameL,l1_rFrameU): imax(l1_rFrameL,l1_rFrameU);
  *l1_rFrame = (*l1_rFrame >= 0 && l1_rFrameUR >= 0) ? imin(*l1_rFrame,l1_rFrameUR): imax(*l1_rFrame,l1_rFrameUR);

  if (*l0_rFrame >=0)
    SetMotionVectorPredictor (img, pmvl0, *l0_rFrame, LIST_0, dec_picture->ref_idx, dec_picture->mv, 0, 0, 16, 16);

  if (*l1_rFrame >=0)
    SetMotionVectorPredictor (img, pmvl1, *l1_rFrame, LIST_1, dec_picture->ref_idx, dec_picture->mv, 0, 0, 16, 16);
}


void perform_mc(StorablePicture *dec_picture, struct img_par *img, Macroblock *currMB, int pred_dir, int i, int j, int list_offset, int block_size_x, int block_size_y, int curr_mb_field)
{
  static imgpel tmp_block_l0[MB_BLOCK_SIZE][MB_BLOCK_SIZE];
  static imgpel tmp_block_l1[MB_BLOCK_SIZE][MB_BLOCK_SIZE];

  static int vec1_x=0, vec1_y=0, vec2_x=0, vec2_y=0;
  static int vec1_y_cr = 0, vec2_y_cr = 0;
  static int alpha_l0, alpha_l1, wp_offset;
  static const int mv_mul = 4;
  
  int i4   = img->block_x + i;
  int j4   = img->block_y + j;
  int ioff = (i << 2);
  int joff = (j << 2);         
  
  assert (pred_dir<=2);

  if (pred_dir != 2)
  {
    //===== Single List Prediction =====
    short          ref_idx = dec_picture->ref_idx[LIST_0 + pred_dir][j4][i4];
    short          ref_idx_wp = ref_idx;
    short      ***mv_array = dec_picture->mv[LIST_0 + pred_dir];
    StorablePicture **list = listX[LIST_0 + list_offset + pred_dir];

    vec1_x = i4 * 4 * mv_mul + mv_array[j4][i4][0];
    vec1_y = (img->block_y_aff + j) * 4 * mv_mul + mv_array[j4][i4][1];

    get_block_luma (ref_idx, list, vec1_x, vec1_y, block_size_x, block_size_y, img, tmp_block_l0);

    if (img->apply_weights)
    {
      if (curr_mb_field && ((active_pps->weighted_pred_flag&&(img->type==P_SLICE|| img->type == SP_SLICE))||
         (active_pps->weighted_bipred_idc==1 && (img->type==B_SLICE))))
      {
        ref_idx_wp >>=1;
      }

      alpha_l0  = img->wp_weight[pred_dir][ref_idx_wp][0];
      wp_offset = img->wp_offset[pred_dir][ref_idx_wp][0];

      weighted_mc_prediction(img, LumaComp, block_size_y, block_size_x, joff, ioff, tmp_block_l0, alpha_l0, wp_offset, img->luma_log2_weight_denom, img->max_imgpel_value);
    }
    else
    {
      mc_prediction(img, LumaComp, block_size_y, block_size_x, joff, ioff, tmp_block_l0);
    }

    if ((dec_picture->chroma_format_idc != YUV400) && !IS_INDEPENDENT(img))
    {
      imgpel **curUV;
      int uv;

      int ioff_cr = img->mb_cr_size_x == MB_BLOCK_SIZE ? ioff : ioff >> 1;
      int joff_cr = img->mb_cr_size_y == MB_BLOCK_SIZE ? joff : joff >> 1;
      int block_size_x_cr = img->mb_cr_size_x == MB_BLOCK_SIZE ? block_size_x : block_size_x >> 1;
      int block_size_y_cr = img->mb_cr_size_y == MB_BLOCK_SIZE ? block_size_y : block_size_y >> 1;

      vec1_y_cr = vec1_y + ((active_sps->chroma_format_idc == 1)? list[ref_idx]->chroma_vector_adjustment : 0);

      for(uv=0;uv<2;uv++)
      {
        curUV = dec_picture->imgUV[uv]; 

        get_block_chroma (uv, ref_idx, list, vec1_x, vec1_y_cr, block_size_x_cr, block_size_y_cr, img, tmp_block_l0);

        if (img->apply_weights)
        {
          alpha_l0  = img->wp_weight[pred_dir][ref_idx_wp][uv + 1];
          wp_offset = img->wp_offset[pred_dir][ref_idx_wp][uv + 1];

          weighted_mc_prediction(img, uv + 1, block_size_y_cr, block_size_x_cr, joff_cr, ioff_cr, tmp_block_l0, alpha_l0, wp_offset, img->chroma_log2_weight_denom, img->max_imgpel_value_uv);
        }
        else
        {
          mc_prediction(img, uv + 1, block_size_y_cr, block_size_x_cr, joff_cr, ioff_cr, tmp_block_l0);
        }
      }
    }
  }
  else
  {
    //===== BI-PREDICTION =====
    short ***l0_mv_array = dec_picture->mv[LIST_0];
    short ***l1_mv_array = dec_picture->mv[LIST_1];

    short l0_refframe = dec_picture->ref_idx[LIST_0][j4][i4];
    short l1_refframe = dec_picture->ref_idx[LIST_1][j4][i4];
    short l0_ref_idx  = l0_refframe;
    short l1_ref_idx  = l1_refframe;

    vec1_x = i4 * 4 * mv_mul + l0_mv_array[j4][i4][0];
    vec2_x = i4 * 4 * mv_mul + l1_mv_array[j4][i4][0];

    vec1_y = (img->block_y_aff + j) * 4 * mv_mul + l0_mv_array[j4][i4][1];
    vec2_y = (img->block_y_aff + j) * 4 * mv_mul + l1_mv_array[j4][i4][1];

    get_block_luma(l0_refframe, listX[LIST_0 + list_offset], vec1_x, vec1_y, block_size_x, block_size_y, img, tmp_block_l0);
    get_block_luma(l1_refframe, listX[LIST_1 + list_offset], vec2_x, vec2_y, block_size_x, block_size_y, img, tmp_block_l1);

    if(img->apply_weights)
    {
      int wt_list_offset = (active_pps->weighted_bipred_idc==2)? list_offset : 0;

      // This code existed in the original. Seems pointless but copying it here for reference and in case temporal direct breaks.
      // if (mv_mode==0 && img->direct_spatial_mv_pred_flag==0 ) l1_ref_idx=0;    
      if (((active_pps->weighted_pred_flag&&(img->type==P_SLICE|| img->type == SP_SLICE))||
        (active_pps->weighted_bipred_idc==1 && (img->type==B_SLICE))) && curr_mb_field)
      {
        l0_ref_idx >>=1;
        l1_ref_idx >>=1;
      }

      alpha_l0  =   img->wbp_weight[LIST_0 + wt_list_offset][l0_ref_idx][l1_ref_idx][0];
      alpha_l1  =   img->wbp_weight[LIST_1 + wt_list_offset][l0_ref_idx][l1_ref_idx][0];
      wp_offset = ((img->wp_offset [LIST_0 + wt_list_offset][l0_ref_idx][0] + img->wp_offset[LIST_1 + wt_list_offset][l1_ref_idx][0] + 1) >>1);

      weighted_bi_prediction(img, LumaComp, block_size_y, block_size_x, joff, ioff, tmp_block_l0, tmp_block_l1, alpha_l0, alpha_l1, wp_offset, (img->luma_log2_weight_denom + 1), img->max_imgpel_value);
    }
    else
    {
      bi_prediction(img, LumaComp, block_size_y, block_size_x, joff, ioff, tmp_block_l0, tmp_block_l1);
    }

    if ((dec_picture->chroma_format_idc != YUV400) && !IS_INDEPENDENT(img))
    {
      imgpel **curUV;
      int uv;

      int ioff_cr = img->mb_cr_size_x == MB_BLOCK_SIZE ? ioff : ioff >> 1;
      int joff_cr = img->mb_cr_size_y == MB_BLOCK_SIZE ? joff : joff >> 1;
      int block_size_x_cr = img->mb_cr_size_x == MB_BLOCK_SIZE ? block_size_x : block_size_x >> 1;
      int block_size_y_cr = img->mb_cr_size_y == MB_BLOCK_SIZE ? block_size_y : block_size_y >> 1;

      vec1_y_cr = vec1_y + ((active_sps->chroma_format_idc == 1)? listX[LIST_0 + list_offset][l0_refframe]->chroma_vector_adjustment : 0);
      vec2_y_cr = vec2_y + ((active_sps->chroma_format_idc == 1)? listX[LIST_1 + list_offset][l1_refframe]->chroma_vector_adjustment : 0);

      for(uv=0;uv<2;uv++)
      {
        curUV = dec_picture->imgUV[uv]; 
        get_block_chroma (uv, l0_refframe, listX[LIST_0 + list_offset], vec1_x, vec1_y_cr, block_size_x_cr, block_size_y_cr, img, tmp_block_l0);
        get_block_chroma (uv, l1_refframe, listX[LIST_1 + list_offset], vec2_x, vec2_y_cr, block_size_x_cr, block_size_y_cr, img, tmp_block_l1);

        if(img->apply_weights)
        {
          int wt_list_offset = (active_pps->weighted_bipred_idc==2)? list_offset : 0;

          alpha_l0  =   img->wbp_weight[LIST_0 + wt_list_offset][l0_ref_idx][l1_ref_idx][uv + 1];
          alpha_l1  =   img->wbp_weight[LIST_1 + wt_list_offset][l0_ref_idx][l1_ref_idx][uv + 1];
          wp_offset = ((img->wp_offset [LIST_0 + wt_list_offset][l0_ref_idx][uv + 1] + img->wp_offset[LIST_1 + wt_list_offset][l1_ref_idx][uv + 1] + 1) >>1);

          weighted_bi_prediction(img, uv + 1, block_size_y_cr, block_size_x_cr, joff_cr, ioff_cr, tmp_block_l0, tmp_block_l1, alpha_l0, alpha_l1, wp_offset, (img->chroma_log2_weight_denom + 1), img->max_imgpel_value_uv);
        }
        else
        {
          bi_prediction(img, uv + 1, block_size_y_cr, block_size_x_cr, joff_cr, ioff_cr, tmp_block_l0, tmp_block_l1);
        }
      }
    }      
  }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
免费人成黄页网站在线一区二区| 精品处破学生在线二十三| 亚洲欧美另类久久久精品| jizzjizzjizz欧美| 亚洲人快播电影网| 欧洲精品在线观看| 蜜桃视频在线一区| 日韩视频免费观看高清完整版 | 午夜在线成人av| 欧美伦理电影网| 美女爽到高潮91| 精品国产不卡一区二区三区| 高清在线不卡av| 一区二区三区欧美日| 日韩亚洲欧美成人一区| 国产精品1区2区3区| 日韩美女啊v在线免费观看| 欧美色国产精品| 久久精品国产亚洲高清剧情介绍 | 亚洲午夜电影在线观看| 69堂精品视频| 国产成人精品三级| 婷婷亚洲久悠悠色悠在线播放| 日韩视频免费观看高清在线视频| 大胆亚洲人体视频| 亚欧色一区w666天堂| 久久精品视频免费| 欧美视频完全免费看| 狠狠色丁香久久婷婷综合丁香| 亚洲少妇最新在线视频| 在线不卡免费欧美| av一区二区三区四区| 免费在线看成人av| 亚洲欧美一区二区在线观看| 欧美高清性hdvideosex| 成人免费三级在线| 美女在线观看视频一区二区| 亚洲人精品午夜| 精品国产污污免费网站入口| 欧美在线免费观看亚洲| 国产精品69毛片高清亚洲| 亚洲高清不卡在线| 国产精品国产三级国产普通话蜜臀 | 日本亚洲电影天堂| 国产精品成人网| 精品黑人一区二区三区久久| 色av成人天堂桃色av| 国产乱人伦偷精品视频不卡| 午夜精品福利一区二区三区av| 国产精品美女久久久久久2018| 日韩一级高清毛片| 欧美日韩一区二区欧美激情| av激情综合网| 国产精品99久久久久久有的能看| 亚洲成人av免费| 亚洲日本一区二区| 中文字幕 久热精品 视频在线| 日韩欧美三级在线| 欧美人狂配大交3d怪物一区| 日本高清不卡一区| 99久久久久免费精品国产| 国产精品羞羞答答xxdd| 久久99精品久久久久| 日韩福利电影在线| 午夜精品爽啪视频| 亚洲电影第三页| 一区二区三区美女视频| 亚洲欧美日韩人成在线播放| 中文成人av在线| 国产女主播视频一区二区| 久久久久久影视| xf在线a精品一区二区视频网站| 制服丝袜成人动漫| 欧美二区乱c少妇| 欧美日韩不卡一区| 欧美色中文字幕| 欧美日韩中文字幕一区| 色8久久精品久久久久久蜜| 色综合视频一区二区三区高清| 99久久99久久精品免费观看| 成人av午夜影院| 91麻豆国产香蕉久久精品| 99久久久免费精品国产一区二区| 99re热这里只有精品视频| 91污在线观看| 色一情一伦一子一伦一区| 91原创在线视频| 在线观看欧美日本| 欧美日韩精品一区二区在线播放 | 国产综合色在线| 国产一区二区电影| 成人黄色电影在线| 91黄色激情网站| 欧美日韩国产综合一区二区| 欧美人动与zoxxxx乱| 日韩精品一区二区三区中文不卡| 精品第一国产综合精品aⅴ| 国产性色一区二区| 亚洲区小说区图片区qvod| 亚洲国产你懂的| 久久国产福利国产秒拍| 国产成人免费在线观看不卡| 91小视频在线| 欧美日韩不卡一区二区| 久久综合九色综合久久久精品综合| 国产日产欧美一区二区三区| 亚洲女厕所小便bbb| 石原莉奈一区二区三区在线观看| 激情图片小说一区| a亚洲天堂av| 欧美精品vⅰdeose4hd| 日本一区二区视频在线观看| 一个色综合网站| 精品一区二区三区久久| 91论坛在线播放| 欧美成va人片在线观看| 一级日本不卡的影视| 日精品一区二区| 成人免费视频一区二区| 欧美精品九九99久久| 国产精品久久久爽爽爽麻豆色哟哟| 亚洲成av人综合在线观看| 国产一区 二区 三区一级| 国产拍欧美日韩视频二区| 亚洲高清一区二区三区| 国产成人精品一区二区三区四区| 欧美羞羞免费网站| 日本一区二区三区四区在线视频| 丝瓜av网站精品一区二区| 国产91精品免费| 欧美一区二区免费观在线| 亚洲免费观看高清完整版在线| 久久99国内精品| 欧美午夜宅男影院| 国产精品乱码一区二区三区软件| 奇米一区二区三区| 在线看一区二区| 国产精品免费免费| 久久精品国产成人一区二区三区| 色综合天天天天做夜夜夜夜做| 国产午夜精品美女毛片视频| 日韩电影一区二区三区四区| 色婷婷av一区二区三区软件 | 男男视频亚洲欧美| 色综合色狠狠综合色| 国产视频在线观看一区二区三区| 日韩精品91亚洲二区在线观看| 色综合久久88色综合天天免费| 国产欧美日韩另类视频免费观看| 免费成人在线视频观看| 欧美日韩二区三区| 亚洲香蕉伊在人在线观| 色综合久久久久| 一区免费观看视频| 国产精品一二三四区| 日韩美女视频在线| 青青青爽久久午夜综合久久午夜| 色欧美乱欧美15图片| 亚洲人成人一区二区在线观看| 国产自产2019最新不卡| 精品日韩一区二区三区免费视频| 国产精品国产馆在线真实露脸| 亚洲va欧美va人人爽午夜| 色悠久久久久综合欧美99| 国产精品久久久久久久久快鸭| 国产一区二区三区四| 久久亚洲捆绑美女| 国产又黄又大久久| 欧美成人午夜电影| 蜜臀av国产精品久久久久| 欧美情侣在线播放| 日本成人中文字幕| 精品久久久久久久久久久久久久久久久 | 久久精品网站免费观看| 国产福利精品导航| 国产精品久久久久久久久免费樱桃 | 精品国产a毛片| 国产一区二区视频在线播放| 久久久久国产精品麻豆ai换脸| 日本美女视频一区二区| 在线视频欧美精品| 性感美女久久精品| 日韩欧美一二三区| 国产成a人亚洲| 中文字幕日韩一区| 色综合久久综合| 亚洲成av人片观看| 日韩免费成人网| 精东粉嫩av免费一区二区三区| 久久精品夜色噜噜亚洲aⅴ| 丁香天五香天堂综合| 亚洲人吸女人奶水| 欧美一卡二卡在线观看| 国产精品资源网| 国产精品久久久久久久久搜平片| 欧美性受极品xxxx喷水| 美女网站色91| 欧美国产1区2区| 欧美日韩国产免费一区二区| 国产一区二区三区精品欧美日韩一区二区三区|