md_low.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:24k
源码类别:

Audio

开发平台:

Visual C++

  1. /*!
  2.  ***************************************************************************
  3.  * file md_low.c
  4.  *
  5.  * brief
  6.  *    Main macroblock mode decision functions and helpers
  7.  *
  8.  **************************************************************************
  9.  */
  10. #include <math.h>
  11. #include <limits.h>
  12. #include <float.h>
  13. #include "global.h"
  14. #include "rdopt_coding_state.h"
  15. #include "mb_access.h"
  16. #include "intrarefresh.h"
  17. #include "image.h"
  18. #include "transform8x8.h"
  19. #include "ratectl.h"
  20. #include "mode_decision.h"
  21. #include "fmo.h"
  22. #include "me_umhex.h"
  23. #include "me_umhexsmp.h"
  24. #include "macroblock.h"
  25. #include "q_around.h"
  26. //==== MODULE PARAMETERS ====
  27. static imgpel temp_imgY[16][16]; // to temp store the Y data for 8x8 transform
  28. static imgpel temp_imgU[16][16];
  29. static imgpel temp_imgV[16][16];
  30. /*!
  31. *************************************************************************************
  32. * brief
  33. *    Mode Decision for a macroblock
  34. *************************************************************************************
  35. */
  36. void encode_one_macroblock_low (Macroblock *currMB)
  37. {
  38.   int         block, mode, i=0, j, k, dummy;
  39.   char        best_pdir;
  40.   RD_PARAMS   enc_mb;
  41.   char        best_ref[2] = {0, -1};
  42.   int         bmcost[5] = {INT_MAX};
  43.   double      rd_cost = 0, min_rd_cost = 1e30;
  44.   int         cost = 0;
  45.   int         min_cost = INT_MAX, cost_direct=0, have_direct=0, i16mode=0;
  46.   int         intra1 = 0;
  47.   int         temp_cpb = 0;
  48.   int         best_transform_flag = 0;
  49.   int         cost8x8_direct = 0;
  50.   short       islice      = (short) (img->type==I_SLICE);
  51.   short       bslice      = (short) (img->type==B_SLICE);
  52.   short       pslice      = (short) ((img->type==P_SLICE) || (img->type==SP_SLICE));
  53.   short       intra       = (short) (islice || (pslice && img->mb_y==img->mb_y_upd && img->mb_y_upd!=img->mb_y_intra));
  54.   int         lambda_mf[3];
  55.   int         prev_mb_nr  = FmoGetPreviousMBNr(img->current_mb_nr);
  56.   Macroblock* prevMB      = (prev_mb_nr >= 0) ? &img->mb_data[prev_mb_nr]:NULL ;
  57.   Block8x8Info *b8x8info   = img->b8x8info;
  58.   char   **ipredmodes = img->ipredmode;
  59.   short   *allmvs = params->IntraProfile ? NULL: img->all_mv[0][0][0][0][0];
  60.   int     ****i4p;  //for non-RD-opt. mode
  61.   imgpel  (*mb_pred)[16] = img->mb_pred[0];
  62.   int    is_cavlc = (img->currentSlice->symbol_mode == CAVLC);
  63.   int tmp_8x8_flag, tmp_no_mbpart;
  64.   // Fast Mode Decision
  65.   short bipred_me, inter_skip = 0;
  66.   if(params->SearchMode == UM_HEX)
  67.   {
  68.     UMHEX_decide_intrabk_SAD();
  69.   }
  70.   else if (params->SearchMode == UM_HEX_SIMPLE)
  71.   {
  72.     smpUMHEX_decide_intrabk_SAD();
  73.   }
  74.   intra |= RandomIntra (img->current_mb_nr);    // Forced Pseudo-Random Intra
  75.   //===== Setup Macroblock encoding parameters =====
  76.   init_enc_mb_params(currMB, &enc_mb, intra, bslice);
  77.   // reset chroma intra predictor to default
  78.   currMB->c_ipred_mode = DC_PRED_8;
  79.   //=====   S T O R E   C O D I N G   S T A T E   =====
  80.   //---------------------------------------------------
  81.   store_coding_state (currMB, cs_cm);
  82.   if (!intra)
  83.   {
  84.     //===== set direct motion vectors =====
  85.     best_mode = 1;
  86.     if (bslice)
  87.     {
  88.       Get_Direct_Motion_Vectors (currMB);
  89.     }
  90.     if (params->CtxAdptLagrangeMult == 1)
  91.     {
  92.       get_initial_mb16x16_cost(currMB);
  93.     }
  94.     //===== MOTION ESTIMATION FOR 16x16, 16x8, 8x16 BLOCKS =====
  95.     for (min_cost=INT_MAX, mode=1; mode<4; mode++)
  96.     {
  97.       bipred_me = 0;
  98.       b8x8info->bipred8x8me[mode][0] = 0;
  99.       if (enc_mb.valid[mode] && !inter_skip)
  100.       {
  101.         for (cost=0, block=0; block<(mode==1?1:2); block++)
  102.         {
  103.           update_lambda_costs(&enc_mb, lambda_mf);
  104.           PartitionMotionSearch (currMB, mode, block, lambda_mf);
  105.           //--- set 4x4 block indizes (for getting MV) ---
  106.           j = (block==1 && mode==2 ? 2 : 0);
  107.           i = (block==1 && mode==3 ? 2 : 0);
  108.           //--- get cost and reference frame for List 0 prediction ---
  109.           bmcost[LIST_0] = INT_MAX;
  110.           list_prediction_cost(currMB, LIST_0, block, mode, &enc_mb, bmcost, best_ref);
  111.           if (bslice)
  112.           {
  113.             //--- get cost and reference frame for List 1 prediction ---
  114.             bmcost[LIST_1] = INT_MAX;
  115.             list_prediction_cost(currMB, LIST_1, block, mode, &enc_mb, bmcost, best_ref);
  116.             // Compute bipredictive cost between best list 0 and best list 1 references
  117.             list_prediction_cost(currMB, BI_PRED, block, mode, &enc_mb, bmcost, best_ref);
  118.             // currently Bi prediction ME is only supported for modes 1, 2, 3
  119.             if (is_bipred_enabled(mode))
  120.             {
  121.               list_prediction_cost(currMB, BI_PRED_L0, block, mode, &enc_mb, bmcost, 0);
  122.               list_prediction_cost(currMB, BI_PRED_L1, block, mode, &enc_mb, bmcost, 0);
  123.             }
  124.             else
  125.             {
  126.               bmcost[BI_PRED_L0] = INT_MAX;
  127.               bmcost[BI_PRED_L1] = INT_MAX;
  128.             }
  129.             // Determine prediction list based on mode cost
  130.             determine_prediction_list(mode, bmcost, best_ref, &best_pdir, &cost, &bipred_me);
  131.           }
  132.           else // if (bslice)
  133.           {
  134.             best_pdir  = 0;
  135.             cost      += bmcost[LIST_0];
  136.           }
  137.           assign_enc_picture_params(mode, best_pdir, block, enc_mb.list_offset[LIST_0], best_ref[LIST_0], best_ref[LIST_1], bslice, bipred_me);          
  138.           //----- set reference frame and direction parameters -----
  139.           set_block8x8_info(b8x8info, mode, block, best_ref, best_pdir, bipred_me);
  140.           //--- set reference frames and motion vectors ---
  141.           if (mode>1 && block==0)
  142.             SetRefAndMotionVectors (currMB, block, mode, best_pdir, best_ref[LIST_0], best_ref[LIST_1], bipred_me);
  143.         } // for (block=0; block<(mode==1?1:2); block++)
  144.         currMB->luma_transform_size_8x8_flag = 0;
  145.         if (params->Transform8x8Mode) //for inter rd-off, set 8x8 to do 8x8 transform
  146.         {
  147.           SetModesAndRefframeForBlocks(currMB, mode);
  148.           currMB->luma_transform_size_8x8_flag = TransformDecision(currMB, -1, &cost);
  149.         }
  150.         if ((!inter_skip) && (cost < min_cost))
  151.         {
  152.           best_mode = (short) mode;
  153.           min_cost  = cost;
  154.           best_transform_flag = currMB->luma_transform_size_8x8_flag;
  155.           if (params->CtxAdptLagrangeMult == 1)
  156.           {
  157.             adjust_mb16x16_cost(cost);
  158.           }
  159.         }
  160.       } // if (enc_mb.valid[mode])
  161.     } // for (mode=1; mode<4; mode++)
  162.     if ((!inter_skip) && enc_mb.valid[P8x8])
  163.     {
  164.       giRDOpt_B8OnlyFlag = 1;
  165.       tr8x8.mb_p8x8_cost = INT_MAX;
  166.       tr4x4.mb_p8x8_cost = INT_MAX;
  167.       //===== store coding state of macroblock =====
  168.       store_coding_state (currMB, cs_mb);
  169.       currMB->all_blk_8x8 = -1;
  170.       if (params->Transform8x8Mode)
  171.       {
  172.         tr8x8.mb_p8x8_cost = 0;
  173.         //===========================================================
  174.         // Check 8x8 partition with transform size 8x8
  175.         //===========================================================
  176.         //=====  LOOP OVER 8x8 SUB-PARTITIONS  (Motion Estimation & Mode Decision) =====
  177.         for (cost_direct=cbp8x8=cbp_blk8x8=cnt_nonz_8x8=0, block = 0; block < 4; block++)
  178.         {
  179.           submacroblock_mode_decision(&enc_mb, &tr8x8, currMB, cofAC8x8ts[0][block], cofAC8x8ts[1][block], cofAC8x8ts[2][block],
  180.             &have_direct, bslice, block, &cost_direct, &cost, &cost8x8_direct, 1, is_cavlc);
  181.           set_subblock8x8_info(b8x8info, P8x8, block, &tr8x8);
  182.         }
  183.         // following params could be added in RD_8x8DATA structure
  184.         cbp8_8x8ts      = cbp8x8;
  185.         cbp_blk8_8x8ts  = cbp_blk8x8;
  186.         cnt_nonz8_8x8ts = cnt_nonz_8x8;
  187.         currMB->luma_transform_size_8x8_flag = 0; //switch to 4x4 transform size
  188.         //--- re-set coding state (as it was before 8x8 block coding) ---
  189.         //reset_coding_state (currMB, cs_mb);
  190.       }// if (params->Transform8x8Mode)
  191.       if (params->Transform8x8Mode != 2)
  192.       {
  193.         tr4x4.mb_p8x8_cost = 0;
  194.         //=================================================================
  195.         // Check 8x8, 8x4, 4x8 and 4x4 partitions with transform size 4x4
  196.         //=================================================================
  197.         //=====  LOOP OVER 8x8 SUB-PARTITIONS  (Motion Estimation & Mode Decision) =====
  198.         for (cost_direct=cbp8x8=cbp_blk8x8=cnt_nonz_8x8=0, block=0; block<4; block++)
  199.         {
  200.           submacroblock_mode_decision(&enc_mb, &tr4x4, currMB, cofAC8x8[block], cofAC8x8CbCr[0][block], cofAC8x8CbCr[1][block],
  201.             &have_direct, bslice, block, &cost_direct, &cost, &cost8x8_direct, 0, is_cavlc);
  202.           set_subblock8x8_info(b8x8info, P8x8, block, &tr4x4);
  203.         }
  204.         //--- re-set coding state (as it was before 8x8 block coding) ---
  205.         // reset_coding_state (currMB, cs_mb);
  206.       }// if (params->Transform8x8Mode != 2)
  207.       //--- re-set coding state (as it was before 8x8 block coding) ---
  208.       reset_coding_state (currMB, cs_mb);
  209.       // This is not enabled yet since mpr has reverse order.
  210.       if (params->RCEnable)
  211.         rc_store_diff(img->opix_x, img->opix_y, mb_pred);
  212.       //check cost for P8x8 for non-rdopt mode
  213.       if (tr4x4.mb_p8x8_cost < min_cost || tr8x8.mb_p8x8_cost < min_cost)
  214.       {
  215.         best_mode = P8x8;
  216.         if (img->AdaptiveRounding)
  217.           store_adaptive_rounding_parameters_luma (currMB, best_mode);
  218.         if (params->Transform8x8Mode == 2)
  219.         {
  220.           min_cost = tr8x8.mb_p8x8_cost;
  221.           currMB->luma_transform_size_8x8_flag=1;
  222.         }
  223.         else if (params->Transform8x8Mode)
  224.         {
  225.           if (tr8x8.mb_p8x8_cost < tr4x4.mb_p8x8_cost)
  226.           {
  227.             min_cost = tr8x8.mb_p8x8_cost;
  228.             currMB->luma_transform_size_8x8_flag=1;
  229.           }
  230.           else if(tr4x4.mb_p8x8_cost < tr8x8.mb_p8x8_cost)
  231.           {
  232.             min_cost = tr4x4.mb_p8x8_cost;
  233.             currMB->luma_transform_size_8x8_flag=0;
  234.           }
  235.           else
  236.           {
  237.             if (GetBestTransformP8x8() == 0)
  238.             {
  239.               min_cost = tr4x4.mb_p8x8_cost;
  240.               currMB->luma_transform_size_8x8_flag=0;
  241.             }
  242.             else
  243.             {
  244.               min_cost = tr8x8.mb_p8x8_cost;
  245.               currMB->luma_transform_size_8x8_flag=1;
  246.             }
  247.           }
  248.         }
  249.         else
  250.         {
  251.           min_cost = tr4x4.mb_p8x8_cost;
  252.           currMB->luma_transform_size_8x8_flag=0;
  253.         }
  254.       }// if ((tr4x4.mb_p8x8_cost < min_cost || tr8x8.mb_p8x8_cost < min_cost))
  255.       giRDOpt_B8OnlyFlag = 0;
  256.     }
  257.     else // if (enc_mb.valid[P8x8])
  258.     {
  259.       tr4x4.mb_p8x8_cost = INT_MAX;
  260.     }
  261.     // Find a motion vector for the Skip mode
  262.     if(pslice)
  263.       FindSkipModeMotionVector (currMB);
  264.   }
  265.   else // if (!intra)
  266.   {
  267.     min_cost = INT_MAX;
  268.   }
  269.   //========= C H O O S E   B E S T   M A C R O B L O C K   M O D E =========
  270.   //-------------------------------------------------------------------------
  271.   tmp_8x8_flag = currMB->luma_transform_size_8x8_flag;  //save 8x8_flag
  272.   tmp_no_mbpart = currMB->NoMbPartLessThan8x8Flag;      //save no-part-less
  273.   if ((img->yuv_format != YUV400) && (img->yuv_format != YUV444))
  274.     // precompute all chroma intra prediction modes
  275.     IntraChromaPrediction(currMB, NULL, NULL, NULL);
  276.   if (enc_mb.valid[0] && bslice) // check DIRECT MODE
  277.   {
  278.     if(have_direct)
  279.     {
  280.       switch(params->Transform8x8Mode)
  281.       {
  282.       case 1: // Mixture of 8x8 & 4x4 transform
  283.         cost = ((cost8x8_direct < cost_direct) || !(enc_mb.valid[5] && enc_mb.valid[6] && enc_mb.valid[7]))
  284.           ? cost8x8_direct : cost_direct;
  285.         break;
  286.       case 2: // 8x8 Transform only
  287.         cost = cost8x8_direct;
  288.         break;
  289.       default: // 4x4 Transform only
  290.         cost = cost_direct;
  291.         break;
  292.       }
  293.     }
  294.     else
  295.     { //!have_direct
  296.       cost = GetDirectCostMB (currMB, bslice);
  297.     }
  298.     if (cost!=INT_MAX)
  299.     {
  300.       cost -= (int)floor(16*enc_mb.lambda_md+0.4999);
  301.     }
  302.     if (cost <= min_cost)
  303.     {
  304.       if(active_sps->direct_8x8_inference_flag && params->Transform8x8Mode)
  305.       {
  306.         if(params->Transform8x8Mode==2)
  307.           currMB->luma_transform_size_8x8_flag=1;
  308.         else
  309.         {
  310.           if(cost8x8_direct < cost_direct)
  311.             currMB->luma_transform_size_8x8_flag=1;
  312.           else
  313.             currMB->luma_transform_size_8x8_flag=0;
  314.         }
  315.       }
  316.       else
  317.         currMB->luma_transform_size_8x8_flag=0;
  318.       //Rate control
  319.       if (params->RCEnable)
  320.         rc_store_diff(img->opix_x, img->opix_y, mb_pred);
  321.       min_cost  = cost;
  322.       best_mode = 0;
  323.       tmp_8x8_flag = currMB->luma_transform_size_8x8_flag;
  324.     }
  325.     else
  326.     {
  327.       currMB->luma_transform_size_8x8_flag = tmp_8x8_flag; // restore if not best
  328.       currMB->NoMbPartLessThan8x8Flag = tmp_no_mbpart; // restore if not best
  329.     }
  330.   }
  331.   min_rd_cost = (double) min_cost;
  332.   if (enc_mb.valid[I8MB]) // check INTRA8x8
  333.   {
  334.     currMB->luma_transform_size_8x8_flag = 1; // at this point cost will ALWAYS be less than min_cost
  335.     currMB->mb_type = I8MB;
  336.     temp_cpb = Mode_Decision_for_new_Intra8x8Macroblock (currMB, enc_mb.lambda_md, &rd_cost);
  337.     if (rd_cost <= min_rd_cost) //HYU_NOTE. bug fix. 08/15/07
  338.     {
  339.       currMB->cbp = temp_cpb;
  340.       if (img->P444_joined)
  341.       {
  342.         curr_cbp[0] = cmp_cbp[1];  
  343.         curr_cbp[1] = cmp_cbp[2];
  344.       }
  345.       if(enc_mb.valid[I4MB])   //KHHan. bug fix. Oct.15.2007
  346.       {
  347.         //coeffs
  348.         if (params->Transform8x8Mode != 2) 
  349.         {
  350.           i4p=cofAC; cofAC=img->cofAC; img->cofAC=i4p;
  351.         }
  352.       }
  353.       for(j=0; j<MB_BLOCK_SIZE; j++)
  354.       {
  355.         memcpy(temp_imgY[j], &enc_picture->imgY[img->pix_y + j][img->pix_x], MB_BLOCK_SIZE * sizeof (imgpel));
  356.       }
  357.       if (img->P444_joined)
  358.       {
  359.         for(j=0; j<MB_BLOCK_SIZE; j++)
  360.         {
  361.           memcpy(temp_imgU[j], &enc_picture->imgUV[0][img->pix_y + j][img->pix_x], MB_BLOCK_SIZE * sizeof (imgpel));
  362.           memcpy(temp_imgV[j], &enc_picture->imgUV[1][img->pix_y + j][img->pix_x], MB_BLOCK_SIZE * sizeof (imgpel));
  363.         }
  364.       }
  365.       //Rate control
  366.       if (params->RCEnable)
  367.         rc_store_diff(img->opix_x, img->opix_y, mb_pred);
  368.       min_rd_cost  = rd_cost; 
  369.       best_mode = I8MB;
  370.       tmp_8x8_flag = currMB->luma_transform_size_8x8_flag;
  371.     }
  372.     else
  373.     {
  374.       currMB->luma_transform_size_8x8_flag = tmp_8x8_flag; // restore if not best
  375.       if (img->P444_joined)
  376.       {
  377.         cmp_cbp[1] = curr_cbp[0]; 
  378.         cmp_cbp[2] = curr_cbp[1]; 
  379.         currMB->cbp |= cmp_cbp[1];    
  380.         currMB->cbp |= cmp_cbp[2];    
  381.         cmp_cbp[1] = currMB->cbp;   
  382.         cmp_cbp[2] = currMB->cbp;
  383.       }
  384.     }
  385.   }
  386.   if (enc_mb.valid[I4MB]) // check INTRA4x4
  387.   {
  388.     currMB->luma_transform_size_8x8_flag = 0;
  389.     currMB->mb_type = I4MB;
  390.     temp_cpb = Mode_Decision_for_Intra4x4Macroblock (currMB, enc_mb.lambda_md, &rd_cost, is_cavlc);
  391.     if (rd_cost <= min_rd_cost) 
  392.     {
  393.       currMB->cbp = temp_cpb;
  394.       //Rate control
  395.       if (params->RCEnable)
  396.         rc_store_diff(img->opix_x, img->opix_y, mb_pred);
  397.       min_rd_cost  = rd_cost; 
  398.       best_mode = I4MB;
  399.       tmp_8x8_flag = currMB->luma_transform_size_8x8_flag;
  400.       if (img->AdaptiveRounding)
  401.         store_adaptive_rounding_parameters_luma (currMB, best_mode);
  402.     }
  403.     else
  404.     {
  405.       currMB->luma_transform_size_8x8_flag = tmp_8x8_flag; // restore if not best
  406.       if (img->P444_joined)
  407.       {
  408.         cmp_cbp[1] = curr_cbp[0]; 
  409.         cmp_cbp[2] = curr_cbp[1]; 
  410.         currMB->cbp |= cmp_cbp[1];    
  411.         currMB->cbp |= cmp_cbp[2];    
  412.         cmp_cbp[1] = currMB->cbp;   
  413.         cmp_cbp[2] = currMB->cbp;
  414.       }
  415.       //coeffs
  416.       i4p=cofAC; cofAC=img->cofAC; img->cofAC=i4p;
  417.     }
  418.   }
  419.   if (enc_mb.valid[I16MB]) // check INTRA16x16
  420.   {
  421.     currMB->luma_transform_size_8x8_flag = 0;
  422.     intrapred_16x16 (currMB, PLANE_Y);
  423.     if (img->P444_joined)
  424.     {
  425.       select_plane(PLANE_U);
  426.       intrapred_16x16 (currMB, PLANE_U);
  427.       select_plane(PLANE_V);
  428.       intrapred_16x16 (currMB, PLANE_V);
  429.       select_plane(PLANE_Y);
  430.     }
  431.     switch(params->FastIntra16x16)
  432.     {
  433.     case 0:
  434.     default:
  435.       find_sad_16x16 = find_sad_16x16_JM;
  436.       break;
  437.     }
  438.     rd_cost = find_sad_16x16 (currMB, &i16mode);
  439.     if (rd_cost < min_rd_cost)
  440.     {
  441.       //Rate control      
  442.       if (params->RCEnable)
  443.         rc_store_diff(img->opix_x,img->opix_y,img->mpr_16x16[0][i16mode]);
  444.       best_mode   = I16MB;      
  445.       min_rd_cost  = rd_cost; 
  446.       currMB->cbp = pDCT_16x16 (currMB, PLANE_Y, i16mode, is_cavlc);
  447.       if (img->AdaptiveRounding)
  448.         store_adaptive_rounding_parameters_luma (currMB, best_mode);
  449.       if (img->P444_joined)
  450.       {
  451.         select_plane(PLANE_U);
  452.         cmp_cbp[1] = pDCT_16x16(currMB, PLANE_U, i16mode, is_cavlc);
  453.         select_plane(PLANE_V);
  454.         cmp_cbp[2] = pDCT_16x16(currMB, PLANE_V, i16mode, is_cavlc);   
  455.         select_plane(PLANE_Y);
  456.         currMB->cbp |= cmp_cbp[1];    
  457.         currMB->cbp |= cmp_cbp[2];    
  458.         cmp_cbp[1] = currMB->cbp;   
  459.         cmp_cbp[2] = currMB->cbp;
  460.       }
  461.     }
  462.     else
  463.     {
  464.       currMB->luma_transform_size_8x8_flag = tmp_8x8_flag; // restore
  465.       currMB->NoMbPartLessThan8x8Flag = tmp_no_mbpart;     // restore
  466.     }
  467.   }
  468.   intra1 = IS_INTRA(currMB);
  469.   //=====  S E T   F I N A L   M A C R O B L O C K   P A R A M E T E R S ======
  470.   //---------------------------------------------------------------------------
  471.   {
  472.     //===== set parameters for chosen mode =====
  473.     SetModesAndRefframeForBlocks (currMB, best_mode);
  474.     if (best_mode==P8x8)
  475.     {
  476.       if (currMB->luma_transform_size_8x8_flag && (cbp8_8x8ts == 0) && params->Transform8x8Mode != 2)
  477.         currMB->luma_transform_size_8x8_flag = 0;
  478.       SetCoeffAndReconstruction8x8 (currMB);
  479.       memset(currMB->intra_pred_modes, DC_PRED, MB_BLOCK_PARTITIONS * sizeof(char));
  480.       for (k=0, j = img->block_y; j < img->block_y + BLOCK_MULTIPLE; j++)
  481.         memset(&ipredmodes[j][img->block_x], DC_PRED, BLOCK_MULTIPLE * sizeof(char));
  482.     }
  483.     else
  484.     {
  485.       //===== set parameters for chosen mode =====
  486.       if (best_mode == I8MB)
  487.       {
  488.         memcpy(currMB->intra_pred_modes,currMB->intra_pred_modes8x8, MB_BLOCK_PARTITIONS * sizeof(char));
  489.         for(j = img->block_y; j < img->block_y + BLOCK_MULTIPLE; j++)
  490.           memcpy(&img->ipredmode[j][img->block_x],&img->ipredmode8x8[j][img->block_x], BLOCK_MULTIPLE * sizeof(char));
  491.         //--- restore reconstruction for 8x8 transform ---
  492.         for(j=0; j<MB_BLOCK_SIZE; j++)
  493.         {
  494.           memcpy(&enc_picture->imgY[img->pix_y + j][img->pix_x],temp_imgY[j], MB_BLOCK_SIZE * sizeof(imgpel));
  495.         }
  496.         if (img->P444_joined)
  497.         {
  498.           for(j=0; j<MB_BLOCK_SIZE; j++)
  499.           {
  500.             memcpy(&enc_picture->imgUV[0][img->pix_y + j][img->pix_x],temp_imgU[j], MB_BLOCK_SIZE * sizeof(imgpel)); 
  501.             memcpy(&enc_picture->imgUV[1][img->pix_y + j][img->pix_x],temp_imgV[j], MB_BLOCK_SIZE * sizeof(imgpel));
  502.           }
  503.         }
  504.       }
  505.       if ((best_mode!=I4MB)&&(best_mode != I8MB))
  506.       {
  507.         memset(currMB->intra_pred_modes,DC_PRED, MB_BLOCK_PARTITIONS * sizeof(char));
  508.         for(j = img->block_y; j < img->block_y + BLOCK_MULTIPLE; j++)
  509.           memset(&ipredmodes[j][img->block_x],DC_PRED, BLOCK_MULTIPLE * sizeof(char));
  510.         if (best_mode!=I16MB)
  511.         {
  512.           if((best_mode>=1) && (best_mode<=3))
  513.             currMB->luma_transform_size_8x8_flag = best_transform_flag;
  514.           LumaResidualCoding (currMB, is_cavlc);
  515.           if (img->AdaptiveRounding)
  516.             store_adaptive_rounding_parameters_luma (currMB, best_mode);
  517.           if (img->P444_joined)
  518.           {
  519.             if((currMB->cbp==0 && cmp_cbp[1] == 0 && cmp_cbp[2] == 0) &&(best_mode==0))
  520.               currMB->luma_transform_size_8x8_flag = 0;
  521.           }
  522.           else if((currMB->cbp==0)&&(best_mode==0))
  523.             currMB->luma_transform_size_8x8_flag = 0;
  524.           //Rate control
  525.           if (params->RCEnable)
  526.             rc_store_diff(img->opix_x,img->opix_y,mb_pred);
  527.         }
  528.       }
  529.     }
  530.     //check luma cbp for transform size flag
  531.     if (((currMB->cbp&15) == 0) && !(IS_OLDINTRA(currMB) || currMB->mb_type == I8MB))
  532.       currMB->luma_transform_size_8x8_flag = 0;
  533.     // precompute all chroma intra prediction modes
  534.     if ((img->yuv_format != YUV400) && (img->yuv_format != YUV444))
  535.       IntraChromaPrediction(currMB, NULL, NULL, NULL);
  536.     img->i16offset = 0;
  537.     dummy = 0;
  538.     if ((img->yuv_format != YUV400) && (img->yuv_format != YUV444))
  539.       ChromaResidualCoding (currMB, is_cavlc);
  540.     if (img->AdaptiveRounding)
  541.       store_adaptive_rounding_parameters_chroma (currMB, best_mode);
  542.     if (best_mode==I16MB)
  543.     {
  544.       img->i16offset = I16Offset  (currMB->cbp, i16mode);
  545.     }
  546.     SetMotionVectorsMB (currMB, bslice);
  547.     //===== check for SKIP mode =====
  548.     if(img->P444_joined)
  549.     {
  550.       if ((pslice) && best_mode==1 && currMB->cbp==0 && cmp_cbp[1] == 0 && cmp_cbp[2] == 0 &&
  551.         enc_picture->motion.ref_idx[LIST_0][img->block_y][img->block_x]    == 0 &&
  552.         enc_picture->motion.mv     [LIST_0][img->block_y][img->block_x][0] == allmvs[0] &&
  553.         enc_picture->motion.mv     [LIST_0][img->block_y][img->block_x][1] == allmvs[1])
  554.       {
  555.         currMB->mb_type = currMB->b8mode[0] = currMB->b8mode[1] = currMB->b8mode[2] = currMB->b8mode[3] = 0;
  556.         currMB->luma_transform_size_8x8_flag = 0;
  557.       }
  558.     }
  559.     else if ((pslice) && best_mode==1 && currMB->cbp==0 &&
  560.       enc_picture->motion.ref_idx[LIST_0][img->block_y][img->block_x]    == 0 &&
  561.       enc_picture->motion.mv     [LIST_0][img->block_y][img->block_x][0] == allmvs[0] &&
  562.       enc_picture->motion.mv     [LIST_0][img->block_y][img->block_x][1] == allmvs[1])
  563.     {
  564.       currMB->mb_type = currMB->b8mode[0] = currMB->b8mode[1] = currMB->b8mode[2] = currMB->b8mode[3] = 0;
  565.       currMB->luma_transform_size_8x8_flag = 0;
  566.     }
  567.     if (img->MbaffFrameFlag || (params->UseRDOQuant && params->RDOQ_QP_Num > 1))
  568.       set_mbaff_parameters(currMB);
  569.   }
  570.   // Rate control
  571.   if(params->RCEnable && params->RCUpdateMode <= MAX_RC_MODE)
  572.     rc_store_mad(currMB);
  573.   update_qp_cbp(currMB, best_mode);
  574.   rdopt->min_rdcost = min_rd_cost;
  575.   rdopt->min_dcost = min_rd_cost;
  576.   if ( (img->MbaffFrameFlag)
  577.     && (img->current_mb_nr%2)
  578.     && (currMB->mb_type ? 0:((bslice) ? !currMB->cbp:1))  // bottom is skip
  579.     && (prevMB->mb_type ? 0:((bslice) ? !prevMB->cbp:1))
  580.     && !(field_flag_inference(currMB) == enc_mb.curr_mb_field)) // top is skip
  581.   {
  582.     rdopt->min_rdcost = 1e30;  // don't allow coding of a MB pair as skip if wrong inference
  583.   }
  584.   //===== Decide if this MB will restrict the reference frames =====
  585.   if (params->RestrictRef)
  586.     update_refresh_map(intra, intra1, currMB);
  587.   if(params->SearchMode == UM_HEX)
  588.   {
  589.     UMHEX_skip_intrabk_SAD(best_mode, listXsize[enc_mb.list_offset[LIST_0]]);
  590.   }
  591.   else if(params->SearchMode == UM_HEX_SIMPLE)
  592.   {
  593.     smpUMHEX_skip_intrabk_SAD(best_mode, listXsize[enc_mb.list_offset[LIST_0]]);
  594.   }
  595.   //--- constrain intra prediction ---
  596.   if(params->UseConstrainedIntraPred && (img->type==P_SLICE || img->type==B_SLICE))
  597.   {
  598.     img->intra_block[img->current_mb_nr] = IS_INTRA(currMB);
  599.   }
  600.   /*update adaptive rounding offset params*/
  601.   if (img->AdaptiveRounding)
  602.   {
  603.     update_offset_params(currMB, best_mode, currMB->luma_transform_size_8x8_flag);
  604.   }
  605. }