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

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * slicetype.c: h264 encoder library
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu>
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  19.  *****************************************************************************/
  20. #include <math.h>
  21. #include <limits.h>
  22. #include "common/common.h"
  23. #include "common/cpu.h"
  24. #include "macroblock.h"
  25. #include "me.h"
  26. static void x264_lowres_context_init( x264_t *h, x264_mb_analysis_t *a )
  27. {
  28.     a->i_qp = 12; // arbitrary, but low because SATD scores are 1/4 normal
  29.     a->i_lambda = x264_lambda_tab[ a->i_qp ];
  30.     x264_mb_analyse_load_costs( h, a );
  31.     h->mb.i_me_method = X264_MIN( X264_ME_HEX, h->param.analyse.i_me_method ); // maybe dia?
  32.     h->mb.i_subpel_refine = 4; // 3 should be enough, but not tweaking for speed now
  33.     h->mb.b_chroma_me = 0;
  34. }
  35. static int x264_slicetype_mb_cost( x264_t *h, x264_mb_analysis_t *a,
  36.                             x264_frame_t **frames, int p0, int p1, int b,
  37.                             int dist_scale_factor )
  38. {
  39.     x264_frame_t *fref0 = frames[p0];
  40.     x264_frame_t *fref1 = frames[p1];
  41.     x264_frame_t *fenc  = frames[b];
  42.     const int b_bidir = (b < p1);
  43.     const int i_mb_x = h->mb.i_mb_x;
  44.     const int i_mb_y = h->mb.i_mb_y;
  45.     const int i_mb_stride = h->sps->i_mb_width;
  46.     const int i_mb_xy = i_mb_x + i_mb_y * i_mb_stride;
  47.     const int i_stride = fenc->i_stride_lowres;
  48.     const int i_pel_offset = 8 * ( i_mb_x + i_mb_y * i_stride );
  49.     DECLARE_ALIGNED_8( uint8_t pix1[9*FDEC_STRIDE] );
  50.     uint8_t *pix2 = pix1+8;
  51.     x264_me_t m[2];
  52.     int i_bcost = COST_MAX;
  53.     int i_cost_bak;
  54.     int l, i;
  55.     h->mb.pic.p_fenc[0] = h->mb.pic.fenc_buf;
  56.     h->mc.copy[PIXEL_8x8]( h->mb.pic.p_fenc[0], FENC_STRIDE, &fenc->lowres[0][i_pel_offset], i_stride, 8 );
  57.     if( !p0 && !p1 && !b )
  58.         goto lowres_intra_mb;
  59.     // no need for h->mb.mv_min[]
  60.     h->mb.mv_min_fpel[0] = -8*h->mb.i_mb_x - 4;
  61.     h->mb.mv_max_fpel[0] = 8*( h->sps->i_mb_width - h->mb.i_mb_x - 1 ) + 4;
  62.     h->mb.mv_min_spel[0] = 4*( h->mb.mv_min_fpel[0] - 8 );
  63.     h->mb.mv_max_spel[0] = 4*( h->mb.mv_max_fpel[0] + 8 );
  64.     if( h->mb.i_mb_x <= 1 )
  65.     {
  66.         h->mb.mv_min_fpel[1] = -8*h->mb.i_mb_y - 4;
  67.         h->mb.mv_max_fpel[1] = 8*( h->sps->i_mb_height - h->mb.i_mb_y - 1 ) + 4;
  68.         h->mb.mv_min_spel[1] = 4*( h->mb.mv_min_fpel[1] - 8 );
  69.         h->mb.mv_max_spel[1] = 4*( h->mb.mv_max_fpel[1] + 8 );
  70.     }
  71. #define LOAD_HPELS_LUMA(dst, src) 
  72.     { 
  73.         (dst)[0] = &(src)[0][i_pel_offset]; 
  74.         (dst)[1] = &(src)[1][i_pel_offset]; 
  75.         (dst)[2] = &(src)[2][i_pel_offset]; 
  76.         (dst)[3] = &(src)[3][i_pel_offset]; 
  77.     }
  78. #define SAVE_MVS( mv0, mv1 ) 
  79.     { 
  80.         *(uint32_t*)fenc->mv[0][i_mb_xy] = *(uint32_t*)mv0; 
  81.         if( b_bidir ) 
  82.             *(uint32_t*)fenc->mv[1][i_mb_xy] = *(uint32_t*)mv1; 
  83.     }
  84. #define CLIP_MV( mv ) 
  85.     { 
  86.         mv[0] = x264_clip3( mv[0], h->mb.mv_min_spel[0], h->mb.mv_max_spel[0] ); 
  87.         mv[1] = x264_clip3( mv[1], h->mb.mv_min_spel[1], h->mb.mv_max_spel[1] ); 
  88.     }
  89. #define TRY_BIDIR( mv0, mv1, penalty ) 
  90.     { 
  91.         int stride2 = 16; 
  92.         uint8_t *src2; 
  93.         int i_cost; 
  94.         h->mc.mc_luma( pix1, 16, m[0].p_fref, m[0].i_stride[0], 
  95.                        (mv0)[0], (mv0)[1], 8, 8 ); 
  96.         src2 = h->mc.get_ref( pix2, &stride2, m[1].p_fref, m[1].i_stride[0], 
  97.                        (mv1)[0], (mv1)[1], 8, 8 ); 
  98.         h->mc.avg[PIXEL_8x8]( pix1, 16, src2, stride2 ); 
  99.         i_cost = penalty + h->pixf.mbcmp[PIXEL_8x8]( 
  100.                            m[0].p_fenc[0], FENC_STRIDE, pix1, 16 ); 
  101.         if( i_bcost > i_cost ) 
  102.         { 
  103.             i_bcost = i_cost; 
  104.             SAVE_MVS( mv0, mv1 ); 
  105.         } 
  106.     }
  107.     m[0].i_pixel = PIXEL_8x8;
  108.     m[0].p_cost_mv = a->p_cost_mv;
  109.     m[0].i_stride[0] = i_stride;
  110.     m[0].p_fenc[0] = h->mb.pic.p_fenc[0];
  111.     LOAD_HPELS_LUMA( m[0].p_fref, fref0->lowres );
  112.     if( b_bidir )
  113.     {
  114.         int16_t *mvr = fref1->mv[0][i_mb_xy];
  115.         int dmv[2][2];
  116.         int mv0[2] = {0,0};
  117.         h->mc.memcpy_aligned( &m[1], &m[0], sizeof(x264_me_t) );
  118.         LOAD_HPELS_LUMA( m[1].p_fref, fref1->lowres );
  119.         dmv[0][0] = ( mvr[0] * dist_scale_factor + 128 ) >> 8;
  120.         dmv[0][1] = ( mvr[1] * dist_scale_factor + 128 ) >> 8;
  121.         dmv[1][0] = dmv[0][0] - mvr[0];
  122.         dmv[1][1] = dmv[0][1] - mvr[1];
  123.         CLIP_MV( dmv[0] );
  124.         CLIP_MV( dmv[1] );
  125.         TRY_BIDIR( dmv[0], dmv[1], 0 );
  126.         if( dmv[0][0] | dmv[0][1] | dmv[1][0] | dmv[1][1] )
  127.            TRY_BIDIR( mv0, mv0, 0 );
  128. //      if( i_bcost < 60 ) // arbitrary threshold
  129. //          return i_bcost;
  130.     }
  131.     i_cost_bak = i_bcost;
  132.     for( l = 0; l < 1 + b_bidir; l++ )
  133.     {
  134.         DECLARE_ALIGNED_4(int16_t mvc[4][2]) = {{0}};
  135.         int i_mvc = 0;
  136.         int16_t (*fenc_mv)[2] = &fenc->mv[l][i_mb_xy];
  137. #define MVC(mv) { *(uint32_t*)mvc[i_mvc] = *(uint32_t*)mv; i_mvc++; }
  138.         if( i_mb_x > 0 )
  139.             MVC(fenc_mv[-1]);
  140.         if( i_mb_y > 0 )
  141.         {
  142.             MVC(fenc_mv[-i_mb_stride]);
  143.             if( i_mb_x < h->sps->i_mb_width - 1 )
  144.                 MVC(fenc_mv[-i_mb_stride+1]);
  145.             if( i_mb_x > 0 )
  146.                 MVC(fenc_mv[-i_mb_stride-1]);
  147.         }
  148. #undef MVC
  149.         x264_median_mv( m[l].mvp, mvc[0], mvc[1], mvc[2] );
  150.         x264_me_search( h, &m[l], mvc, i_mvc );
  151.         m[l].cost -= 2; // remove mvcost from skip mbs
  152.         if( *(uint32_t*)m[l].mv )
  153.             m[l].cost += 5;
  154.         i_bcost = X264_MIN( i_bcost, m[l].cost );
  155.     }
  156.     if( b_bidir && ( *(uint32_t*)m[0].mv || *(uint32_t*)m[1].mv ) )
  157.         TRY_BIDIR( m[0].mv, m[1].mv, 5 );
  158.     if( i_bcost < i_cost_bak )
  159.         SAVE_MVS( m[0].mv, m[1].mv );
  160.     //FIXME intra part could be shared across multiple encodings of the frame
  161. lowres_intra_mb:
  162.     if( !b_bidir ) // forbid intra-mbs in B-frames, because it's rare and not worth checking
  163.     {
  164.         uint8_t *pix = &pix1[8+FDEC_STRIDE - 1];
  165.         uint8_t *src = &fenc->lowres[0][i_pel_offset - 1];
  166.         const int intra_penalty = 5;
  167.         int satds[4], i_icost, b_intra;
  168.         memcpy( pix-FDEC_STRIDE, src-i_stride, 17 );
  169.         for( i=0; i<8; i++ )
  170.             pix[i*FDEC_STRIDE] = src[i*i_stride];
  171.         pix++;
  172.         if( h->pixf.intra_satd_x3_8x8c && h->pixf.mbcmp[0] == h->pixf.satd[0] )
  173.         {
  174.             h->pixf.intra_satd_x3_8x8c( h->mb.pic.p_fenc[0], pix, satds );
  175.             h->predict_8x8c[I_PRED_CHROMA_P]( pix );
  176.             satds[I_PRED_CHROMA_P] =
  177.                 h->pixf.satd[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
  178.         }
  179.         else
  180.         {
  181.             for( i=0; i<4; i++ )
  182.             {
  183.                 h->predict_8x8c[i]( pix );
  184.                 satds[i] = h->pixf.mbcmp[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
  185.             }
  186.         }
  187.         i_icost = X264_MIN4( satds[0], satds[1], satds[2], satds[3] );
  188.         if( i_icost < i_bcost * 2 )
  189.         {
  190.             DECLARE_ALIGNED_16( uint8_t edge[33] );
  191.             x264_predict_8x8_filter( pix, edge, ALL_NEIGHBORS, ALL_NEIGHBORS );
  192.             for( i=3; i<9; i++ )
  193.             {
  194.                 int satd;
  195.                 h->predict_8x8[i]( pix, edge );
  196.                 satd = h->pixf.mbcmp[PIXEL_8x8]( pix, FDEC_STRIDE, h->mb.pic.p_fenc[0], FENC_STRIDE );
  197.                 i_icost = X264_MIN( i_icost, satd );
  198.             }
  199.         }
  200.         i_icost += intra_penalty;
  201.         b_intra = i_icost < i_bcost;
  202.         if( b_intra )
  203.             i_bcost = i_icost;
  204.         if(    i_mb_x > 0 && i_mb_x < h->sps->i_mb_width - 1
  205.             && i_mb_y > 0 && i_mb_y < h->sps->i_mb_height - 1 )
  206.         {
  207.             fenc->i_intra_mbs[b-p0] += b_intra;
  208.             fenc->i_cost_est[0][0] += i_icost;
  209.         }
  210.     }
  211.     return i_bcost;
  212. }
  213. #undef TRY_BIDIR
  214. #undef SAVE_MVS
  215. static int x264_slicetype_frame_cost( x264_t *h, x264_mb_analysis_t *a,
  216.                                x264_frame_t **frames, int p0, int p1, int b,
  217.                                int b_intra_penalty )
  218. {
  219.     int i_score = 0;
  220.     /* Check whether we already evaluated this frame
  221.      * If we have tried this frame as P, then we have also tried
  222.      * the preceding frames as B. (is this still true?) */
  223.     /* Also check that we already calculated the row SATDs for the current frame. */
  224.     if( frames[b]->i_cost_est[b-p0][p1-b] >= 0 && (!h->param.rc.i_vbv_buffer_size || frames[b]->i_row_satds[b-p0][p1-b][0] != -1) )
  225.     {
  226.         i_score = frames[b]->i_cost_est[b-p0][p1-b];
  227.     }
  228.     else
  229.     {
  230.         int dist_scale_factor = 128;
  231.         int *row_satd = frames[b]->i_row_satds[b-p0][p1-b];
  232.         /* Init MVs so that we don't have to check edge conditions when loading predictors. */
  233.         /* FIXME: not needed every time */
  234.         memset( frames[b]->mv[0], 0, h->sps->i_mb_height * h->sps->i_mb_width * 2*sizeof(int16_t) );
  235.         if( b != p1 )
  236.             memset( frames[b]->mv[1], 0, h->sps->i_mb_height * h->sps->i_mb_width * 2*sizeof(int16_t) );
  237.         if( b == p1 )
  238.         {
  239.             frames[b]->i_intra_mbs[b-p0] = 0;
  240.             frames[b]->i_cost_est[0][0] = 0;
  241.         }
  242.         if( p1 != p0 )
  243.             dist_scale_factor = ( ((b-p0) << 8) + ((p1-p0) >> 1) ) / (p1-p0);
  244.         /* the edge mbs seem to reduce the predictive quality of the
  245.          * whole frame's score, but are needed for a spatial distribution. */
  246.         if( h->param.rc.i_vbv_buffer_size )
  247.         {
  248.             for( h->mb.i_mb_y = 0; h->mb.i_mb_y < h->sps->i_mb_height; h->mb.i_mb_y++ )
  249.             {
  250.                 row_satd[ h->mb.i_mb_y ] = 0;
  251.                 for( h->mb.i_mb_x = 0; h->mb.i_mb_x < h->sps->i_mb_width; h->mb.i_mb_x++ )
  252.                 {
  253.                     int i_mb_cost = x264_slicetype_mb_cost( h, a, frames, p0, p1, b, dist_scale_factor );
  254.                     row_satd[ h->mb.i_mb_y ] += i_mb_cost;
  255.                     if( h->mb.i_mb_y > 0 && h->mb.i_mb_y < h->sps->i_mb_height - 1 &&
  256.                         h->mb.i_mb_x > 0 && h->mb.i_mb_x < h->sps->i_mb_width - 1 )
  257.                     {
  258.                         i_score += i_mb_cost;
  259.                     }
  260.                 }
  261.             }
  262.         }
  263.         else
  264.         {
  265.             for( h->mb.i_mb_y = 1; h->mb.i_mb_y < h->sps->i_mb_height - 1; h->mb.i_mb_y++ )
  266.                 for( h->mb.i_mb_x = 1; h->mb.i_mb_x < h->sps->i_mb_width - 1; h->mb.i_mb_x++ )
  267.                     i_score += x264_slicetype_mb_cost( h, a, frames, p0, p1, b, dist_scale_factor );
  268.         }
  269.         if( b != p1 )
  270.             i_score = i_score * 100 / (120 + h->param.i_bframe_bias);
  271.         frames[b]->i_cost_est[b-p0][p1-b] = i_score;
  272. //      fprintf( stderr, "frm %d %c(%d,%d): %6d %6d imb:%d  n", frames[b]->i_frame,
  273. //               (p1==0?'I':b<p1?'B':'P'), b-p0, p1-b, i_score, frames[b]->i_cost_est[0][0], frames[b]->i_intra_mbs[b-p0] );
  274.         x264_emms();
  275.     }
  276.     if( b_intra_penalty )
  277.     {
  278.         // arbitrary penalty for I-blocks after B-frames
  279.         int nmb = (h->sps->i_mb_width - 2) * (h->sps->i_mb_height - 2);
  280.         i_score += i_score * frames[b]->i_intra_mbs[b-p0] / (nmb * 8);
  281.     }
  282.     return i_score;
  283. }
  284. static int scenecut( x264_t *h, x264_frame_t *frame, int pdist )
  285. {
  286.     int icost = frame->i_cost_est[0][0];
  287.     int pcost = frame->i_cost_est[pdist][0];
  288.     float f_bias;
  289.     int i_gop_size = frame->i_frame - h->frames.i_last_idr;
  290.     float f_thresh_max = h->param.i_scenecut_threshold / 100.0;
  291.     /* magic numbers pulled out of thin air */
  292.     float f_thresh_min = f_thresh_max * h->param.i_keyint_min
  293.                          / ( h->param.i_keyint_max * 4 );
  294.     int res;
  295.     if( h->param.i_keyint_min == h->param.i_keyint_max )
  296.         f_thresh_min= f_thresh_max;
  297.     if( i_gop_size < h->param.i_keyint_min / 4 )
  298.         f_bias = f_thresh_min / 4;
  299.     else if( i_gop_size <= h->param.i_keyint_min )
  300.         f_bias = f_thresh_min * i_gop_size / h->param.i_keyint_min;
  301.     else
  302.     {
  303.         f_bias = f_thresh_min
  304.                  + ( f_thresh_max - f_thresh_min )
  305.                    * ( i_gop_size - h->param.i_keyint_min )
  306.                    / ( h->param.i_keyint_max - h->param.i_keyint_min );
  307.     }
  308.     res = pcost >= (1.0 - f_bias) * icost;
  309.     if( res )
  310.     {
  311.         int imb = frame->i_intra_mbs[pdist];
  312.         int pmb = (h->sps->i_mb_width - 2) * (h->sps->i_mb_height - 2) - imb;
  313.         x264_log( h, X264_LOG_DEBUG, "scene cut at %d Icost:%d Pcost:%d ratio:%.4f bias:%.4f gop:%d (imb:%d pmb:%d)n",
  314.                   frame->i_frame,
  315.                   icost, pcost, 1. - (double)pcost / icost,
  316.                   f_bias, i_gop_size, imb, pmb );
  317.     }
  318.     return res;
  319. }
  320. static void x264_slicetype_analyse( x264_t *h )
  321. {
  322.     x264_mb_analysis_t a;
  323.     x264_frame_t *frames[X264_BFRAME_MAX+3] = { NULL, };
  324.     int num_frames;
  325.     int keyint_limit;
  326.     int j;
  327.     int i_mb_count = (h->sps->i_mb_width - 2) * (h->sps->i_mb_height - 2);
  328.     int cost1p0, cost2p0, cost1b1, cost2p1;
  329.     int idr_frame_type;
  330.     assert( h->frames.b_have_lowres );
  331.     if( !h->frames.last_nonb )
  332.         return;
  333.     frames[0] = h->frames.last_nonb;
  334.     for( j = 0; h->frames.next[j]; j++ )
  335.         frames[j+1] = h->frames.next[j];
  336.     keyint_limit = h->param.i_keyint_max - frames[0]->i_frame + h->frames.i_last_idr - 1;
  337.     num_frames = X264_MIN( j, keyint_limit );
  338.     if( num_frames == 0 )
  339.         return;
  340.     x264_lowres_context_init( h, &a );
  341.     idr_frame_type = frames[1]->i_frame - h->frames.i_last_idr >= h->param.i_keyint_min ? X264_TYPE_IDR : X264_TYPE_I;
  342.     if( num_frames == 1 )
  343.     {
  344. no_b_frames:
  345.         frames[1]->i_type = X264_TYPE_P;
  346.         if( h->param.b_pre_scenecut )
  347.         {
  348.             x264_slicetype_frame_cost( h, &a, frames, 0, 1, 1, 0 );
  349.             if( scenecut( h, frames[1], 1 ) )
  350.                 frames[1]->i_type = idr_frame_type;
  351.         }
  352.         return;
  353.     }
  354.     cost2p1 = x264_slicetype_frame_cost( h, &a, frames, 0, 2, 2, 1 );
  355.     if( frames[2]->i_intra_mbs[2] > i_mb_count / 2 )
  356.         goto no_b_frames;
  357.     cost1b1 = x264_slicetype_frame_cost( h, &a, frames, 0, 2, 1, 0 );
  358.     cost1p0 = x264_slicetype_frame_cost( h, &a, frames, 0, 1, 1, 0 );
  359.     cost2p0 = x264_slicetype_frame_cost( h, &a, frames, 1, 2, 2, 0 );
  360. //  fprintf( stderr, "PP: %d + %d <=> BP: %d + %d n",
  361. //           cost1p0, cost2p0, cost1b1, cost2p1 );
  362.     if( cost1p0 + cost2p0 < cost1b1 + cost2p1 )
  363.         goto no_b_frames;
  364. // arbitrary and untuned
  365. #define INTER_THRESH 300
  366. #define P_SENS_BIAS (50 - h->param.i_bframe_bias)
  367.     frames[1]->i_type = X264_TYPE_B;
  368.     for( j = 2; j <= X264_MIN( h->param.i_bframe, num_frames-1 ); j++ )
  369.     {
  370.         int pthresh = X264_MAX(INTER_THRESH - P_SENS_BIAS * (j-1), INTER_THRESH/10);
  371.         int pcost = x264_slicetype_frame_cost( h, &a, frames, 0, j+1, j+1, 1 );
  372. //      fprintf( stderr, "frm%d+%d: %d <=> %d, I:%d/%d n",
  373. //               frames[0]->i_frame, j-1, pthresh, pcost/i_mb_count,
  374. //               frames[j+1]->i_intra_mbs[j+1], i_mb_count );
  375.         if( pcost > pthresh*i_mb_count || frames[j+1]->i_intra_mbs[j+1] > i_mb_count/3 )
  376.         {
  377.             frames[j]->i_type = X264_TYPE_P;
  378.             break;
  379.         }
  380.         else
  381.             frames[j]->i_type = X264_TYPE_B;
  382.     }
  383. }
  384. void x264_slicetype_decide( x264_t *h )
  385. {
  386.     x264_frame_t *frm;
  387.     int bframes;
  388.     int i;
  389.     if( h->frames.next[0] == NULL )
  390.         return;
  391.     if( h->param.rc.b_stat_read )
  392.     {
  393.         /* Use the frame types from the first pass */
  394.         for( i = 0; h->frames.next[i] != NULL; i++ )
  395.             h->frames.next[i]->i_type =
  396.                 x264_ratecontrol_slice_type( h, h->frames.next[i]->i_frame );
  397.     }
  398.     else if( (h->param.i_bframe && h->param.b_bframe_adaptive)
  399.              || h->param.b_pre_scenecut )
  400.         x264_slicetype_analyse( h );
  401.     for( bframes = 0;; bframes++ )
  402.     {
  403.         frm = h->frames.next[bframes];
  404.         /* Limit GOP size */
  405.         if( frm->i_frame - h->frames.i_last_idr >= h->param.i_keyint_max )
  406.         {
  407.             if( frm->i_type == X264_TYPE_AUTO )
  408.                 frm->i_type = X264_TYPE_IDR;
  409.             if( frm->i_type != X264_TYPE_IDR )
  410.                 x264_log( h, X264_LOG_WARNING, "specified frame type (%d) is not compatible with keyframe intervaln", frm->i_type );
  411.         }
  412.         if( frm->i_type == X264_TYPE_IDR )
  413.         {
  414.             /* Close GOP */
  415.             if( bframes > 0 )
  416.             {
  417.                 bframes--;
  418.                 h->frames.next[bframes]->i_type = X264_TYPE_P;
  419.             }
  420.             else
  421.             {
  422.                 h->i_frame_num = 0;
  423.             }
  424.         }
  425.         if( bframes == h->param.i_bframe
  426.             || h->frames.next[bframes+1] == NULL )
  427.         {
  428.             if( IS_X264_TYPE_B( frm->i_type ) )
  429.                 x264_log( h, X264_LOG_WARNING, "specified frame type is not compatible with max B-framesn" );
  430.             if( frm->i_type == X264_TYPE_AUTO
  431.                 || IS_X264_TYPE_B( frm->i_type ) )
  432.                 frm->i_type = X264_TYPE_P;
  433.         }
  434.         if( frm->i_type != X264_TYPE_AUTO && frm->i_type != X264_TYPE_B && frm->i_type != X264_TYPE_BREF )
  435.             break;
  436.         frm->i_type = X264_TYPE_B;
  437.     }
  438. }
  439. int x264_rc_analyse_slice( x264_t *h )
  440. {
  441.     x264_mb_analysis_t a;
  442.     x264_frame_t *frames[X264_BFRAME_MAX+2] = { NULL, };
  443.     int p0=0, p1, b;
  444.     int cost;
  445.     x264_lowres_context_init( h, &a );
  446.     if( IS_X264_TYPE_I(h->fenc->i_type) )
  447.     {
  448.         p1 = b = 0;
  449.     }
  450.     else if( X264_TYPE_P == h->fenc->i_type )
  451.     {
  452.         p1 = 0;
  453.         while( h->frames.current[p1] && IS_X264_TYPE_B( h->frames.current[p1]->i_type ) )
  454.             p1++;
  455.         p1++;
  456.         b = p1;
  457.     }
  458.     else //B
  459.     {
  460.         p1 = (h->fref1[0]->i_poc - h->fref0[0]->i_poc)/2;
  461.         b  = (h->fref1[0]->i_poc - h->fenc->i_poc)/2;
  462.         frames[p1] = h->fref1[0];
  463.     }
  464.     frames[p0] = h->fref0[0];
  465.     frames[b] = h->fenc;
  466.     cost = x264_slicetype_frame_cost( h, &a, frames, p0, p1, b, 0 );
  467.     h->fenc->i_row_satd = h->fenc->i_row_satds[b-p0][p1-b];
  468.     h->fdec->i_row_satd = h->fdec->i_row_satds[b-p0][p1-b];
  469.     h->fdec->i_satd = cost;
  470.     memcpy( h->fdec->i_row_satd, h->fenc->i_row_satd, h->sps->i_mb_height * sizeof(int) );
  471.     return cost;
  472. }