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

Audio

开发平台:

Visual C++

  1. /*!
  2.  ***************************************************************************
  3.  * file md_highfast.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. static void fast_mode_intra_decision(Macroblock *currMB, short *intra_skip, double min_rate);
  26. /*!
  27. *************************************************************************************
  28. * brief
  29. *    Mode Decision for a macroblock
  30. *************************************************************************************
  31. */
  32. void encode_one_macroblock_highfast (Macroblock *currMB)
  33. {
  34.   int max_index;
  35.   int         block, index, mode, i, j, k, ctr16x16;
  36.   char        best_pdir;
  37.   RD_PARAMS   enc_mb;
  38.   double      min_rdcost = 1e30, max_rdcost = 1e30;
  39.   double      min_dcost = 1e30;
  40.   char        best_ref[2] = {0, -1};
  41.   int         bmcost[5] = {INT_MAX};
  42.   int         cost=0;
  43.   int         min_cost = INT_MAX, cost_direct=0, have_direct=0, i16mode=0;
  44.   int         intra1 = 0;
  45.   int         lambda_mf[3];
  46.   int         cost8x8_direct = 0;
  47.   short       islice      = (img->type==I_SLICE);
  48.   short       bslice      = (img->type==B_SLICE);
  49.   short       pslice      = (img->type==P_SLICE) || (img->type==SP_SLICE);
  50.   short       intra       = (islice || (pslice && img->mb_y==img->mb_y_upd && img->mb_y_upd!=img->mb_y_intra));
  51.   int         best8x8l0ref, best8x8l1ref; 
  52.   int         is_cavlc = (img->currentSlice->symbol_mode == CAVLC);
  53.   int         prev_mb_nr  = FmoGetPreviousMBNr(img->current_mb_nr);
  54.   Macroblock* prevMB      = (prev_mb_nr >= 0) ? &img->mb_data[prev_mb_nr]:NULL ;
  55.   Block8x8Info *b8x8info   = img->b8x8info;
  56.   short   *allmvs = img->all_mv[0][0][0][0][0];
  57.   short   min_chroma_pred_mode, max_chroma_pred_mode;
  58.   imgpel  (*mb_pred)[16] = img->mb_pred[0];
  59.   // Fast Mode Decision
  60.   short inter_skip = 0, intra_skip = 0;
  61.   short  bipred_me;
  62.   int cost16 = 0, mode16 = 0;
  63.   double min_rate = 0, RDCost16 = DBL_MAX;
  64.   if(params->SearchMode == UM_HEX)
  65.   {
  66.     UMHEX_decide_intrabk_SAD();
  67.   }
  68.   else if (params->SearchMode == UM_HEX_SIMPLE)
  69.   {
  70.     smpUMHEX_decide_intrabk_SAD();
  71.   }
  72.   intra |= RandomIntra (img->current_mb_nr);    // Forced Pseudo-Random Intra
  73.   //===== Setup Macroblock encoding parameters =====
  74.   init_enc_mb_params(currMB, &enc_mb, intra, bslice);
  75.   // reset chroma intra predictor to default
  76.   currMB->c_ipred_mode = DC_PRED_8;
  77.   //=====   S T O R E   C O D I N G   S T A T E   =====
  78.   //---------------------------------------------------
  79.   store_coding_state (currMB, cs_cm);
  80.   if (!intra)
  81.   {
  82.     //===== set direct motion vectors =====
  83.     best_mode = 1;
  84.     if (bslice)
  85.     {
  86.       Get_Direct_Motion_Vectors (currMB);
  87.       if (enc_mb.valid[0])
  88.       {
  89.         best_mode = 0;
  90.         currMB->c_ipred_mode=DC_PRED_8;
  91.         min_rdcost = max_rdcost;
  92.         compute_mode_RD_cost(0, currMB, &enc_mb, &min_rdcost, &min_dcost, &min_rate, i16mode, bslice, &inter_skip, is_cavlc);
  93.       }
  94.     }
  95.     if (params->CtxAdptLagrangeMult == 1)
  96.     {
  97.       get_initial_mb16x16_cost(currMB);
  98.     }
  99.     //===== MOTION ESTIMATION FOR 16x16, 16x8, 8x16 BLOCKS =====
  100.     for (min_cost=INT_MAX, mode=1; mode<4; mode++)
  101.     {
  102.       bipred_me = 0;
  103.       b8x8info->bipred8x8me[mode][0] = 0;
  104.       if (enc_mb.valid[mode] && !inter_skip)
  105.       {
  106.         for (cost=0, block=0; block<(mode==1?1:2); block++)
  107.         {
  108.           update_lambda_costs(&enc_mb, lambda_mf);
  109.           PartitionMotionSearch (currMB, mode, block, lambda_mf);
  110.           //--- set 4x4 block indizes (for getting MV) ---
  111.           j = (block==1 && mode==2 ? 2 : 0);
  112.           i = (block==1 && mode==3 ? 2 : 0);
  113.           //--- get cost and reference frame for List 0 prediction ---
  114.           bmcost[LIST_0] = INT_MAX;
  115.           list_prediction_cost(currMB, LIST_0, block, mode, &enc_mb, bmcost, best_ref);
  116.           if (bslice)
  117.           {
  118.             //--- get cost and reference frame for List 1 prediction ---
  119.             bmcost[LIST_1] = INT_MAX;
  120.             list_prediction_cost(currMB, LIST_1, block, mode, &enc_mb, bmcost, best_ref);
  121.             // Compute bipredictive cost between best list 0 and best list 1 references
  122.             list_prediction_cost(currMB, BI_PRED, block, mode, &enc_mb, bmcost, best_ref);
  123.             // currently Bi prediction ME is only supported for modes 1, 2, 3 and ref 0
  124.             if (is_bipred_enabled(mode))
  125.             {
  126.               list_prediction_cost(currMB, BI_PRED_L0, block, mode, &enc_mb, bmcost, 0);
  127.               list_prediction_cost(currMB, BI_PRED_L1, block, mode, &enc_mb, bmcost, 0);
  128.             }
  129.             else
  130.             {
  131.               bmcost[BI_PRED_L0] = INT_MAX;
  132.               bmcost[BI_PRED_L1] = INT_MAX;
  133.             }
  134.             // Determine prediction list based on mode cost
  135.             determine_prediction_list(mode, bmcost, best_ref, &best_pdir, &cost, &bipred_me);
  136.           }
  137.           else // if (bslice)
  138.           {
  139.             best_pdir  = 0;
  140.             cost      += bmcost[LIST_0];
  141.           }
  142.           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);
  143.           //----- set reference frame and direction parameters -----
  144.           set_block8x8_info(b8x8info, mode, block, best_ref, best_pdir, bipred_me);
  145.           
  146.           //--- set reference frames and motion vectors ---
  147.           if (mode>1 && block==0)
  148.             SetRefAndMotionVectors (currMB, block, mode, best_pdir, best_ref[LIST_0], best_ref[LIST_1], bipred_me);
  149.         } // for (block=0; block<(mode==1?1:2); block++)
  150.         if(mode == 1)
  151.         {
  152.           if(pslice)
  153.             min_rdcost = max_rdcost;
  154.           //=====   S T O R E   C O D I N G   S T A T E   =====
  155.           //---------------------------------------------------
  156.           //store_coding_state (currMB, cs_cm);
  157.           for (ctr16x16=0, k=0; k<1; k++)
  158.           {
  159.             i16mode = 0;
  160.             //--- for INTER16x16 check all prediction directions ---
  161.             if (bslice)
  162.             {
  163.               update_prediction_for_mode16x16(b8x8info, ctr16x16, &index);
  164.               ctr16x16++;
  165.             }
  166.             
  167.             currMB->c_ipred_mode=DC_PRED_8;
  168.             compute_mode_RD_cost(mode, currMB, &enc_mb, &min_rdcost, &min_dcost, &min_rate, i16mode, bslice, &inter_skip, is_cavlc);
  169.           } // for (ctr16x16=0, k=0; k<1; k++)
  170.           if(pslice)
  171.           {
  172.             // Get SKIP motion vector and compare SKIP_MV with best motion vector of 16x16
  173.             FindSkipModeMotionVector (currMB);
  174.             if(params->EarlySkipEnable)
  175.             {
  176.               //===== check for SKIP mode =====
  177.               if ( currMB->cbp==0 && enc_picture->motion.ref_idx[LIST_0][img->block_y][img->block_x]==0 &&
  178.                 enc_picture->motion.mv[LIST_0][img->block_y][img->block_x][0]==allmvs[0] &&
  179.                 enc_picture->motion.mv[LIST_0][img->block_y][img->block_x][1]==allmvs[1]               )
  180.               {
  181.                 inter_skip = 1;
  182.                 best_mode = 0;
  183.               }
  184.             } // if(params->EarlySkipEnable)
  185.           }
  186.           // store variables.
  187.           RDCost16 = min_rdcost;
  188.           mode16 = best_mode;
  189.           cost16 = cost;
  190.         } // if(mode == 1)
  191.         if ((!inter_skip) && (cost < min_cost))
  192.         {
  193.           best_mode = mode;
  194.           min_cost  = cost;
  195.           if (params->CtxAdptLagrangeMult == 1)
  196.           {
  197.             adjust_mb16x16_cost(cost);
  198.           }
  199.         }
  200.       } // if (enc_mb.valid[mode])
  201.     } // for (mode=1; mode<4; mode++)
  202.     if ((!inter_skip) && enc_mb.valid[P8x8])
  203.     {
  204.       giRDOpt_B8OnlyFlag = 1;
  205.       tr8x8.mb_p8x8_cost = INT_MAX;
  206.       tr4x4.mb_p8x8_cost = INT_MAX;
  207.       //===== store coding state of macroblock =====
  208.       store_coding_state (currMB, cs_mb);
  209.       currMB->all_blk_8x8 = -1;
  210.       if (params->Transform8x8Mode)
  211.       {
  212.         tr8x8.mb_p8x8_cost = 0;
  213.         //===========================================================
  214.         // Check 8x8 partition with transform size 8x8
  215.         //===========================================================
  216.         //=====  LOOP OVER 8x8 SUB-PARTITIONS  (Motion Estimation & Mode Decision) =====
  217.         for (cost_direct=cbp8x8=cbp_blk8x8=cnt_nonz_8x8=0, block=0; block<4; block++)
  218.         {
  219.           submacroblock_mode_decision(&enc_mb, &tr8x8, currMB, cofAC8x8ts[0][block], cofAC8x8ts[1][block], cofAC8x8ts[2][block],
  220.             &have_direct, bslice, block, &cost_direct, &cost, &cost8x8_direct, 1, is_cavlc);
  221.           set_subblock8x8_info(b8x8info, P8x8, block, &tr8x8);
  222.         }
  223.         // following params could be added in RD_8x8DATA structure
  224.         cbp8_8x8ts      = cbp8x8;
  225.         cbp_blk8_8x8ts  = cbp_blk8x8;
  226.         cnt_nonz8_8x8ts = cnt_nonz_8x8;
  227.         currMB->luma_transform_size_8x8_flag = 0; //switch to 4x4 transform size
  228.         //--- re-set coding state (as it was before 8x8 block coding) ---
  229.         //reset_coding_state (currMB, cs_mb);
  230.       }// if (params->Transform8x8Mode)
  231.       if (params->Transform8x8Mode != 2)
  232.       {
  233.         tr4x4.mb_p8x8_cost = 0;
  234.         //=================================================================
  235.         // Check 8x8, 8x4, 4x8 and 4x4 partitions with transform size 4x4
  236.         //=================================================================
  237.         //=====  LOOP OVER 8x8 SUB-PARTITIONS  (Motion Estimation & Mode Decision) =====
  238.         for (cost_direct=cbp8x8=cbp_blk8x8=cnt_nonz_8x8=0, block=0; block<4; block++)
  239.         {
  240.           submacroblock_mode_decision(&enc_mb, &tr4x4, currMB, cofAC8x8[block], cofAC8x8CbCr[0][block], cofAC8x8CbCr[1][block],
  241.             &have_direct, bslice, block, &cost_direct, &cost, &cost8x8_direct, 0, is_cavlc);
  242.           set_subblock8x8_info(b8x8info, P8x8, block, &tr4x4);
  243.         }
  244.         //--- re-set coding state (as it was before 8x8 block coding) ---
  245.         // reset_coding_state (currMB, cs_mb);
  246.       }// if (params->Transform8x8Mode != 2)
  247.       //--- re-set coding state (as it was before 8x8 block coding) ---
  248.       reset_coding_state (currMB, cs_mb);
  249.       // This is not enabled yet since mpr has reverse order.
  250.       if (params->RCEnable)
  251.         rc_store_diff(img->opix_x, img->opix_y, mb_pred);
  252.       //check cost for P8x8 for non-rdopt mode
  253.       giRDOpt_B8OnlyFlag = 0;
  254.     }
  255.     else // if (enc_mb.valid[P8x8])
  256.     {
  257.       tr4x4.mb_p8x8_cost = INT_MAX;
  258.     }
  259.   }
  260.   else // if (!intra)
  261.   {
  262.     min_cost = INT_MAX;
  263.   }
  264.   //========= C H O O S E   B E S T   M A C R O B L O C K   M O D E =========
  265.   //-------------------------------------------------------------------------
  266.   {
  267.     // store_coding_state (currMB, cs_cm);
  268.     if (!inter_skip)
  269.     {
  270.       int mb_available_up;
  271.       int mb_available_left;
  272.       int mb_available_up_left;
  273.       if(img->type!=I_SLICE)
  274.       {
  275.         min_rdcost = RDCost16;
  276.         best_mode  = mode16;
  277.       }
  278.       else
  279.         min_rdcost = max_rdcost;
  280.       // if Fast High mode, compute  inter modes separate process for inter/intra
  281.       max_index = ((!intra && params->SelectiveIntraEnable ) ? 5 : 9);
  282.       if (((img->yuv_format != YUV400) && !IS_INDEPENDENT(params)) && max_index != 5)
  283.       {
  284.         // precompute all new chroma intra prediction modes
  285.         IntraChromaPrediction(currMB, &mb_available_up, &mb_available_left, &mb_available_up_left);
  286.         if (params->FastCrIntraDecision)
  287.         {
  288.           IntraChromaRDDecision(currMB, enc_mb);
  289.           min_chroma_pred_mode = (short) currMB->c_ipred_mode;
  290.           max_chroma_pred_mode = (short) currMB->c_ipred_mode;
  291.         }
  292.         else
  293.         {
  294.           min_chroma_pred_mode = DC_PRED_8;
  295.           max_chroma_pred_mode = PLANE_8;
  296.         }
  297.       }
  298.       else
  299.       {
  300.         min_chroma_pred_mode = DC_PRED_8;
  301.         max_chroma_pred_mode = DC_PRED_8;
  302.       }
  303.       for (currMB->c_ipred_mode=min_chroma_pred_mode; currMB->c_ipred_mode<=max_chroma_pred_mode; currMB->c_ipred_mode++)
  304.       {
  305.         // bypass if c_ipred_mode is not allowed
  306.         if ( (img->yuv_format != YUV400) &&
  307.           (  ((!intra || !params->IntraDisableInterOnly) && params->ChromaIntraDisable == 1 && currMB->c_ipred_mode!=DC_PRED_8)
  308.           || (currMB->c_ipred_mode == VERT_PRED_8 && !mb_available_up)
  309.           || (currMB->c_ipred_mode == HOR_PRED_8  && !mb_available_left)
  310.           || (currMB->c_ipred_mode == PLANE_8     && (!mb_available_left || !mb_available_up || !mb_available_up_left))))
  311.           continue;
  312.         //===== GET BEST MACROBLOCK MODE =====
  313.         for (ctr16x16=0, index=0; index < max_index; index++)
  314.         {
  315.           mode = mb_mode_table[index];
  316.           if (img->yuv_format != YUV400)
  317.           {
  318.             i16mode = 0;
  319.             // RDcost of mode 1 in P-slice and mode 0, 1 in B-slice are already available
  320.             if(((bslice && mode == 0) || (!islice && mode == 1)))
  321.               continue;
  322.           }
  323.           //--- for INTER16x16 check all prediction directions ---
  324.           if (mode==1 && bslice)
  325.           {
  326.             update_prediction_for_mode16x16(b8x8info, ctr16x16, &index);
  327.             ctr16x16++;
  328.           }
  329.           // Skip intra modes in inter slices if best mode is inter <P8x8 with cbp equal to 0
  330.           if (params->SkipIntraInInterSlices && !intra && mode >= I4MB && best_mode <=3 && currMB->cbp == 0)
  331.             continue;
  332.           // check if weights are in valid range for biprediction.
  333.           if (bslice && active_pps->weighted_bipred_idc == 1 && mode < P8x8)
  334.           {
  335.             int cur_blk, cur_comp;
  336.             int weight_sum;
  337.             Boolean invalid_mode = FALSE;
  338.             for (cur_blk = 0; cur_blk < 4; cur_blk ++)
  339.             {
  340.               if (b8x8info->best8x8pdir[mode][cur_blk] == 2)
  341.               {
  342.                 for (cur_comp = 0; cur_comp < (active_sps->chroma_format_idc == YUV400 ? 1 : 3) ; cur_comp ++)
  343.                 {
  344.                   best8x8l0ref = (int) b8x8info->best8x8l0ref[mode][cur_blk];
  345.                   best8x8l1ref = (int) b8x8info->best8x8l1ref[mode][cur_blk];
  346.                   weight_sum = wbp_weight[0][best8x8l0ref][best8x8l1ref][cur_comp] + wbp_weight[1][best8x8l0ref][best8x8l1ref][cur_comp];
  347.                   if (weight_sum < -128 ||  weight_sum > 127)
  348.                   {
  349.                     invalid_mode = TRUE;
  350.                     break;
  351.                   }
  352.                 }
  353.                 if (invalid_mode == TRUE)
  354.                   break;
  355.               }
  356.             }
  357.             if (invalid_mode == TRUE)
  358.                continue;
  359.           }
  360.           if (enc_mb.valid[mode])
  361.             compute_mode_RD_cost(mode, currMB, &enc_mb, &min_rdcost, &min_dcost, &min_rate, i16mode, bslice, &inter_skip, is_cavlc);
  362.         }// for (ctr16x16=0, index=0; index<max_index; index++)
  363.       }// for (currMB->c_ipred_mode=DC_PRED_8; currMB->c_ipred_mode<=max_chroma_pred_mode; currMB->c_ipred_mode++)
  364.       // Selective Intra Coding
  365.       if(img->type!=I_SLICE && params->SelectiveIntraEnable && !IS_FREXT_PROFILE(params->ProfileIDC))
  366.       {
  367.         fast_mode_intra_decision(currMB, &intra_skip, min_rate);
  368.         if(!intra_skip)
  369.         {
  370.           // precompute all new chroma intra prediction modes
  371.           if ((img->yuv_format != YUV400) && !IS_INDEPENDENT(params))
  372.           {
  373.             // precompute all new chroma intra prediction modes
  374.             IntraChromaPrediction(currMB, &mb_available_up, &mb_available_left, &mb_available_up_left);
  375.             if (params->FastCrIntraDecision)
  376.             {
  377.               IntraChromaRDDecision(currMB, enc_mb);
  378.               min_chroma_pred_mode = currMB->c_ipred_mode;
  379.               max_chroma_pred_mode = currMB->c_ipred_mode;
  380.             }
  381.             else
  382.             {
  383.               min_chroma_pred_mode = DC_PRED_8;
  384.               max_chroma_pred_mode = PLANE_8;
  385.             }
  386.           }
  387.           else
  388.           {
  389.             min_chroma_pred_mode = DC_PRED_8;
  390.             max_chroma_pred_mode = DC_PRED_8;
  391.           }
  392.           max_index = 9;
  393.           for (currMB->c_ipred_mode=min_chroma_pred_mode; currMB->c_ipred_mode<=max_chroma_pred_mode; currMB->c_ipred_mode++)
  394.           {
  395.             // bypass if c_ipred_mode is not allowed
  396.             if ( (img->yuv_format != YUV400) &&
  397.               (  ((!intra || !params->IntraDisableInterOnly) && params->ChromaIntraDisable == 1 && currMB->c_ipred_mode!=DC_PRED_8)
  398.               || (currMB->c_ipred_mode == VERT_PRED_8 && !mb_available_up)
  399.               || (currMB->c_ipred_mode == HOR_PRED_8  && !mb_available_left)
  400.               || (currMB->c_ipred_mode == PLANE_8     && (!mb_available_left || !mb_available_up || !mb_available_up_left))))
  401.               continue;
  402.             //===== GET BEST MACROBLOCK MODE =====
  403.             for (index = 5; index < max_index; index++)
  404.             {
  405.               mode = mb_mode_table[index];
  406.               // Skip intra modes in inter slices if best mode is inter <P8x8 with cbp equal to 0
  407.               if (params->SkipIntraInInterSlices && !intra && mode >= I4MB && best_mode <=3 && currMB->cbp == 0)
  408.                 continue;
  409.               if (img->yuv_format != YUV400)
  410.               {
  411.                 i16mode = 0;
  412.                 // RDcost of mode 1 in P-slice and mode 0, 1 in B-slice are already available
  413.                 if(((bslice && mode == 0) || (!islice && mode == 1)))
  414.                   continue;
  415.               }
  416.               if (enc_mb.valid[mode])
  417.                 compute_mode_RD_cost(mode, currMB, &enc_mb, &min_rdcost, &min_dcost, &min_rate, i16mode, bslice, &inter_skip, is_cavlc);
  418.             } // for (index = 5; index < max_index; index++)
  419.           }
  420.         }
  421.       }
  422.     }
  423. #ifdef BEST_NZ_COEFF
  424.     for (j=0;j<4;j++)
  425.       for (i=0; i<(4+img->num_blk8x8_uv); i++)
  426.         img->nz_coeff[img->current_mb_nr][j][i] = gaaiMBAFF_NZCoeff[j][i];
  427. #endif
  428.   }
  429.   intra1 = IS_INTRA(currMB);
  430.   //=====  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 ======
  431.   //---------------------------------------------------------------------------
  432.   update_qp_cbp_tmp(currMB, cbp, best_mode);
  433.   set_stored_macroblock_parameters (currMB);
  434.   // Rate control
  435.   if(params->RCEnable && params->RCUpdateMode <= MAX_RC_MODE)
  436.     rc_store_mad(currMB);
  437.   update_qp_cbp(currMB, best_mode);
  438.   rdopt->min_rdcost = min_rdcost;
  439.   rdopt->min_dcost = min_dcost;
  440.   if ( (img->MbaffFrameFlag)
  441.     && (img->current_mb_nr%2)
  442.     && (currMB->mb_type ? 0:((bslice) ? !currMB->cbp:1))  // bottom is skip
  443.     && (prevMB->mb_type ? 0:((bslice) ? !prevMB->cbp:1))
  444.     && !(field_flag_inference(currMB) == enc_mb.curr_mb_field)) // top is skip
  445.   {
  446.     rdopt->min_rdcost = 1e30;  // don't allow coding of a MB pair as skip if wrong inference
  447.   }
  448.   //===== Decide if this MB will restrict the reference frames =====
  449.   if (params->RestrictRef)
  450.     update_refresh_map(intra, intra1, currMB);
  451.   if(params->SearchMode == UM_HEX)
  452.   {
  453.     UMHEX_skip_intrabk_SAD(best_mode, listXsize[enc_mb.list_offset[LIST_0]]);
  454.   }
  455.   else if(params->SearchMode == UM_HEX_SIMPLE)
  456.   {
  457.     smpUMHEX_skip_intrabk_SAD(best_mode, listXsize[enc_mb.list_offset[LIST_0]]);
  458.   }
  459.   //--- constrain intra prediction ---
  460.   if(params->UseConstrainedIntraPred && (img->type==P_SLICE || img->type==B_SLICE))
  461.   {
  462.     img->intra_block[img->current_mb_nr] = IS_INTRA(currMB);
  463.   }
  464. }
  465. /*!
  466. *************************************************************************************
  467. * brief
  468. *    Fast intra decision
  469. *************************************************************************************
  470. */
  471. static void fast_mode_intra_decision(Macroblock *currMB, short *intra_skip, double min_rate)
  472. {
  473.   int i;
  474.   int mb_available_up, mb_available_left, mb_available_up_left;
  475.   long SBE;
  476.   double AR = 0, ABE = 0;
  477.   PixelPos up;       //!< pixel position p(0,-1)
  478.   PixelPos left[2];  //!< pixel positions p(-1, -1..0)
  479.   getNeighbour(currMB,  0 ,  -1 , img->mb_size[IS_LUMA], &up);
  480.   getNeighbour(currMB, -1 ,  -1 , img->mb_size[IS_LUMA], &left[0]);
  481.   getNeighbour(currMB, -1 ,   0 , img->mb_size[IS_LUMA], &left[1]);
  482.   
  483.   mb_available_up       = up.available;
  484.   mb_available_up_left  = left[0].available;
  485.   mb_available_left     = left[1].available;
  486.   AR=(1.0/384)*min_rate;
  487.   SBE = 0;
  488.   if( (img->mb_y != (int)img->FrameHeightInMbs-1) && (img->mb_x != (int)img->PicWidthInMbs-1) && mb_available_left && mb_available_up)
  489.   {
  490.     for(i = 0; i < MB_BLOCK_SIZE; i++)
  491.     {
  492.       SBE += iabs(pCurImg[img->opix_y][img->opix_x+i] - enc_picture->imgY[img->pix_y-1][img->pix_x+i]);
  493.       SBE += iabs(pCurImg[img->opix_y+i][img->opix_x] - enc_picture->imgY[img->pix_y+i][img->pix_x-1]);
  494.     }
  495.     for(i = 0; i < 8; i++)
  496.     {
  497.       SBE += iabs(pImgOrg[1][img->opix_c_y][img->opix_c_x+i] - enc_picture->imgUV[0][img->pix_c_y-1][img->pix_c_x+i]);
  498.       SBE += iabs(pImgOrg[1][img->opix_c_y+i][img->opix_c_x] - enc_picture->imgUV[0][img->pix_c_y+i][img->pix_c_x-1]);
  499.       SBE += iabs(pImgOrg[2][img->opix_c_y][img->opix_c_x+i] - enc_picture->imgUV[1][img->pix_c_y-1][img->pix_c_x+i]);
  500.       SBE += iabs(pImgOrg[2][img->opix_c_y+i][img->opix_c_x] - enc_picture->imgUV[1][img->pix_c_y+i][img->pix_c_x-1]);
  501.     }
  502.     ABE = 1.0/64 * SBE;
  503.   }
  504.   else  // Image boundary
  505.   {
  506.     ABE = 0;
  507.   }
  508.   if(AR <= ABE)
  509.   {
  510.     *intra_skip = 1;
  511.   }
  512. }