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

Audio

开发平台:

Visual C++

  1. /***************************************************-*- coding: iso-8859-1 -*-
  2.  * ratecontrol.c: h264 encoder library (Rate Control)
  3.  *****************************************************************************
  4.  * Copyright (C) 2005-2008 x264 project
  5.  *
  6.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  7.  *          Michael Niedermayer <michaelni@gmx.at>
  8.  *          Gabriel Bouvigne <gabriel.bouvigne@joost.com>
  9.  *          Jason Garrett-Glaser <darkshikari@gmail.com>
  10.  *          M錸s Rullg錼d <mru@mru.ath.cx>
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  25.  *****************************************************************************/
  26. #define _ISOC99_SOURCE
  27. #undef NDEBUG // always check asserts, the speed effect is far too small to disable them
  28. #include <math.h>
  29. #include <limits.h>
  30. #include <assert.h>
  31. #include "common/common.h"
  32. #include "common/cpu.h"
  33. #include "ratecontrol.h"
  34. typedef struct
  35. {
  36.     int pict_type;
  37.     int kept_as_ref;
  38.     float qscale;
  39.     int mv_bits;
  40.     int tex_bits;
  41.     int misc_bits;
  42.     uint64_t expected_bits;
  43.     double expected_vbv;
  44.     float new_qscale;
  45.     int new_qp;
  46.     int i_count;
  47.     int p_count;
  48.     int s_count;
  49.     float blurred_complexity;
  50.     char direct_mode;
  51. } ratecontrol_entry_t;
  52. typedef struct
  53. {
  54.     double coeff;
  55.     double count;
  56.     double decay;
  57. } predictor_t;
  58. struct x264_ratecontrol_t
  59. {
  60.     /* constants */
  61.     int b_abr;
  62.     int b_2pass;
  63.     int b_vbv;
  64.     int b_vbv_min_rate;
  65.     double fps;
  66.     double bitrate;
  67.     double rate_tolerance;
  68.     int nmb;                    /* number of macroblocks in a frame */
  69.     int qp_constant[5];
  70.     /* current frame */
  71.     ratecontrol_entry_t *rce;
  72.     int qp;                     /* qp for current frame */
  73.     int qpm;                    /* qp for current macroblock */
  74.     float f_qpm;                /* qp for current macroblock: precise float for AQ */
  75.     float qpa_rc;               /* average of macroblocks' qp before aq */
  76.     float qpa_aq;               /* average of macroblocks' qp after aq */
  77.     int qp_force;
  78.     /* VBV stuff */
  79.     double buffer_size;
  80.     double buffer_fill_final;   /* real buffer as of the last finished frame */
  81.     double buffer_fill;         /* planned buffer, if all in-progress frames hit their bit budget */
  82.     double buffer_rate;         /* # of bits added to buffer_fill after each frame */
  83.     predictor_t *pred;          /* predict frame size from satd */
  84.     /* ABR stuff */
  85.     int    last_satd;
  86.     double last_rceq;
  87.     double cplxr_sum;           /* sum of bits*qscale/rceq */
  88.     double expected_bits_sum;   /* sum of qscale2bits after rceq, ratefactor, and overflow */
  89.     double wanted_bits_window;  /* target bitrate * window */
  90.     double cbr_decay;
  91.     double short_term_cplxsum;
  92.     double short_term_cplxcount;
  93.     double rate_factor_constant;
  94.     double ip_offset;
  95.     double pb_offset;
  96.     /* 2pass stuff */
  97.     FILE *p_stat_file_out;
  98.     char *psz_stat_file_tmpname;
  99.     int num_entries;            /* number of ratecontrol_entry_ts */
  100.     ratecontrol_entry_t *entry; /* FIXME: copy needed data and free this once init is done */
  101.     double last_qscale;
  102.     double last_qscale_for[5];  /* last qscale for a specific pict type, used for max_diff & ipb factor stuff  */
  103.     int last_non_b_pict_type;
  104.     double accum_p_qp;          /* for determining I-frame quant */
  105.     double accum_p_norm;
  106.     double last_accum_p_norm;
  107.     double lmin[5];             /* min qscale by frame type */
  108.     double lmax[5];
  109.     double lstep;               /* max change (multiply) in qscale per frame */
  110.     /* MBRC stuff */
  111.     double frame_size_estimated;
  112.     double frame_size_planned;
  113.     predictor_t *row_pred;
  114.     predictor_t row_preds[5];
  115.     predictor_t *pred_b_from_p; /* predict B-frame size from P-frame satd */
  116.     int bframes;                /* # consecutive B-frames before this P-frame */
  117.     int bframe_bits;            /* total cost of those frames */
  118.     /* AQ stuff */
  119.     float aq_threshold;
  120.     int *ac_energy;
  121.     int i_zones;
  122.     x264_zone_t *zones;
  123.     x264_zone_t *prev_zone;
  124. };
  125. static int parse_zones( x264_t *h );
  126. static int init_pass2(x264_t *);
  127. static float rate_estimate_qscale( x264_t *h );
  128. static void update_vbv( x264_t *h, int bits );
  129. static void update_vbv_plan( x264_t *h );
  130. static double predict_size( predictor_t *p, double q, double var );
  131. static void update_predictor( predictor_t *p, double q, double var, double bits );
  132. /* Terminology:
  133.  * qp = h.264's quantizer
  134.  * qscale = linearized quantizer = Lagrange multiplier
  135.  */
  136. static inline double qp2qscale(double qp)
  137. {
  138.     return 0.85 * pow(2.0, ( qp - 12.0 ) / 6.0);
  139. }
  140. static inline double qscale2qp(double qscale)
  141. {
  142.     return 12.0 + 6.0 * log(qscale/0.85) / log(2.0);
  143. }
  144. /* Texture bitrate is not quite inversely proportional to qscale,
  145.  * probably due the the changing number of SKIP blocks.
  146.  * MV bits level off at about qp<=12, because the lambda used
  147.  * for motion estimation is constant there. */
  148. static inline double qscale2bits(ratecontrol_entry_t *rce, double qscale)
  149. {
  150.     if(qscale<0.1)
  151.         qscale = 0.1;
  152.     return (rce->tex_bits + .1) * pow( rce->qscale / qscale, 1.1 )
  153.            + rce->mv_bits * pow( X264_MAX(rce->qscale, 1) / X264_MAX(qscale, 1), 0.5 )
  154.            + rce->misc_bits;
  155. }
  156. // Find the total AC energy of the block in all planes.
  157. static NOINLINE int ac_energy_mb( x264_t *h, int mb_x, int mb_y, int *satd )
  158. {
  159.     /* This function contains annoying hacks because GCC has a habit of reordering emms
  160.      * and putting it after floating point ops.  As a result, we put the emms at the end of the
  161.      * function and make sure that its always called before the float math.  Noinline makes
  162.      * sure no reordering goes on. */
  163.     /* FIXME: This array is larger than necessary because a bug in GCC causes an all-zero
  164.     * array to be placed in .bss despite .bss not being correctly aligned on some platforms (win32?) */
  165.     DECLARE_ALIGNED_16( static uint8_t zero[17] ) = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1};
  166.     unsigned int var=0, sad, i;
  167.     if( satd || h->param.rc.i_aq_mode == X264_AQ_GLOBAL )
  168.     {
  169.         for( i=0; i<3; i++ )
  170.         {
  171.             int w = i ? 8 : 16;
  172.             int stride = h->fenc->i_stride[i];
  173.             int offset = h->mb.b_interlaced
  174.                 ? w * (mb_x + (mb_y&~1) * stride) + (mb_y&1) * stride
  175.                 : w * (mb_x + mb_y * stride);
  176.             int pix = i ? PIXEL_8x8 : PIXEL_16x16;
  177.             stride <<= h->mb.b_interlaced;
  178.             var += h->pixf.var[pix]( h->fenc->plane[i]+offset, stride, &sad );
  179.             // SATD to represent the block's overall complexity (bit cost) for intra encoding.
  180.             // exclude the DC coef, because nothing short of an actual intra prediction will estimate DC cost.
  181.             if( var && satd )
  182.                 *satd += h->pixf.satd[pix]( zero, 0, h->fenc->plane[i]+offset, stride ) - sad/2;
  183.         }
  184.         var = X264_MAX(var,1);
  185.     }
  186.     else var = h->rc->ac_energy[h->mb.i_mb_xy];
  187.     x264_emms();
  188.     return var;
  189. }
  190. static void x264_autosense_aq( x264_t *h )
  191. {
  192.     double total = 0;
  193.     double n = 0;
  194.     int mb_x, mb_y;
  195.     // FIXME: Some of the SATDs might be already calculated elsewhere (ratecontrol?). Can we reuse them?
  196.     // FIXME: Is chroma SATD necessary?
  197.     for( mb_y=0; mb_y<h->sps->i_mb_height; mb_y++ )
  198.         for( mb_x=0; mb_x<h->sps->i_mb_width; mb_x++ )
  199.         {
  200.             int satd=0;
  201.             int energy = ac_energy_mb( h, mb_x, mb_y, &satd );
  202.             h->rc->ac_energy[mb_x + mb_y * h->sps->i_mb_width] = energy;
  203.             /* Weight the energy value by the SATD value of the MB.
  204.              * This represents the fact that the more complex blocks in a frame should
  205.              * be weighted more when calculating the optimal threshold. This also helps
  206.              * diminish the negative effect of large numbers of simple blocks in a frame,
  207.              * such as in the case of a letterboxed film. */
  208.             total += logf(energy) * satd;
  209.             n += satd;
  210.         }
  211.     x264_emms();
  212.     /* Calculate and store the threshold. */
  213.     h->rc->aq_threshold = n ? total/n : 15;
  214. }
  215. /*****************************************************************************
  216. * x264_adaptive_quant:
  217.  * adjust macroblock QP based on variance (AC energy) of the MB.
  218.  * high variance  = higher QP
  219.  * low variance = lower QP
  220.  * This generally increases SSIM and lowers PSNR.
  221. *****************************************************************************/
  222. void x264_adaptive_quant( x264_t *h )
  223. {
  224.     int energy = ac_energy_mb( h, h->mb.i_mb_x, h->mb.i_mb_y, NULL );
  225.     /* Adjust the QP based on the AC energy of the macroblock. */
  226.     float qp = h->rc->f_qpm;
  227.     float qp_adj = 1.5 * (logf(energy) - h->rc->aq_threshold);
  228.     if( h->param.rc.i_aq_mode == X264_AQ_LOCAL )
  229.         qp_adj = x264_clip3f( qp_adj, -5, 5 );
  230.     h->mb.i_qp = x264_clip3( qp + qp_adj * h->param.rc.f_aq_strength + .5, h->param.rc.i_qp_min, h->param.rc.i_qp_max );
  231.     /* If the QP of this MB is within 1 of the previous MB, code the same QP as the previous MB,
  232.      * to lower the bit cost of the qp_delta. */
  233.     if( abs(h->mb.i_qp - h->mb.i_last_qp) == 1 )
  234.         h->mb.i_qp = h->mb.i_last_qp;
  235.     h->mb.i_chroma_qp = h->chroma_qp_table[h->mb.i_qp];
  236. }
  237. int x264_ratecontrol_new( x264_t *h )
  238. {
  239.     x264_ratecontrol_t *rc;
  240.     int i;
  241.     x264_emms();
  242.     rc = h->rc = x264_malloc( h->param.i_threads * sizeof(x264_ratecontrol_t) );
  243.     memset( rc, 0, h->param.i_threads * sizeof(x264_ratecontrol_t) );
  244.     rc->b_abr = h->param.rc.i_rc_method != X264_RC_CQP && !h->param.rc.b_stat_read;
  245.     rc->b_2pass = h->param.rc.i_rc_method == X264_RC_ABR && h->param.rc.b_stat_read;
  246.     /* FIXME: use integers */
  247.     if(h->param.i_fps_num > 0 && h->param.i_fps_den > 0)
  248.         rc->fps = (float) h->param.i_fps_num / h->param.i_fps_den;
  249.     else
  250.         rc->fps = 25.0;
  251.     rc->bitrate = h->param.rc.i_bitrate * 1000.;
  252.     rc->rate_tolerance = h->param.rc.f_rate_tolerance;
  253.     rc->nmb = h->mb.i_mb_count;
  254.     rc->last_non_b_pict_type = -1;
  255.     rc->cbr_decay = 1.0;
  256.     if( h->param.rc.i_rc_method == X264_RC_CRF && h->param.rc.b_stat_read )
  257.     {
  258.         x264_log(h, X264_LOG_ERROR, "constant rate-factor is incompatible with 2pass.n");
  259.         return -1;
  260.     }
  261.     if( h->param.rc.i_vbv_buffer_size )
  262.     {
  263.         if( h->param.rc.i_rc_method == X264_RC_CQP )
  264.             x264_log(h, X264_LOG_WARNING, "VBV is incompatible with constant QP, ignored.n");
  265.         else if( h->param.rc.i_vbv_max_bitrate == 0 )
  266.         {
  267.             x264_log( h, X264_LOG_DEBUG, "VBV maxrate unspecified, assuming CBRn" );
  268.             h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate;
  269.         }
  270.     }
  271.     if( h->param.rc.i_vbv_max_bitrate < h->param.rc.i_bitrate &&
  272.         h->param.rc.i_vbv_max_bitrate > 0)
  273.         x264_log(h, X264_LOG_WARNING, "max bitrate less than average bitrate, ignored.n");
  274.     else if( h->param.rc.i_vbv_max_bitrate > 0 &&
  275.              h->param.rc.i_vbv_buffer_size > 0 )
  276.     {
  277.         if( h->param.rc.i_vbv_buffer_size < 3 * h->param.rc.i_vbv_max_bitrate / rc->fps )
  278.         {
  279.             h->param.rc.i_vbv_buffer_size = 3 * h->param.rc.i_vbv_max_bitrate / rc->fps;
  280.             x264_log( h, X264_LOG_WARNING, "VBV buffer size too small, using %d kbitn",
  281.                       h->param.rc.i_vbv_buffer_size );
  282.         }
  283.         if( h->param.rc.f_vbv_buffer_init > 1. )
  284.             h->param.rc.f_vbv_buffer_init = x264_clip3f( h->param.rc.f_vbv_buffer_init / h->param.rc.i_vbv_buffer_size, 0, 1 );
  285.         rc->buffer_rate = h->param.rc.i_vbv_max_bitrate * 1000. / rc->fps;
  286.         rc->buffer_size = h->param.rc.i_vbv_buffer_size * 1000.;
  287.         rc->buffer_fill_final = rc->buffer_size * h->param.rc.f_vbv_buffer_init;
  288.         rc->cbr_decay = 1.0 - rc->buffer_rate / rc->buffer_size
  289.                       * 0.5 * X264_MAX(0, 1.5 - rc->buffer_rate * rc->fps / rc->bitrate);
  290.         rc->b_vbv = 1;
  291.         rc->b_vbv_min_rate = !rc->b_2pass
  292.                           && h->param.rc.i_rc_method == X264_RC_ABR
  293.                           && h->param.rc.i_vbv_max_bitrate <= h->param.rc.i_bitrate;
  294.     }
  295.     else if( h->param.rc.i_vbv_max_bitrate )
  296.     {
  297.         x264_log(h, X264_LOG_WARNING, "VBV maxrate specified, but no bufsize.n");
  298.         h->param.rc.i_vbv_max_bitrate = 0;
  299.     }
  300.     if(rc->rate_tolerance < 0.01)
  301.     {
  302.         x264_log(h, X264_LOG_WARNING, "bitrate tolerance too small, using .01n");
  303.         rc->rate_tolerance = 0.01;
  304.     }
  305.     h->mb.b_variable_qp = rc->b_vbv || h->param.rc.i_aq_mode;
  306.     if( rc->b_abr )
  307.     {
  308.         /* FIXME ABR_INIT_QP is actually used only in CRF */
  309. #define ABR_INIT_QP ( h->param.rc.i_rc_method == X264_RC_CRF ? h->param.rc.f_rf_constant : 24 )
  310.         rc->accum_p_norm = .01;
  311.         rc->accum_p_qp = ABR_INIT_QP * rc->accum_p_norm;
  312.         /* estimated ratio that produces a reasonable QP for the first I-frame */
  313.         rc->cplxr_sum = .01 * pow( 7.0e5, h->param.rc.f_qcompress ) * pow( h->mb.i_mb_count, 0.5 );
  314.         rc->wanted_bits_window = 1.0 * rc->bitrate / rc->fps;
  315.         rc->last_non_b_pict_type = SLICE_TYPE_I;
  316.     }
  317.     if( h->param.rc.i_rc_method == X264_RC_CRF )
  318.     {
  319.         /* arbitrary rescaling to make CRF somewhat similar to QP */
  320.         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
  321.         rc->rate_factor_constant = pow( base_cplx, 1 - h->param.rc.f_qcompress )
  322.                                  / qp2qscale( h->param.rc.f_rf_constant );
  323.     }
  324.     rc->ip_offset = 6.0 * log(h->param.rc.f_ip_factor) / log(2.0);
  325.     rc->pb_offset = 6.0 * log(h->param.rc.f_pb_factor) / log(2.0);
  326.     rc->qp_constant[SLICE_TYPE_P] = h->param.rc.i_qp_constant;
  327.     rc->qp_constant[SLICE_TYPE_I] = x264_clip3( h->param.rc.i_qp_constant - rc->ip_offset + 0.5, 0, 51 );
  328.     rc->qp_constant[SLICE_TYPE_B] = x264_clip3( h->param.rc.i_qp_constant + rc->pb_offset + 0.5, 0, 51 );
  329.     rc->lstep = pow( 2, h->param.rc.i_qp_step / 6.0 );
  330.     rc->last_qscale = qp2qscale(26);
  331.     rc->pred = x264_malloc( 5*sizeof(predictor_t) );
  332.     rc->pred_b_from_p = x264_malloc( sizeof(predictor_t) );
  333.     for( i = 0; i < 5; i++ )
  334.     {
  335.         rc->last_qscale_for[i] = qp2qscale( ABR_INIT_QP );
  336.         rc->lmin[i] = qp2qscale( h->param.rc.i_qp_min );
  337.         rc->lmax[i] = qp2qscale( h->param.rc.i_qp_max );
  338.         rc->pred[i].coeff= 2.0;
  339.         rc->pred[i].count= 1.0;
  340.         rc->pred[i].decay= 0.5;
  341.         rc->row_preds[i].coeff= .25;
  342.         rc->row_preds[i].count= 1.0;
  343.         rc->row_preds[i].decay= 0.5;
  344.     }
  345.     *rc->pred_b_from_p = rc->pred[0];
  346.     if( parse_zones( h ) < 0 )
  347.     {
  348.         x264_log( h, X264_LOG_ERROR, "failed to parse zonesn" );
  349.         return -1;
  350.     }
  351.     /* Load stat file and init 2pass algo */
  352.     if( h->param.rc.b_stat_read )
  353.     {
  354.         char *p, *stats_in, *stats_buf;
  355.         /* read 1st pass stats */
  356.         assert( h->param.rc.psz_stat_in );
  357.         stats_buf = stats_in = x264_slurp_file( h->param.rc.psz_stat_in );
  358.         if( !stats_buf )
  359.         {
  360.             x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open stats filen");
  361.             return -1;
  362.         }
  363.         /* check whether 1st pass options were compatible with current options */
  364.         if( !strncmp( stats_buf, "#options:", 9 ) )
  365.         {
  366.             int i;
  367.             char *opts = stats_buf;
  368.             stats_in = strchr( stats_buf, 'n' );
  369.             if( !stats_in )
  370.                 return -1;
  371.             *stats_in = '';
  372.             stats_in++;
  373.             if( ( p = strstr( opts, "bframes=" ) ) && sscanf( p, "bframes=%d", &i )
  374.                 && h->param.i_bframe != i )
  375.             {
  376.                 x264_log( h, X264_LOG_ERROR, "different number of B-frames than 1st pass (%d vs %d)n",
  377.                           h->param.i_bframe, i );
  378.                 return -1;
  379.             }
  380.             /* since B-adapt doesn't (yet) take into account B-pyramid,
  381.              * the converse is not a problem */
  382.             if( strstr( opts, "b_pyramid=1" ) && !h->param.b_bframe_pyramid )
  383.                 x264_log( h, X264_LOG_WARNING, "1st pass used B-pyramid, 2nd doesn'tn" );
  384.             if( ( p = strstr( opts, "keyint=" ) ) && sscanf( p, "keyint=%d", &i )
  385.                 && h->param.i_keyint_max != i )
  386.                 x264_log( h, X264_LOG_WARNING, "different keyint than 1st pass (%d vs %d)n",
  387.                           h->param.i_keyint_max, i );
  388.             if( strstr( opts, "qp=0" ) && h->param.rc.i_rc_method == X264_RC_ABR )
  389.                 x264_log( h, X264_LOG_WARNING, "1st pass was lossless, bitrate prediction will be inaccuraten" );
  390.         }
  391.         /* find number of pics */
  392.         p = stats_in;
  393.         for(i=-1; p; i++)
  394.             p = strchr(p+1, ';');
  395.         if(i==0)
  396.         {
  397.             x264_log(h, X264_LOG_ERROR, "empty stats filen");
  398.             return -1;
  399.         }
  400.         rc->num_entries = i;
  401.         if( h->param.i_frame_total < rc->num_entries && h->param.i_frame_total > 0 )
  402.         {
  403.             x264_log( h, X264_LOG_WARNING, "2nd pass has fewer frames than 1st pass (%d vs %d)n",
  404.                       h->param.i_frame_total, rc->num_entries );
  405.         }
  406.         if( h->param.i_frame_total > rc->num_entries + h->param.i_bframe )
  407.         {
  408.             x264_log( h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d vs %d)n",
  409.                       h->param.i_frame_total, rc->num_entries );
  410.             return -1;
  411.         }
  412.         /* FIXME: ugly padding because VfW drops delayed B-frames */
  413.         rc->num_entries += h->param.i_bframe;
  414.         rc->entry = (ratecontrol_entry_t*) x264_malloc(rc->num_entries * sizeof(ratecontrol_entry_t));
  415.         memset(rc->entry, 0, rc->num_entries * sizeof(ratecontrol_entry_t));
  416.         /* init all to skipped p frames */
  417.         for(i=0; i<rc->num_entries; i++)
  418.         {
  419.             ratecontrol_entry_t *rce = &rc->entry[i];
  420.             rce->pict_type = SLICE_TYPE_P;
  421.             rce->qscale = rce->new_qscale = qp2qscale(20);
  422.             rce->misc_bits = rc->nmb + 10;
  423.             rce->new_qp = 0;
  424.         }
  425.         /* read stats */
  426.         p = stats_in;
  427.         for(i=0; i < rc->num_entries - h->param.i_bframe; i++)
  428.         {
  429.             ratecontrol_entry_t *rce;
  430.             int frame_number;
  431.             char pict_type;
  432.             int e;
  433.             char *next;
  434.             float qp;
  435.             next= strchr(p, ';');
  436.             if(next)
  437.             {
  438.                 (*next)=0; //sscanf is unbelievably slow on long strings
  439.                 next++;
  440.             }
  441.             e = sscanf(p, " in:%d ", &frame_number);
  442.             if(frame_number < 0 || frame_number >= rc->num_entries)
  443.             {
  444.                 x264_log(h, X264_LOG_ERROR, "bad frame number (%d) at stats line %dn", frame_number, i);
  445.                 return -1;
  446.             }
  447.             rce = &rc->entry[frame_number];
  448.             rce->direct_mode = 0;
  449.             e += sscanf(p, " in:%*d out:%*d type:%c q:%f tex:%d mv:%d misc:%d imb:%d pmb:%d smb:%d d:%c",
  450.                    &pict_type, &qp, &rce->tex_bits,
  451.                    &rce->mv_bits, &rce->misc_bits, &rce->i_count, &rce->p_count,
  452.                    &rce->s_count, &rce->direct_mode);
  453.             switch(pict_type)
  454.             {
  455.                 case 'I': rce->kept_as_ref = 1;
  456.                 case 'i': rce->pict_type = SLICE_TYPE_I; break;
  457.                 case 'P': rce->pict_type = SLICE_TYPE_P; break;
  458.                 case 'B': rce->kept_as_ref = 1;
  459.                 case 'b': rce->pict_type = SLICE_TYPE_B; break;
  460.                 default:  e = -1; break;
  461.             }
  462.             if(e < 10)
  463.             {
  464.                 x264_log(h, X264_LOG_ERROR, "statistics are damaged at line %d, parser out=%dn", i, e);
  465.                 return -1;
  466.             }
  467.             rce->qscale = qp2qscale(qp);
  468.             p = next;
  469.         }
  470.         x264_free(stats_buf);
  471.         if(h->param.rc.i_rc_method == X264_RC_ABR)
  472.         {
  473.             if(init_pass2(h) < 0) return -1;
  474.         } /* else we're using constant quant, so no need to run the bitrate allocation */
  475.     }
  476.     /* Open output file */
  477.     /* If input and output files are the same, output to a temp file
  478.      * and move it to the real name only when it's complete */
  479.     if( h->param.rc.b_stat_write )
  480.     {
  481.         char *p;
  482.         rc->psz_stat_file_tmpname = x264_malloc( strlen(h->param.rc.psz_stat_out) + 6 );
  483.         strcpy( rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out );
  484.         strcat( rc->psz_stat_file_tmpname, ".temp" );
  485.         rc->p_stat_file_out = fopen( rc->psz_stat_file_tmpname, "wb" );
  486.         if( rc->p_stat_file_out == NULL )
  487.         {
  488.             x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open stats filen");
  489.             return -1;
  490.         }
  491.         p = x264_param2string( &h->param, 1 );
  492.         fprintf( rc->p_stat_file_out, "#options: %sn", p );
  493.         x264_free( p );
  494.     }
  495.     for( i=0; i<h->param.i_threads; i++ )
  496.     {
  497.         h->thread[i]->rc = rc+i;
  498.         if( i )
  499.             rc[i] = rc[0];
  500.         if( h->param.rc.i_aq_mode == X264_AQ_LOCAL )
  501.             rc[i].ac_energy = x264_malloc( h->mb.i_mb_count * sizeof(int) );
  502.     }
  503.     return 0;
  504. }
  505. static int parse_zone( x264_t *h, x264_zone_t *z, char *p )
  506. {
  507.     int len = 0;
  508.     char *tok, *saveptr;
  509.     z->param = NULL;
  510.     z->f_bitrate_factor = 1;
  511.     if( 3 <= sscanf(p, "%u,%u,q=%u%n", &z->i_start, &z->i_end, &z->i_qp, &len) )
  512.         z->b_force_qp = 1;
  513.     else if( 3 <= sscanf(p, "%u,%u,b=%f%n", &z->i_start, &z->i_end, &z->f_bitrate_factor, &len) )
  514.         z->b_force_qp = 0;
  515.     else if( 2 <= sscanf(p, "%u,%u%n", &z->i_start, &z->i_end, &len) )
  516.         z->b_force_qp = 0;
  517.     else
  518.     {
  519.         x264_log( h, X264_LOG_ERROR, "invalid zone: "%s"n", p );
  520.         return -1;
  521.     }
  522.     p += len;
  523.     if( !*p )
  524.         return 0;
  525.     z->param = malloc( sizeof(x264_param_t) );
  526.     memcpy( z->param, &h->param, sizeof(x264_param_t) );
  527.     while( (tok = strtok_r( p, ",", &saveptr )) )
  528.     {
  529.         char *val = strchr( tok, '=' );
  530.         if( val )
  531.         {
  532.             *val = '';
  533.             val++;
  534.         }
  535.         if( x264_param_parse( z->param, tok, val ) )
  536.         {
  537.             x264_log( h, X264_LOG_ERROR, "invalid zone param: %s = %sn", tok, val );
  538.             return -1;
  539.         }
  540.         p = NULL;
  541.     }
  542.     return 0;
  543. }
  544. static int parse_zones( x264_t *h )
  545. {
  546.     x264_ratecontrol_t *rc = h->rc;
  547.     int i;
  548.     if( h->param.rc.psz_zones && !h->param.rc.i_zones )
  549.     {
  550.         char *p, *tok, *saveptr;
  551.         char *psz_zones = x264_malloc( strlen(h->param.rc.psz_zones)+1 );
  552.         strcpy( psz_zones, h->param.rc.psz_zones );
  553.         h->param.rc.i_zones = 1;
  554.         for( p = psz_zones; *p; p++ )
  555.             h->param.rc.i_zones += (*p == '/');
  556.         h->param.rc.zones = x264_malloc( h->param.rc.i_zones * sizeof(x264_zone_t) );
  557.         p = psz_zones;
  558.         for( i = 0; i < h->param.rc.i_zones; i++ )
  559.         {
  560.             tok = strtok_r( p, "/", &saveptr );
  561.             if( !tok || parse_zone( h, &h->param.rc.zones[i], tok ) )
  562.                 return -1;
  563.             p = NULL;
  564.         }
  565.         x264_free( psz_zones );
  566.     }
  567.     if( h->param.rc.i_zones > 0 )
  568.     {
  569.         for( i = 0; i < h->param.rc.i_zones; i++ )
  570.         {
  571.             x264_zone_t z = h->param.rc.zones[i];
  572.             if( z.i_start < 0 || z.i_start > z.i_end )
  573.             {
  574.                 x264_log( h, X264_LOG_ERROR, "invalid zone: start=%d end=%dn",
  575.                           z.i_start, z.i_end );
  576.                 return -1;
  577.             }
  578.             else if( !z.b_force_qp && z.f_bitrate_factor <= 0 )
  579.             {
  580.                 x264_log( h, X264_LOG_ERROR, "invalid zone: bitrate_factor=%fn",
  581.                           z.f_bitrate_factor );
  582.                 return -1;
  583.             }
  584.         }
  585.         rc->i_zones = h->param.rc.i_zones + 1;
  586.         rc->zones = x264_malloc( rc->i_zones * sizeof(x264_zone_t) );
  587.         memcpy( rc->zones+1, h->param.rc.zones, (rc->i_zones-1) * sizeof(x264_zone_t) );
  588.         // default zone to fall back to if none of the others match
  589.         rc->zones[0].i_start = 0;
  590.         rc->zones[0].i_end = INT_MAX;
  591.         rc->zones[0].b_force_qp = 0;
  592.         rc->zones[0].f_bitrate_factor = 1;
  593.         rc->zones[0].param = x264_malloc( sizeof(x264_param_t) );
  594.         memcpy( rc->zones[0].param, &h->param, sizeof(x264_param_t) );
  595.         for( i = 1; i < rc->i_zones; i++ )
  596.         {
  597.             if( !rc->zones[i].param )
  598.                 rc->zones[i].param = rc->zones[0].param;
  599.         }
  600.     }
  601.     return 0;
  602. }
  603. static x264_zone_t *get_zone( x264_t *h, int frame_num )
  604. {
  605.     int i;
  606.     for( i = h->rc->i_zones-1; i >= 0; i-- )
  607.     {
  608.         x264_zone_t *z = &h->rc->zones[i];
  609.         if( frame_num >= z->i_start && frame_num <= z->i_end )
  610.             return z;
  611.     }
  612.     return NULL;
  613. }
  614. void x264_ratecontrol_summary( x264_t *h )
  615. {
  616.     x264_ratecontrol_t *rc = h->rc;
  617.     if( rc->b_abr && h->param.rc.i_rc_method == X264_RC_ABR && rc->cbr_decay > .9999 )
  618.     {
  619.         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
  620.         x264_log( h, X264_LOG_INFO, "final ratefactor: %.2fn",
  621.                   qscale2qp( pow( base_cplx, 1 - h->param.rc.f_qcompress )
  622.                              * rc->cplxr_sum / rc->wanted_bits_window ) );
  623.     }
  624. }
  625. void x264_ratecontrol_delete( x264_t *h )
  626. {
  627.     x264_ratecontrol_t *rc = h->rc;
  628.     int i;
  629.     if( rc->p_stat_file_out )
  630.     {
  631.         fclose( rc->p_stat_file_out );
  632.         if( h->i_frame >= rc->num_entries - h->param.i_bframe )
  633.             if( rename( rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out ) != 0 )
  634.             {
  635.                 x264_log( h, X264_LOG_ERROR, "failed to rename "%s" to "%s"n",
  636.                           rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out );
  637.             }
  638.         x264_free( rc->psz_stat_file_tmpname );
  639.     }
  640.     x264_free( rc->pred );
  641.     x264_free( rc->pred_b_from_p );
  642.     x264_free( rc->entry );
  643.     if( rc->zones )
  644.     {
  645.         x264_free( rc->zones[0].param );
  646.         if( h->param.rc.psz_zones )
  647.             for( i=1; i<rc->i_zones; i++ )
  648.                 if( rc->zones[i].param != rc->zones[0].param )
  649.                     x264_free( rc->zones[i].param );
  650.         x264_free( rc->zones );
  651.     }
  652.     for( i=0; i<h->param.i_threads; i++ )
  653.         x264_free( rc[i].ac_energy );
  654.     x264_free( rc );
  655. }
  656. void x264_ratecontrol_set_estimated_size( x264_t *h, int bits )
  657. {
  658.     x264_pthread_mutex_lock( &h->fenc->mutex );
  659.     h->rc->frame_size_estimated = bits;
  660.     x264_pthread_mutex_unlock( &h->fenc->mutex );
  661. }
  662. int x264_ratecontrol_get_estimated_size( x264_t const *h)
  663. {
  664.     int size;
  665.     x264_pthread_mutex_lock( &h->fenc->mutex );
  666.     size = h->rc->frame_size_estimated;
  667.     x264_pthread_mutex_unlock( &h->fenc->mutex );
  668.     return size;
  669. }
  670. static void accum_p_qp_update( x264_t *h, float qp )
  671. {
  672.     x264_ratecontrol_t *rc = h->rc;
  673.     rc->accum_p_qp   *= .95;
  674.     rc->accum_p_norm *= .95;
  675.     rc->accum_p_norm += 1;
  676.     if( h->sh.i_type == SLICE_TYPE_I )
  677.         rc->accum_p_qp += qp + rc->ip_offset;
  678.     else
  679.         rc->accum_p_qp += qp;
  680. }
  681. /* Before encoding a frame, choose a QP for it */
  682. void x264_ratecontrol_start( x264_t *h, int i_force_qp )
  683. {
  684.     x264_ratecontrol_t *rc = h->rc;
  685.     ratecontrol_entry_t *rce = NULL;
  686.     x264_zone_t *zone = get_zone( h, h->fenc->i_frame );
  687.     float q;
  688.     x264_emms();
  689.     if( zone && (!rc->prev_zone || zone->param != rc->prev_zone->param) )
  690.         x264_encoder_reconfig( h, zone->param );
  691.     rc->prev_zone = zone;
  692.     rc->qp_force = i_force_qp;
  693.     if( h->param.rc.b_stat_read )
  694.     {
  695.         int frame = h->fenc->i_frame;
  696.         assert( frame >= 0 && frame < rc->num_entries );
  697.         rce = h->rc->rce = &h->rc->entry[frame];
  698.         if( h->sh.i_type == SLICE_TYPE_B
  699.             && h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO )
  700.         {
  701.             h->sh.b_direct_spatial_mv_pred = ( rce->direct_mode == 's' );
  702.             h->mb.b_direct_auto_read = ( rce->direct_mode == 's' || rce->direct_mode == 't' );
  703.         }
  704.     }
  705.     if( rc->b_vbv )
  706.     {
  707.         memset( h->fdec->i_row_bits, 0, h->sps->i_mb_height * sizeof(int) );
  708.         rc->row_pred = &rc->row_preds[h->sh.i_type];
  709.         update_vbv_plan( h );
  710.     }
  711.     if( h->sh.i_type != SLICE_TYPE_B )
  712.     {
  713.         rc->bframes = 0;
  714.         while( h->frames.current[rc->bframes] && IS_X264_TYPE_B(h->frames.current[rc->bframes]->i_type) )
  715.             rc->bframes++;
  716.     }
  717.     if( i_force_qp )
  718.     {
  719.         q = i_force_qp - 1;
  720.     }
  721.     else if( rc->b_abr )
  722.     {
  723.         q = qscale2qp( rate_estimate_qscale( h ) );
  724.     }
  725.     else if( rc->b_2pass )
  726.     {
  727.         rce->new_qscale = rate_estimate_qscale( h );
  728.         q = qscale2qp( rce->new_qscale );
  729.     }
  730.     else /* CQP */
  731.     {
  732.         if( h->sh.i_type == SLICE_TYPE_B && h->fdec->b_kept_as_ref )
  733.             q = ( rc->qp_constant[ SLICE_TYPE_B ] + rc->qp_constant[ SLICE_TYPE_P ] ) / 2;
  734.         else
  735.             q = rc->qp_constant[ h->sh.i_type ];
  736.         if( zone )
  737.         {
  738.             if( zone->b_force_qp )
  739.                 q += zone->i_qp - rc->qp_constant[SLICE_TYPE_P];
  740.             else
  741.                 q -= 6*log(zone->f_bitrate_factor)/log(2);
  742.         }
  743.     }
  744.     rc->qpa_rc =
  745.     rc->qpa_aq = 0;
  746.     h->fdec->f_qp_avg_rc =
  747.     h->fdec->f_qp_avg_aq =
  748.     rc->qpm =
  749.     rc->qp = x264_clip3( (int)(q + 0.5), 0, 51 );
  750.     rc->f_qpm = q;
  751.     if( rce )
  752.         rce->new_qp = rc->qp;
  753.     /* accum_p_qp needs to be here so that future frames can benefit from the
  754.      * data before this frame is done. but this only works because threading
  755.      * guarantees to not re-encode any frames. so the non-threaded case does
  756.      * accum_p_qp later. */
  757.     if( h->param.i_threads > 1 )
  758.         accum_p_qp_update( h, rc->qp );
  759.     if( h->sh.i_type != SLICE_TYPE_B )
  760.         rc->last_non_b_pict_type = h->sh.i_type;
  761.     /* Adaptive AQ thresholding algorithm. */
  762.     if( h->param.rc.i_aq_mode == X264_AQ_GLOBAL )
  763.         /* Arbitrary value for "center" of the AQ curve.
  764.          * Chosen so that any given value of CRF has on average similar bitrate with and without AQ. */
  765.         h->rc->aq_threshold = logf(5000);
  766.     else if( h->param.rc.i_aq_mode == X264_AQ_LOCAL )
  767.         x264_autosense_aq(h);
  768. }
  769. static double predict_row_size( x264_t *h, int y, int qp )
  770. {
  771.     /* average between two predictors:
  772.      * absolute SATD, and scaled bit cost of the colocated row in the previous frame */
  773.     x264_ratecontrol_t *rc = h->rc;
  774.     double pred_s = predict_size( rc->row_pred, qp2qscale(qp), h->fdec->i_row_satd[y] );
  775.     double pred_t = 0;
  776.     if( h->sh.i_type != SLICE_TYPE_I
  777.         && h->fref0[0]->i_type == h->fdec->i_type
  778.         && h->fref0[0]->i_row_satd[y] > 0
  779.         && (abs(h->fref0[0]->i_row_satd[y] - h->fdec->i_row_satd[y]) < h->fdec->i_row_satd[y]/2))
  780.     {
  781.         pred_t = h->fref0[0]->i_row_bits[y] * h->fdec->i_row_satd[y] / h->fref0[0]->i_row_satd[y]
  782.                  * qp2qscale(h->fref0[0]->i_row_qp[y]) / qp2qscale(qp);
  783.     }
  784.     if( pred_t == 0 )
  785.         pred_t = pred_s;
  786.     return (pred_s + pred_t) / 2;
  787. }
  788. static double row_bits_so_far( x264_t *h, int y )
  789. {
  790.     int i;
  791.     double bits = 0;
  792.     for( i = 0; i <= y; i++ )
  793.         bits += h->fdec->i_row_bits[i];
  794.     return bits;
  795. }
  796. static double predict_row_size_sum( x264_t *h, int y, int qp )
  797. {
  798.     int i;
  799.     double bits = row_bits_so_far(h, y);
  800.     for( i = y+1; i < h->sps->i_mb_height; i++ )
  801.         bits += predict_row_size( h, i, qp );
  802.     return bits;
  803. }
  804. void x264_ratecontrol_mb( x264_t *h, int bits )
  805. {
  806.     x264_ratecontrol_t *rc = h->rc;
  807.     const int y = h->mb.i_mb_y;
  808.     x264_emms();
  809.     h->fdec->i_row_bits[y] += bits;
  810.     rc->qpa_rc += rc->f_qpm;
  811.     rc->qpa_aq += h->mb.i_qp;
  812.     if( h->mb.i_mb_x != h->sps->i_mb_width - 1 || !rc->b_vbv)
  813.         return;
  814.     h->fdec->i_row_qp[y] = rc->qpm;
  815.     if( h->sh.i_type == SLICE_TYPE_B )
  816.     {
  817.         /* B-frames shouldn't use lower QP than their reference frames.
  818.          * This code is a bit overzealous in limiting B-frame quantizers, but it helps avoid
  819.          * underflows due to the fact that B-frames are not explicitly covered by VBV. */
  820.         if( y < h->sps->i_mb_height-1 )
  821.         {
  822.             int i_estimated;
  823.             int avg_qp = X264_MAX(h->fref0[0]->i_row_qp[y+1], h->fref1[0]->i_row_qp[y+1])
  824.                        + rc->pb_offset * ((h->fenc->i_type == X264_TYPE_BREF) ? 0.5 : 1);
  825.             rc->qpm = X264_MIN(X264_MAX( rc->qp, avg_qp), 51); //avg_qp could go higher than 51 due to pb_offset
  826.             i_estimated = row_bits_so_far(h, y); //FIXME: compute full estimated size
  827.             if (i_estimated > h->rc->frame_size_planned)
  828.                 x264_ratecontrol_set_estimated_size(h, i_estimated);
  829.         }
  830.     }
  831.     else
  832.     {
  833.         update_predictor( rc->row_pred, qp2qscale(rc->qpm), h->fdec->i_row_satd[y], h->fdec->i_row_bits[y] );
  834.         /* tweak quality based on difference from predicted size */
  835.         if( y < h->sps->i_mb_height-1 && h->stat.i_slice_count[h->sh.i_type] > 0 )
  836.         {
  837.             int prev_row_qp = h->fdec->i_row_qp[y];
  838.             int b0 = predict_row_size_sum( h, y, rc->qpm );
  839.             int b1 = b0;
  840.             int i_qp_max = X264_MIN( prev_row_qp + h->param.rc.i_qp_step, h->param.rc.i_qp_max );
  841.             int i_qp_min = X264_MAX( prev_row_qp - h->param.rc.i_qp_step, h->param.rc.i_qp_min );
  842.             float buffer_left_planned = rc->buffer_fill - rc->frame_size_planned;
  843.             float rc_tol = 1;
  844.             float headroom = 0;
  845.             /* Don't modify the row QPs until a sufficent amount of the bits of the frame have been processed, in case a flat */
  846.             /* area at the top of the frame was measured inaccurately. */
  847.             if(row_bits_so_far(h,y) < 0.05 * rc->frame_size_planned)
  848.                 return;
  849.             headroom = buffer_left_planned/rc->buffer_size;
  850.             if(h->sh.i_type != SLICE_TYPE_I)
  851.                 headroom /= 2;
  852.             rc_tol += headroom;
  853.             if( !rc->b_vbv_min_rate )
  854.                 i_qp_min = X264_MAX( i_qp_min, h->sh.i_qp );
  855.             while( rc->qpm < i_qp_max
  856.                    && (b1 > rc->frame_size_planned * rc_tol
  857.                     || (rc->buffer_fill - b1 < buffer_left_planned * 0.5)))
  858.             {
  859.                 rc->qpm ++;
  860.                 b1 = predict_row_size_sum( h, y, rc->qpm );
  861.             }
  862.             /* avoid VBV underflow */
  863.             while( (rc->qpm < h->param.rc.i_qp_max)
  864.                    && (rc->buffer_fill - b1 < rc->buffer_size * 0.005))
  865.             {
  866.                 rc->qpm ++;
  867.                 b1 = predict_row_size_sum( h, y, rc->qpm );
  868.             }
  869.             while( rc->qpm > i_qp_min
  870.                    && rc->qpm > h->fdec->i_row_qp[0]
  871.                    && ((b1 < rc->frame_size_planned * 0.8 && rc->qpm <= prev_row_qp)
  872.                      || b1 < (rc->buffer_fill - rc->buffer_size + rc->buffer_rate) * 1.1) )
  873.             {
  874.                 rc->qpm --;
  875.                 b1 = predict_row_size_sum( h, y, rc->qpm );
  876.             }
  877.             x264_ratecontrol_set_estimated_size(h, b1);
  878.         }
  879.     }
  880.     /* loses the fractional part of the frame-wise qp */
  881.     rc->f_qpm = rc->qpm;
  882. }
  883. int x264_ratecontrol_qp( x264_t *h )
  884. {
  885.     return h->rc->qpm;
  886. }
  887. /* In 2pass, force the same frame types as in the 1st pass */
  888. int x264_ratecontrol_slice_type( x264_t *h, int frame_num )
  889. {
  890.     x264_ratecontrol_t *rc = h->rc;
  891.     if( h->param.rc.b_stat_read )
  892.     {
  893.         if( frame_num >= rc->num_entries )
  894.         {
  895.             /* We could try to initialize everything required for ABR and
  896.              * adaptive B-frames, but that would be complicated.
  897.              * So just calculate the average QP used so far. */
  898.             h->param.rc.i_qp_constant = (h->stat.i_slice_count[SLICE_TYPE_P] == 0) ? 24
  899.                                       : 1 + h->stat.f_slice_qp[SLICE_TYPE_P] / h->stat.i_slice_count[SLICE_TYPE_P];
  900.             rc->qp_constant[SLICE_TYPE_P] = x264_clip3( h->param.rc.i_qp_constant, 0, 51 );
  901.             rc->qp_constant[SLICE_TYPE_I] = x264_clip3( (int)( qscale2qp( qp2qscale( h->param.rc.i_qp_constant ) / fabs( h->param.rc.f_ip_factor )) + 0.5 ), 0, 51 );
  902.             rc->qp_constant[SLICE_TYPE_B] = x264_clip3( (int)( qscale2qp( qp2qscale( h->param.rc.i_qp_constant ) * fabs( h->param.rc.f_pb_factor )) + 0.5 ), 0, 51 );
  903.             x264_log(h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d)n", rc->num_entries);
  904.             x264_log(h, X264_LOG_ERROR, "continuing anyway, at constant QP=%dn", h->param.rc.i_qp_constant);
  905.             if( h->param.b_bframe_adaptive )
  906.                 x264_log(h, X264_LOG_ERROR, "disabling adaptive B-framesn");
  907.             rc->b_abr = 0;
  908.             rc->b_2pass = 0;
  909.             h->param.rc.i_rc_method = X264_RC_CQP;
  910.             h->param.rc.b_stat_read = 0;
  911.             h->param.b_bframe_adaptive = 0;
  912.             if( h->param.i_bframe > 1 )
  913.                 h->param.i_bframe = 1;
  914.             return X264_TYPE_P;
  915.         }
  916.         switch( rc->entry[frame_num].pict_type )
  917.         {
  918.             case SLICE_TYPE_I:
  919.                 return rc->entry[frame_num].kept_as_ref ? X264_TYPE_IDR : X264_TYPE_I;
  920.             case SLICE_TYPE_B:
  921.                 return rc->entry[frame_num].kept_as_ref ? X264_TYPE_BREF : X264_TYPE_B;
  922.             case SLICE_TYPE_P:
  923.             default:
  924.                 return X264_TYPE_P;
  925.         }
  926.     }
  927.     else
  928.     {
  929.         return X264_TYPE_AUTO;
  930.     }
  931. }
  932. /* After encoding one frame, save stats and update ratecontrol state */
  933. void x264_ratecontrol_end( x264_t *h, int bits )
  934. {
  935.     x264_ratecontrol_t *rc = h->rc;
  936.     const int *mbs = h->stat.frame.i_mb_count;
  937.     int i;
  938.     x264_emms();
  939.     h->stat.frame.i_mb_count_skip = mbs[P_SKIP] + mbs[B_SKIP];
  940.     h->stat.frame.i_mb_count_i = mbs[I_16x16] + mbs[I_8x8] + mbs[I_4x4];
  941.     h->stat.frame.i_mb_count_p = mbs[P_L0] + mbs[P_8x8];
  942.     for( i = B_DIRECT; i < B_8x8; i++ )
  943.         h->stat.frame.i_mb_count_p += mbs[i];
  944.     h->fdec->f_qp_avg_rc = rc->qpa_rc /= h->mb.i_mb_count;
  945.     h->fdec->f_qp_avg_aq = rc->qpa_aq /= h->mb.i_mb_count;
  946.     if( h->param.rc.b_stat_write )
  947.     {
  948.         char c_type = h->sh.i_type==SLICE_TYPE_I ? (h->fenc->i_poc==0 ? 'I' : 'i')
  949.                     : h->sh.i_type==SLICE_TYPE_P ? 'P'
  950.                     : h->fenc->b_kept_as_ref ? 'B' : 'b';
  951.         int dir_frame = h->stat.frame.i_direct_score[1] - h->stat.frame.i_direct_score[0];
  952.         int dir_avg = h->stat.i_direct_score[1] - h->stat.i_direct_score[0];
  953.         char c_direct = h->mb.b_direct_auto_write ?
  954.                         ( dir_frame>0 ? 's' : dir_frame<0 ? 't' :
  955.                           dir_avg>0 ? 's' : dir_avg<0 ? 't' : '-' )
  956.                         : '-';
  957.         fprintf( rc->p_stat_file_out,
  958.                  "in:%d out:%d type:%c q:%.2f tex:%d mv:%d misc:%d imb:%d pmb:%d smb:%d d:%c;n",
  959.                  h->fenc->i_frame, h->i_frame,
  960.                  c_type, rc->qpa_rc,
  961.                  h->stat.frame.i_tex_bits,
  962.                  h->stat.frame.i_mv_bits,
  963.                  h->stat.frame.i_misc_bits,
  964.                  h->stat.frame.i_mb_count_i,
  965.                  h->stat.frame.i_mb_count_p,
  966.                  h->stat.frame.i_mb_count_skip,
  967.                  c_direct);
  968.     }
  969.     if( rc->b_abr )
  970.     {
  971.         if( h->sh.i_type != SLICE_TYPE_B )
  972.             rc->cplxr_sum += bits * qp2qscale(rc->qpa_rc) / rc->last_rceq;
  973.         else
  974.         {
  975.             /* Depends on the fact that B-frame's QP is an offset from the following P-frame's.
  976.              * Not perfectly accurate with B-refs, but good enough. */
  977.             rc->cplxr_sum += bits * qp2qscale(rc->qpa_rc) / (rc->last_rceq * fabs(h->param.rc.f_pb_factor));
  978.         }
  979.         rc->cplxr_sum *= rc->cbr_decay;
  980.         rc->wanted_bits_window += rc->bitrate / rc->fps;
  981.         rc->wanted_bits_window *= rc->cbr_decay;
  982.         if( h->param.i_threads == 1 )
  983.             accum_p_qp_update( h, rc->qpa_rc );
  984.     }
  985.     if( rc->b_2pass )
  986.     {
  987.         rc->expected_bits_sum += qscale2bits( rc->rce, qp2qscale(rc->rce->new_qp) );
  988.     }
  989.     if( h->mb.b_variable_qp )
  990.     {
  991.         if( h->sh.i_type == SLICE_TYPE_B )
  992.         {
  993.             rc->bframe_bits += bits;
  994.             if( !h->frames.current[0] || !IS_X264_TYPE_B(h->frames.current[0]->i_type) )
  995.             {
  996.                 update_predictor( rc->pred_b_from_p, qp2qscale(rc->qpa_rc),
  997.                                   h->fref1[h->i_ref1-1]->i_satd, rc->bframe_bits / rc->bframes );
  998.                 rc->bframe_bits = 0;
  999.             }
  1000.         }
  1001.     }
  1002.     update_vbv( h, bits );
  1003. }
  1004. /****************************************************************************
  1005.  * 2 pass functions
  1006.  ***************************************************************************/
  1007. /**
  1008.  * modify the bitrate curve from pass1 for one frame
  1009.  */
  1010. static double get_qscale(x264_t *h, ratecontrol_entry_t *rce, double rate_factor, int frame_num)
  1011. {
  1012.     x264_ratecontrol_t *rcc= h->rc;
  1013.     double q;
  1014.     x264_zone_t *zone = get_zone( h, frame_num );
  1015.     q = pow( rce->blurred_complexity, 1 - h->param.rc.f_qcompress );
  1016.     // avoid NaN's in the rc_eq
  1017.     if(!isfinite(q) || rce->tex_bits + rce->mv_bits == 0)
  1018.         q = rcc->last_qscale;
  1019.     else
  1020.     {
  1021.         rcc->last_rceq = q;
  1022.         q /= rate_factor;
  1023.         rcc->last_qscale = q;
  1024.     }
  1025.     if( zone )
  1026.     {
  1027.         if( zone->b_force_qp )
  1028.             q = qp2qscale(zone->i_qp);
  1029.         else
  1030.             q /= zone->f_bitrate_factor;
  1031.     }
  1032.     return q;
  1033. }
  1034. static double get_diff_limited_q(x264_t *h, ratecontrol_entry_t *rce, double q)
  1035. {
  1036.     x264_ratecontrol_t *rcc = h->rc;
  1037.     const int pict_type = rce->pict_type;
  1038.     // force I/B quants as a function of P quants
  1039.     const double last_p_q    = rcc->last_qscale_for[SLICE_TYPE_P];
  1040.     const double last_non_b_q= rcc->last_qscale_for[rcc->last_non_b_pict_type];
  1041.     if( pict_type == SLICE_TYPE_I )
  1042.     {
  1043.         double iq = q;
  1044.         double pq = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
  1045.         double ip_factor = fabs( h->param.rc.f_ip_factor );
  1046.         /* don't apply ip_factor if the following frame is also I */
  1047.         if( rcc->accum_p_norm <= 0 )
  1048.             q = iq;
  1049.         else if( h->param.rc.f_ip_factor < 0 )
  1050.             q = iq / ip_factor;
  1051.         else if( rcc->accum_p_norm >= 1 )
  1052.             q = pq / ip_factor;
  1053.         else
  1054.             q = rcc->accum_p_norm * pq / ip_factor + (1 - rcc->accum_p_norm) * iq;
  1055.     }
  1056.     else if( pict_type == SLICE_TYPE_B )
  1057.     {
  1058.         if( h->param.rc.f_pb_factor > 0 )
  1059.             q = last_non_b_q;
  1060.         if( !rce->kept_as_ref )
  1061.             q *= fabs( h->param.rc.f_pb_factor );
  1062.     }
  1063.     else if( pict_type == SLICE_TYPE_P
  1064.              && rcc->last_non_b_pict_type == SLICE_TYPE_P
  1065.              && rce->tex_bits == 0 )
  1066.     {
  1067.         q = last_p_q;
  1068.     }
  1069.     /* last qscale / qdiff stuff */
  1070.     if(rcc->last_non_b_pict_type==pict_type
  1071.        && (pict_type!=SLICE_TYPE_I || rcc->last_accum_p_norm < 1))
  1072.     {
  1073.         double last_q = rcc->last_qscale_for[pict_type];
  1074.         double max_qscale = last_q * rcc->lstep;
  1075.         double min_qscale = last_q / rcc->lstep;
  1076.         if     (q > max_qscale) q = max_qscale;
  1077.         else if(q < min_qscale) q = min_qscale;
  1078.     }
  1079.     rcc->last_qscale_for[pict_type] = q;
  1080.     if(pict_type!=SLICE_TYPE_B)
  1081.         rcc->last_non_b_pict_type = pict_type;
  1082.     if(pict_type==SLICE_TYPE_I)
  1083.     {
  1084.         rcc->last_accum_p_norm = rcc->accum_p_norm;
  1085.         rcc->accum_p_norm = 0;
  1086.         rcc->accum_p_qp = 0;
  1087.     }
  1088.     if(pict_type==SLICE_TYPE_P)
  1089.     {
  1090.         float mask = 1 - pow( (float)rce->i_count / rcc->nmb, 2 );
  1091.         rcc->accum_p_qp   = mask * (qscale2qp(q) + rcc->accum_p_qp);
  1092.         rcc->accum_p_norm = mask * (1 + rcc->accum_p_norm);
  1093.     }
  1094.     return q;
  1095. }
  1096. static double predict_size( predictor_t *p, double q, double var )
  1097. {
  1098.      return p->coeff*var / (q*p->count);
  1099. }
  1100. static void update_predictor( predictor_t *p, double q, double var, double bits )
  1101. {
  1102.     if( var < 10 )
  1103.         return;
  1104.     p->count *= p->decay;
  1105.     p->coeff *= p->decay;
  1106.     p->count ++;
  1107.     p->coeff += bits*q / var;
  1108. }
  1109. // update VBV after encoding a frame
  1110. static void update_vbv( x264_t *h, int bits )
  1111. {
  1112.     x264_ratecontrol_t *rcc = h->rc;
  1113.     x264_ratecontrol_t *rct = h->thread[0]->rc;
  1114.     if( rcc->last_satd >= h->mb.i_mb_count )
  1115.         update_predictor( &rct->pred[h->sh.i_type], qp2qscale(rcc->qpa_rc), rcc->last_satd, bits );
  1116.     if( !rcc->b_vbv )
  1117.         return;
  1118.     rct->buffer_fill_final += rct->buffer_rate - bits;
  1119.     if( rct->buffer_fill_final < 0 )
  1120.         x264_log( h, X264_LOG_WARNING, "VBV underflow (%.0f bits)n", rct->buffer_fill_final );
  1121.     rct->buffer_fill_final = x264_clip3f( rct->buffer_fill_final, 0, rct->buffer_size );
  1122. }
  1123. // provisionally update VBV according to the planned size of all frames currently in progress
  1124. static void update_vbv_plan( x264_t *h )
  1125. {
  1126.     x264_ratecontrol_t *rcc = h->rc;
  1127.     rcc->buffer_fill = h->thread[0]->rc->buffer_fill_final;
  1128.     if( h->param.i_threads > 1 )
  1129.     {
  1130.         int j = h->rc - h->thread[0]->rc;
  1131.         int i;
  1132.         for( i=1; i<h->param.i_threads; i++ )
  1133.         {
  1134.             x264_t *t = h->thread[ (j+i)%h->param.i_threads ];
  1135.             double bits = t->rc->frame_size_planned;
  1136.             if( !t->b_thread_active )
  1137.                 continue;
  1138.             bits  = X264_MAX(bits, x264_ratecontrol_get_estimated_size(t));
  1139.             rcc->buffer_fill += rcc->buffer_rate - bits;
  1140.             rcc->buffer_fill = x264_clip3( rcc->buffer_fill, 0, rcc->buffer_size );
  1141.         }
  1142.     }
  1143. }
  1144. // apply VBV constraints and clip qscale to between lmin and lmax
  1145. static double clip_qscale( x264_t *h, int pict_type, double q )
  1146. {
  1147.     x264_ratecontrol_t *rcc = h->rc;
  1148.     double lmin = rcc->lmin[pict_type];
  1149.     double lmax = rcc->lmax[pict_type];
  1150.     double q0 = q;
  1151.     /* B-frames are not directly subject to VBV,
  1152.      * since they are controlled by the P-frames' QPs.
  1153.      * FIXME: in 2pass we could modify previous frames' QP too,
  1154.      *        instead of waiting for the buffer to fill */
  1155.     if( rcc->b_vbv &&
  1156.         ( pict_type == SLICE_TYPE_P ||
  1157.           ( pict_type == SLICE_TYPE_I && rcc->last_non_b_pict_type == SLICE_TYPE_I ) ) )
  1158.     {
  1159.         if( rcc->buffer_fill/rcc->buffer_size < 0.5 )
  1160.             q /= x264_clip3f( 2.0*rcc->buffer_fill/rcc->buffer_size, 0.5, 1.0 );
  1161.     }
  1162.     if( rcc->b_vbv && rcc->last_satd > 0 )
  1163.     {
  1164.         /* Now a hard threshold to make sure the frame fits in VBV.
  1165.          * This one is mostly for I-frames. */
  1166.         double bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
  1167.         double qf = 1.0;
  1168.         if( bits > rcc->buffer_fill/2 )
  1169.             qf = x264_clip3f( rcc->buffer_fill/(2*bits), 0.2, 1.0 );
  1170.         q /= qf;
  1171.         bits *= qf;
  1172.         if( bits < rcc->buffer_rate/2 )
  1173.             q *= bits*2/rcc->buffer_rate;
  1174.         q = X264_MAX( q0, q );
  1175.         /* Check B-frame complexity, and use up any bits that would
  1176.          * overflow before the next P-frame. */
  1177.         if( h->sh.i_type == SLICE_TYPE_P )
  1178.         {
  1179.             int nb = rcc->bframes;
  1180.             double pbbits = bits;
  1181.             double bbits = predict_size( rcc->pred_b_from_p, q * h->param.rc.f_pb_factor, rcc->last_satd );
  1182.             double space;
  1183.             if( bbits > rcc->buffer_rate )
  1184.                 nb = 0;
  1185.             pbbits += nb * bbits;
  1186.             space = rcc->buffer_fill + (1+nb)*rcc->buffer_rate - rcc->buffer_size;
  1187.             if( pbbits < space )
  1188.             {
  1189.                 q *= X264_MAX( pbbits / space,
  1190.                                bits / (0.5 * rcc->buffer_size) );
  1191.             }
  1192.             q = X264_MAX( q0-5, q );
  1193.         }
  1194.         if( !rcc->b_vbv_min_rate )
  1195.             q = X264_MAX( q0, q );
  1196.     }
  1197.     if(lmin==lmax)
  1198.         return lmin;
  1199.     else if(rcc->b_2pass)
  1200.     {
  1201.         double min2 = log(lmin);
  1202.         double max2 = log(lmax);
  1203.         q = (log(q) - min2)/(max2-min2) - 0.5;
  1204.         q = 1.0/(1.0 + exp(-4*q));
  1205.         q = q*(max2-min2) + min2;
  1206.         return exp(q);
  1207.     }
  1208.     else
  1209.         return x264_clip3f(q, lmin, lmax);
  1210. }
  1211. // update qscale for 1 frame based on actual bits used so far
  1212. static float rate_estimate_qscale( x264_t *h )
  1213. {
  1214.     float q;
  1215.     x264_ratecontrol_t *rcc = h->rc;
  1216.     ratecontrol_entry_t rce;
  1217.     int pict_type = h->sh.i_type;
  1218.     double lmin = rcc->lmin[pict_type];
  1219.     double lmax = rcc->lmax[pict_type];
  1220.     int64_t total_bits = 8*(h->stat.i_slice_size[SLICE_TYPE_I]
  1221.                           + h->stat.i_slice_size[SLICE_TYPE_P]
  1222.                           + h->stat.i_slice_size[SLICE_TYPE_B]);
  1223.     if( rcc->b_2pass )
  1224.     {
  1225.         rce = *rcc->rce;
  1226.         if(pict_type != rce.pict_type)
  1227.         {
  1228.             x264_log(h, X264_LOG_ERROR, "slice=%c but 2pass stats say %cn",
  1229.                      slice_type_to_char[pict_type], slice_type_to_char[rce.pict_type]);
  1230.         }
  1231.     }
  1232.     if( pict_type == SLICE_TYPE_B )
  1233.     {
  1234.         /* B-frames don't have independent ratecontrol, but rather get the
  1235.          * average QP of the two adjacent P-frames + an offset */
  1236.         int i0 = IS_X264_TYPE_I(h->fref0[0]->i_type);
  1237.         int i1 = IS_X264_TYPE_I(h->fref1[0]->i_type);
  1238.         int dt0 = abs(h->fenc->i_poc - h->fref0[0]->i_poc);
  1239.         int dt1 = abs(h->fenc->i_poc - h->fref1[0]->i_poc);
  1240.         float q0 = h->fref0[0]->f_qp_avg_rc;
  1241.         float q1 = h->fref1[0]->f_qp_avg_rc;
  1242.         if( h->fref0[0]->i_type == X264_TYPE_BREF )
  1243.             q0 -= rcc->pb_offset/2;
  1244.         if( h->fref1[0]->i_type == X264_TYPE_BREF )
  1245.             q1 -= rcc->pb_offset/2;
  1246.         if(i0 && i1)
  1247.             q = (q0 + q1) / 2 + rcc->ip_offset;
  1248.         else if(i0)
  1249.             q = q1;
  1250.         else if(i1)
  1251.             q = q0;
  1252.         else
  1253.             q = (q0*dt1 + q1*dt0) / (dt0 + dt1);
  1254.         if(h->fenc->b_kept_as_ref)
  1255.             q += rcc->pb_offset/2;
  1256.         else
  1257.             q += rcc->pb_offset;
  1258.         rcc->frame_size_planned = predict_size( rcc->pred_b_from_p, q, h->fref1[h->i_ref1-1]->i_satd );
  1259.         x264_ratecontrol_set_estimated_size(h, rcc->frame_size_planned);
  1260.         rcc->last_satd = 0;
  1261.         return qp2qscale(q);
  1262.     }
  1263.     else
  1264.     {
  1265.         double abr_buffer = 2 * rcc->rate_tolerance * rcc->bitrate;
  1266.         if( rcc->b_2pass )
  1267.         {
  1268.             //FIXME adjust abr_buffer based on distance to the end of the video
  1269.             int64_t diff = total_bits - (int64_t)rce.expected_bits;
  1270.             q = rce.new_qscale;
  1271.             q /= x264_clip3f((double)(abr_buffer - diff) / abr_buffer, .5, 2);
  1272.             if( h->fenc->i_frame > 30 )
  1273.             {
  1274.                 /* Adjust quant based on the difference between
  1275.                  * achieved and expected bitrate so far */
  1276.                 double time = (double)h->fenc->i_frame / rcc->num_entries;
  1277.                 double w = x264_clip3f( time*100, 0.0, 1.0 );
  1278.                 q *= pow( (double)total_bits / rcc->expected_bits_sum, w );
  1279.             }
  1280.             if( rcc->b_vbv )
  1281.             {
  1282.                 double expected_size = qscale2bits(&rce, q);
  1283.                 double expected_vbv = rcc->buffer_fill + rcc->buffer_rate - expected_size;
  1284.                 double expected_fullness =  rce.expected_vbv / rcc->buffer_size;
  1285.                 double qmax = q*(2 - expected_fullness);
  1286.                 double size_constraint = 1 + expected_fullness;
  1287.                 if (expected_fullness < .05)
  1288.                     qmax = lmax;
  1289.                 qmax = X264_MIN(qmax, lmax);
  1290.                 while( (expected_vbv < rce.expected_vbv/size_constraint) && (q < qmax) )
  1291.                 {
  1292.                     q *= 1.05;
  1293.                     expected_size = qscale2bits(&rce, q);
  1294.                     expected_vbv = rcc->buffer_fill + rcc->buffer_rate - expected_size;
  1295.                 }
  1296.                 rcc->last_satd = x264_rc_analyse_slice( h );
  1297.             }
  1298.             q = x264_clip3f( q, lmin, lmax );
  1299.         }
  1300.         else /* 1pass ABR */
  1301.         {
  1302.             /* Calculate the quantizer which would have produced the desired
  1303.              * average bitrate if it had been applied to all frames so far.
  1304.              * Then modulate that quant based on the current frame's complexity
  1305.              * relative to the average complexity so far (using the 2pass RCEQ).
  1306.              * Then bias the quant up or down if total size so far was far from
  1307.              * the target.
  1308.              * Result: Depending on the value of rate_tolerance, there is a
  1309.              * tradeoff between quality and bitrate precision. But at large
  1310.              * tolerances, the bit distribution approaches that of 2pass. */
  1311.             double wanted_bits, overflow=1, lmin, lmax;
  1312.             rcc->last_satd = x264_rc_analyse_slice( h );
  1313.             rcc->short_term_cplxsum *= 0.5;
  1314.             rcc->short_term_cplxcount *= 0.5;
  1315.             rcc->short_term_cplxsum += rcc->last_satd;
  1316.             rcc->short_term_cplxcount ++;
  1317.             rce.tex_bits = rcc->last_satd;
  1318.             rce.blurred_complexity = rcc->short_term_cplxsum / rcc->short_term_cplxcount;
  1319.             rce.mv_bits = 0;
  1320.             rce.p_count = rcc->nmb;
  1321.             rce.i_count = 0;
  1322.             rce.s_count = 0;
  1323.             rce.qscale = 1;
  1324.             rce.pict_type = pict_type;
  1325.             if( h->param.rc.i_rc_method == X264_RC_CRF )
  1326.             {
  1327.                 q = get_qscale( h, &rce, rcc->rate_factor_constant, h->fenc->i_frame );
  1328.             }
  1329.             else
  1330.             {
  1331.                 int i_frame_done = h->fenc->i_frame + 1 - h->param.i_threads;
  1332.                 q = get_qscale( h, &rce, rcc->wanted_bits_window / rcc->cplxr_sum, h->fenc->i_frame );
  1333.                 // FIXME is it simpler to keep track of wanted_bits in ratecontrol_end?
  1334.                 wanted_bits = i_frame_done * rcc->bitrate / rcc->fps;
  1335.                 if( wanted_bits > 0 )
  1336.                 {
  1337.                     abr_buffer *= X264_MAX( 1, sqrt(i_frame_done/25) );
  1338.                     overflow = x264_clip3f( 1.0 + (total_bits - wanted_bits) / abr_buffer, .5, 2 );
  1339.                     q *= overflow;
  1340.                 }
  1341.             }
  1342.             if( pict_type == SLICE_TYPE_I && h->param.i_keyint_max > 1
  1343.                 /* should test _next_ pict type, but that isn't decided yet */
  1344.                 && rcc->last_non_b_pict_type != SLICE_TYPE_I )
  1345.             {
  1346.                 q = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
  1347.                 q /= fabs( h->param.rc.f_ip_factor );
  1348.             }
  1349.             else if( h->i_frame > 0 )
  1350.             {
  1351.                 /* Asymmetric clipping, because symmetric would prevent
  1352.                  * overflow control in areas of rapidly oscillating complexity */
  1353.                 lmin = rcc->last_qscale_for[pict_type] / rcc->lstep;
  1354.                 lmax = rcc->last_qscale_for[pict_type] * rcc->lstep;
  1355.                 if( overflow > 1.1 && h->i_frame > 3 )
  1356.                     lmax *= rcc->lstep;
  1357.                 else if( overflow < 0.9 )
  1358.                     lmin /= rcc->lstep;
  1359.                 q = x264_clip3f(q, lmin, lmax);
  1360.             }
  1361.             else if( h->param.rc.i_rc_method == X264_RC_CRF )
  1362.             {
  1363.                 q = qp2qscale( ABR_INIT_QP ) / fabs( h->param.rc.f_ip_factor );
  1364.             }
  1365.             //FIXME use get_diff_limited_q() ?
  1366.             q = clip_qscale( h, pict_type, q );
  1367.         }
  1368.         rcc->last_qscale_for[pict_type] =
  1369.         rcc->last_qscale = q;
  1370.         if( !(rcc->b_2pass && !rcc->b_vbv) && h->fenc->i_frame == 0 )
  1371.             rcc->last_qscale_for[SLICE_TYPE_P] = q;
  1372.         if( rcc->b_2pass && rcc->b_vbv)
  1373.             rcc->frame_size_planned = qscale2bits(&rce, q);
  1374.         else
  1375.             rcc->frame_size_planned = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
  1376.         x264_ratecontrol_set_estimated_size(h, rcc->frame_size_planned);
  1377.         return q;
  1378.     }
  1379. }
  1380. void x264_thread_sync_ratecontrol( x264_t *cur, x264_t *prev, x264_t *next )
  1381. {
  1382.     if( cur != prev )
  1383.     {
  1384. #define COPY(var) memcpy(&cur->rc->var, &prev->rc->var, sizeof(cur->rc->var))
  1385.         /* these vars are updated in x264_ratecontrol_start()
  1386.          * so copy them from the context that most recently started (prev)
  1387.          * to the context that's about to start (cur).
  1388.          */
  1389.         COPY(accum_p_qp);
  1390.         COPY(accum_p_norm);
  1391.         COPY(last_satd);
  1392.         COPY(last_rceq);
  1393.         COPY(last_qscale_for);
  1394.         COPY(last_non_b_pict_type);
  1395.         COPY(short_term_cplxsum);
  1396.         COPY(short_term_cplxcount);
  1397.         COPY(bframes);
  1398.         COPY(prev_zone);
  1399. #undef COPY
  1400.     }
  1401.     if( cur != next )
  1402.     {
  1403. #define COPY(var) next->rc->var = cur->rc->var
  1404.         /* these vars are updated in x264_ratecontrol_end()
  1405.          * so copy them from the context that most recently ended (cur)
  1406.          * to the context that's about to end (next)
  1407.          */
  1408.         COPY(cplxr_sum);
  1409.         COPY(expected_bits_sum);
  1410.         COPY(wanted_bits_window);
  1411.         COPY(bframe_bits);
  1412. #undef COPY
  1413.     }
  1414.     //FIXME row_preds[] (not strictly necessary, but would improve prediction)
  1415.     /* the rest of the variables are either constant or thread-local */
  1416. }
  1417. static int find_underflow( x264_t *h, double *fills, int *t0, int *t1, int over )
  1418. {
  1419.     /* find an interval ending on an overflow or underflow (depending on whether
  1420.      * we're adding or removing bits), and starting on the earliest frame that
  1421.      * can influence the buffer fill of that end frame. */
  1422.     x264_ratecontrol_t *rcc = h->rc;
  1423.     const double buffer_min = (over ? .1 : .1) * rcc->buffer_size;
  1424.     const double buffer_max = .9 * rcc->buffer_size;
  1425.     double fill = fills[*t0-1];
  1426.     double parity = over ? 1. : -1.;
  1427.     int i, start=-1, end=-1;
  1428.     for(i = *t0; i < rcc->num_entries; i++)
  1429.     {
  1430.         fill += (rcc->buffer_rate - qscale2bits(&rcc->entry[i], rcc->entry[i].new_qscale)) * parity;
  1431.         fill = x264_clip3f(fill, 0, rcc->buffer_size);
  1432.         fills[i] = fill;
  1433.         if(fill <= buffer_min || i == 0)
  1434.         {
  1435.             if(end >= 0)
  1436.                 break;
  1437.             start = i;
  1438.         }
  1439.         else if(fill >= buffer_max && start >= 0)
  1440.             end = i;
  1441.     }
  1442.     *t0 = start;
  1443.     *t1 = end;
  1444.     return start>=0 && end>=0;
  1445. }
  1446. static int fix_underflow( x264_t *h, int t0, int t1, double adjustment, double qscale_min, double qscale_max)
  1447. {
  1448.     x264_ratecontrol_t *rcc = h->rc;
  1449.     double qscale_orig, qscale_new;
  1450.     int i;
  1451.     int adjusted = 0;
  1452.     if(t0 > 0)
  1453.         t0++;
  1454.     for(i = t0; i <= t1; i++)
  1455.     {
  1456.         qscale_orig = rcc->entry[i].new_qscale;
  1457.         qscale_orig = x264_clip3f(qscale_orig, qscale_min, qscale_max);
  1458.         qscale_new  = qscale_orig * adjustment;
  1459.         qscale_new  = x264_clip3f(qscale_new, qscale_min, qscale_max);
  1460.         rcc->entry[i].new_qscale = qscale_new;
  1461.         adjusted = adjusted || (qscale_new != qscale_orig);
  1462.     }
  1463.     return adjusted;
  1464. }
  1465. static double count_expected_bits( x264_t *h )
  1466. {
  1467.     x264_ratecontrol_t *rcc = h->rc;
  1468.     double expected_bits = 0;
  1469.     int i;
  1470.     for(i = 0; i < rcc->num_entries; i++)
  1471.     {
  1472.         ratecontrol_entry_t *rce = &rcc->entry[i];
  1473.         rce->expected_bits = expected_bits;
  1474.         expected_bits += qscale2bits(rce, rce->new_qscale);
  1475.     }
  1476.     return expected_bits;
  1477. }
  1478. static void vbv_pass2( x264_t *h )
  1479. {
  1480.     /* for each interval of buffer_full .. underflow, uniformly increase the qp of all
  1481.      * frames in the interval until either buffer is full at some intermediate frame or the
  1482.      * last frame in the interval no longer underflows.  Recompute intervals and repeat.
  1483.      * Then do the converse to put bits back into overflow areas until target size is met */
  1484.     x264_ratecontrol_t *rcc = h->rc;
  1485.     double *fills = x264_malloc((rcc->num_entries+1)*sizeof(double));
  1486.     double all_available_bits = h->param.rc.i_bitrate * 1000. * rcc->num_entries / rcc->fps;
  1487.     double expected_bits = 0;
  1488.     double adjustment;
  1489.     double prev_bits = 0;
  1490.     int i, t0, t1;
  1491.     double qscale_min = qp2qscale(h->param.rc.i_qp_min);
  1492.     double qscale_max = qp2qscale(h->param.rc.i_qp_max);
  1493.     int iterations = 0;
  1494.     int adj_min, adj_max;
  1495.     fills++;
  1496.     /* adjust overall stream size */
  1497.     do
  1498.     {
  1499.         iterations++;
  1500.         prev_bits = expected_bits;
  1501.         if(expected_bits != 0)
  1502.         {   /* not first iteration */
  1503.             adjustment = X264_MAX(X264_MIN(expected_bits / all_available_bits, 0.999), 0.9);
  1504.             fills[-1] = rcc->buffer_size * h->param.rc.f_vbv_buffer_init;
  1505.             t0 = 0;
  1506.             /* fix overflows */
  1507.             adj_min = 1;
  1508.             while(adj_min && find_underflow(h, fills, &t0, &t1, 1))
  1509.             {
  1510.                 adj_min = fix_underflow(h, t0, t1, adjustment, qscale_min, qscale_max);
  1511.                 t0 = t1;
  1512.             }
  1513.         }
  1514.         fills[-1] = rcc->buffer_size * (1. - h->param.rc.f_vbv_buffer_init);
  1515.         t0 = 0;
  1516.         /* fix underflows -- should be done after overflow, as we'd better undersize target than underflowing VBV */
  1517.         adj_max = 1;
  1518.         while(adj_max && find_underflow(h, fills, &t0, &t1, 0))
  1519.             adj_max = fix_underflow(h, t0, t1, 1.001, qscale_min, qscale_max);
  1520.         expected_bits = count_expected_bits(h);
  1521.     } while(expected_bits < .995 * all_available_bits && expected_bits > prev_bits);
  1522.     if (!adj_max)
  1523.         x264_log( h, X264_LOG_WARNING, "vbv-maxrate issue, qpmax or vbv-maxrate too lown");
  1524.     /* store expected vbv filling values for tracking when encoding */
  1525.     for(i = 0; i < rcc->num_entries; i++)
  1526.         rcc->entry[i].expected_vbv = rcc->buffer_size - fills[i];
  1527.     x264_free(fills-1);
  1528. }
  1529. static int init_pass2( x264_t *h )
  1530. {
  1531.     x264_ratecontrol_t *rcc = h->rc;
  1532.     uint64_t all_const_bits = 0;
  1533.     uint64_t all_available_bits = (uint64_t)(h->param.rc.i_bitrate * 1000. * rcc->num_entries / rcc->fps);
  1534.     double rate_factor, step, step_mult;
  1535.     double qblur = h->param.rc.f_qblur;
  1536.     double cplxblur = h->param.rc.f_complexity_blur;
  1537.     const int filter_size = (int)(qblur*4) | 1;
  1538.     double expected_bits;
  1539.     double *qscale, *blurred_qscale;
  1540.     int i;
  1541.     /* find total/average complexity & const_bits */
  1542.     for(i=0; i<rcc->num_entries; i++)
  1543.     {
  1544.         ratecontrol_entry_t *rce = &rcc->entry[i];
  1545.         all_const_bits += rce->misc_bits;
  1546.     }
  1547.     if( all_available_bits < all_const_bits)
  1548.     {
  1549.         x264_log(h, X264_LOG_ERROR, "requested bitrate is too low. estimated minimum is %d kbpsn",
  1550.                  (int)(all_const_bits * rcc->fps / (rcc->num_entries * 1000.)));
  1551.         return -1;
  1552.     }
  1553.     /* Blur complexities, to reduce local fluctuation of QP.
  1554.      * We don't blur the QPs directly, because then one very simple frame
  1555.      * could drag down the QP of a nearby complex frame and give it more
  1556.      * bits than intended. */
  1557.     for(i=0; i<rcc->num_entries; i++)
  1558.     {
  1559.         ratecontrol_entry_t *rce = &rcc->entry[i];
  1560.         double weight_sum = 0;
  1561.         double cplx_sum = 0;
  1562.         double weight = 1.0;
  1563.         double gaussian_weight;
  1564.         int j;
  1565.         /* weighted average of cplx of future frames */
  1566.         for(j=1; j<cplxblur*2 && j<rcc->num_entries-i; j++)
  1567.         {
  1568.             ratecontrol_entry_t *rcj = &rcc->entry[i+j];
  1569.             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
  1570.             if(weight < .0001)
  1571.                 break;
  1572.             gaussian_weight = weight * exp(-j*j/200.0);
  1573.             weight_sum += gaussian_weight;
  1574.             cplx_sum += gaussian_weight * (qscale2bits(rcj, 1) - rcj->misc_bits);
  1575.         }
  1576.         /* weighted average of cplx of past frames */
  1577.         weight = 1.0;
  1578.         for(j=0; j<=cplxblur*2 && j<=i; j++)
  1579.         {
  1580.             ratecontrol_entry_t *rcj = &rcc->entry[i-j];
  1581.             gaussian_weight = weight * exp(-j*j/200.0);
  1582.             weight_sum += gaussian_weight;
  1583.             cplx_sum += gaussian_weight * (qscale2bits(rcj, 1) - rcj->misc_bits);
  1584.             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
  1585.             if(weight < .0001)
  1586.                 break;
  1587.         }
  1588.         rce->blurred_complexity = cplx_sum / weight_sum;
  1589.     }
  1590.     qscale = x264_malloc(sizeof(double)*rcc->num_entries);
  1591.     if(filter_size > 1)
  1592.         blurred_qscale = x264_malloc(sizeof(double)*rcc->num_entries);
  1593.     else
  1594.         blurred_qscale = qscale;
  1595.     /* Search for a factor which, when multiplied by the RCEQ values from
  1596.      * each frame, adds up to the desired total size.
  1597.      * There is no exact closed-form solution because of VBV constraints and
  1598.      * because qscale2bits is not invertible, but we can start with the simple
  1599.      * approximation of scaling the 1st pass by the ratio of bitrates.
  1600.      * The search range is probably overkill, but speed doesn't matter here. */
  1601.     expected_bits = 1;
  1602.     for(i=0; i<rcc->num_entries; i++)
  1603.         expected_bits += qscale2bits(&rcc->entry[i], get_qscale(h, &rcc->entry[i], 1.0, i));
  1604.     step_mult = all_available_bits / expected_bits;
  1605.     rate_factor = 0;
  1606.     for(step = 1E4 * step_mult; step > 1E-7 * step_mult; step *= 0.5)
  1607.     {
  1608.         expected_bits = 0;
  1609.         rate_factor += step;
  1610.         rcc->last_non_b_pict_type = -1;
  1611.         rcc->last_accum_p_norm = 1;
  1612.         rcc->accum_p_norm = 0;
  1613.         /* find qscale */
  1614.         for(i=0; i<rcc->num_entries; i++)
  1615.         {
  1616.             qscale[i] = get_qscale(h, &rcc->entry[i], rate_factor, i);
  1617.         }
  1618.         /* fixed I/B qscale relative to P */
  1619.         for(i=rcc->num_entries-1; i>=0; i--)
  1620.         {
  1621.             qscale[i] = get_diff_limited_q(h, &rcc->entry[i], qscale[i]);
  1622.             assert(qscale[i] >= 0);
  1623.         }
  1624.         /* smooth curve */
  1625.         if(filter_size > 1)
  1626.         {
  1627.             assert(filter_size%2==1);
  1628.             for(i=0; i<rcc->num_entries; i++)
  1629.             {
  1630.                 ratecontrol_entry_t *rce = &rcc->entry[i];
  1631.                 int j;
  1632.                 double q=0.0, sum=0.0;
  1633.                 for(j=0; j<filter_size; j++)
  1634.                 {
  1635.                     int index = i+j-filter_size/2;
  1636.                     double d = index-i;
  1637.                     double coeff = qblur==0 ? 1.0 : exp(-d*d/(qblur*qblur));
  1638.                     if(index < 0 || index >= rcc->num_entries)
  1639.                         continue;
  1640.                     if(rce->pict_type != rcc->entry[index].pict_type)
  1641.                         continue;
  1642.                     q += qscale[index] * coeff;
  1643.                     sum += coeff;
  1644.                 }
  1645.                 blurred_qscale[i] = q/sum;
  1646.             }
  1647.         }
  1648.         /* find expected bits */
  1649.         for(i=0; i<rcc->num_entries; i++)
  1650.         {
  1651.             ratecontrol_entry_t *rce = &rcc->entry[i];
  1652.             rce->new_qscale = clip_qscale(h, rce->pict_type, blurred_qscale[i]);
  1653.             assert(rce->new_qscale >= 0);
  1654.             expected_bits += qscale2bits(rce, rce->new_qscale);
  1655.         }
  1656.         if(expected_bits > all_available_bits) rate_factor -= step;
  1657.     }
  1658.     x264_free(qscale);
  1659.     if(filter_size > 1)
  1660.         x264_free(blurred_qscale);
  1661.     if(rcc->b_vbv)
  1662.         vbv_pass2(h);
  1663.     expected_bits = count_expected_bits(h);
  1664.     if(fabs(expected_bits/all_available_bits - 1.0) > 0.01)
  1665.     {
  1666.         double avgq = 0;
  1667.         for(i=0; i<rcc->num_entries; i++)
  1668.             avgq += rcc->entry[i].new_qscale;
  1669.         avgq = qscale2qp(avgq / rcc->num_entries);
  1670.         if ((expected_bits > all_available_bits) || (!rcc->b_vbv))
  1671.             x264_log(h, X264_LOG_WARNING, "Error: 2pass curve failed to convergen");
  1672.         x264_log(h, X264_LOG_WARNING, "target: %.2f kbit/s, expected: %.2f kbit/s, avg QP: %.4fn",
  1673.                  (float)h->param.rc.i_bitrate,
  1674.                  expected_bits * rcc->fps / (rcc->num_entries * 1000.),
  1675.                  avgq);
  1676.         if(expected_bits < all_available_bits && avgq < h->param.rc.i_qp_min + 2)
  1677.         {
  1678.             if(h->param.rc.i_qp_min > 0)
  1679.                 x264_log(h, X264_LOG_WARNING, "try reducing target bitrate or reducing qp_min (currently %d)n", h->param.rc.i_qp_min);
  1680.             else
  1681.                 x264_log(h, X264_LOG_WARNING, "try reducing target bitraten");
  1682.         }
  1683.         else if(expected_bits > all_available_bits && avgq > h->param.rc.i_qp_max - 2)
  1684.         {
  1685.             if(h->param.rc.i_qp_max < 51)
  1686.                 x264_log(h, X264_LOG_WARNING, "try increasing target bitrate or increasing qp_max (currently %d)n", h->param.rc.i_qp_max);
  1687.             else
  1688.                 x264_log(h, X264_LOG_WARNING, "try increasing target bitraten");
  1689.         }
  1690.         else if(!(rcc->b_2pass && rcc->b_vbv))
  1691.             x264_log(h, X264_LOG_WARNING, "internal errorn");
  1692.     }
  1693.     return 0;
  1694. }