ratecontrol.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:81k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

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 "common/common.h"
  30. #include "common/cpu.h"
  31. #include "ratecontrol.h"
  32. #include "me.h"
  33. typedef struct
  34. {
  35.     int pict_type;
  36.     int kept_as_ref;
  37.     float qscale;
  38.     int mv_bits;
  39.     int tex_bits;
  40.     int misc_bits;
  41.     uint64_t expected_bits; /*total expected bits up to the current frame (current one excluded)*/
  42.     double expected_vbv;
  43.     float new_qscale;
  44.     int new_qp;
  45.     int i_count;
  46.     int p_count;
  47.     int s_count;
  48.     float blurred_complexity;
  49.     char direct_mode;
  50.     int refcount[16];
  51.     int refs;
  52. } ratecontrol_entry_t;
  53. typedef struct
  54. {
  55.     double coeff;
  56.     double count;
  57.     double decay;
  58.     double offset;
  59. } predictor_t;
  60. struct x264_ratecontrol_t
  61. {
  62.     /* constants */
  63.     int b_abr;
  64.     int b_2pass;
  65.     int b_vbv;
  66.     int b_vbv_min_rate;
  67.     double fps;
  68.     double bitrate;
  69.     double rate_tolerance;
  70.     double qcompress;
  71.     int nmb;                    /* number of macroblocks in a frame */
  72.     int qp_constant[5];
  73.     /* current frame */
  74.     ratecontrol_entry_t *rce;
  75.     int qp;                     /* qp for current frame */
  76.     int qpm;                    /* qp for current macroblock */
  77.     float f_qpm;                /* qp for current macroblock: precise float for AQ */
  78.     float qpa_rc;               /* average of macroblocks' qp before aq */
  79.     float qpa_aq;               /* average of macroblocks' qp after aq */
  80.     float qp_novbv;             /* QP for the current frame if 1-pass VBV was disabled. */
  81.     int qp_force;
  82.     /* VBV stuff */
  83.     double buffer_size;
  84.     double buffer_fill_final;   /* real buffer as of the last finished frame */
  85.     double buffer_fill;         /* planned buffer, if all in-progress frames hit their bit budget */
  86.     double buffer_rate;         /* # of bits added to buffer_fill after each frame */
  87.     predictor_t *pred;          /* predict frame size from satd */
  88.     int single_frame_vbv;
  89.     /* ABR stuff */
  90.     int    last_satd;
  91.     double last_rceq;
  92.     double cplxr_sum;           /* sum of bits*qscale/rceq */
  93.     double expected_bits_sum;   /* sum of qscale2bits after rceq, ratefactor, and overflow, only includes finished frames */
  94.     double wanted_bits_window;  /* target bitrate * window */
  95.     double cbr_decay;
  96.     double short_term_cplxsum;
  97.     double short_term_cplxcount;
  98.     double rate_factor_constant;
  99.     double ip_offset;
  100.     double pb_offset;
  101.     /* 2pass stuff */
  102.     FILE *p_stat_file_out;
  103.     char *psz_stat_file_tmpname;
  104.     FILE *p_mbtree_stat_file_out;
  105.     char *psz_mbtree_stat_file_tmpname;
  106.     char *psz_mbtree_stat_file_name;
  107.     FILE *p_mbtree_stat_file_in;
  108.     int num_entries;            /* number of ratecontrol_entry_ts */
  109.     ratecontrol_entry_t *entry; /* FIXME: copy needed data and free this once init is done */
  110.     double last_qscale;
  111.     double last_qscale_for[5];  /* last qscale for a specific pict type, used for max_diff & ipb factor stuff  */
  112.     int last_non_b_pict_type;
  113.     double accum_p_qp;          /* for determining I-frame quant */
  114.     double accum_p_norm;
  115.     double last_accum_p_norm;
  116.     double lmin[5];             /* min qscale by frame type */
  117.     double lmax[5];
  118.     double lstep;               /* max change (multiply) in qscale per frame */
  119.     uint16_t *qp_buffer; /* Global buffer for converting MB-tree quantizer data. */
  120.     /* MBRC stuff */
  121.     double frame_size_estimated;
  122.     double frame_size_planned;
  123.     predictor_t (*row_pred)[2];
  124.     predictor_t row_preds[5][2];
  125.     predictor_t *pred_b_from_p; /* predict B-frame size from P-frame satd */
  126.     int bframes;                /* # consecutive B-frames before this P-frame */
  127.     int bframe_bits;            /* total cost of those frames */
  128.     int i_zones;
  129.     x264_zone_t *zones;
  130.     x264_zone_t *prev_zone;
  131. };
  132. static int parse_zones( x264_t *h );
  133. static int init_pass2(x264_t *);
  134. static float rate_estimate_qscale( x264_t *h );
  135. static void update_vbv( x264_t *h, int bits );
  136. static void update_vbv_plan( x264_t *h, int overhead );
  137. static double predict_size( predictor_t *p, double q, double var );
  138. static void update_predictor( predictor_t *p, double q, double var, double bits );
  139. /* Terminology:
  140.  * qp = h.264's quantizer
  141.  * qscale = linearized quantizer = Lagrange multiplier
  142.  */
  143. static inline double qp2qscale(double qp)
  144. {
  145.     return 0.85 * pow(2.0, ( qp - 12.0 ) / 6.0);
  146. }
  147. static inline double qscale2qp(double qscale)
  148. {
  149.     return 12.0 + 6.0 * log(qscale/0.85) / log(2.0);
  150. }
  151. /* Texture bitrate is not quite inversely proportional to qscale,
  152.  * probably due the the changing number of SKIP blocks.
  153.  * MV bits level off at about qp<=12, because the lambda used
  154.  * for motion estimation is constant there. */
  155. static inline double qscale2bits(ratecontrol_entry_t *rce, double qscale)
  156. {
  157.     if(qscale<0.1)
  158.         qscale = 0.1;
  159.     return (rce->tex_bits + .1) * pow( rce->qscale / qscale, 1.1 )
  160.            + rce->mv_bits * pow( X264_MAX(rce->qscale, 1) / X264_MAX(qscale, 1), 0.5 )
  161.            + rce->misc_bits;
  162. }
  163. // Find the total AC energy of the block in all planes.
  164. static NOINLINE uint32_t ac_energy_mb( x264_t *h, int mb_x, int mb_y, x264_frame_t *frame )
  165. {
  166.     /* This function contains annoying hacks because GCC has a habit of reordering emms
  167.      * and putting it after floating point ops.  As a result, we put the emms at the end of the
  168.      * function and make sure that its always called before the float math.  Noinline makes
  169.      * sure no reordering goes on. */
  170.     uint32_t var = 0, i;
  171.     for( i = 0; i < 3; i++ )
  172.     {
  173.         int w = i ? 8 : 16;
  174.         int stride = frame->i_stride[i];
  175.         int offset = h->mb.b_interlaced
  176.             ? w * (mb_x + (mb_y&~1) * stride) + (mb_y&1) * stride
  177.             : w * (mb_x + mb_y * stride);
  178.         int pix = i ? PIXEL_8x8 : PIXEL_16x16;
  179.         stride <<= h->mb.b_interlaced;
  180.         var += h->pixf.var[pix]( frame->plane[i]+offset, stride );
  181.     }
  182.     x264_emms();
  183.     return var;
  184. }
  185. void x264_adaptive_quant_frame( x264_t *h, x264_frame_t *frame )
  186. {
  187.     /* constants chosen to result in approximately the same overall bitrate as without AQ.
  188.      * FIXME: while they're written in 5 significant digits, they're only tuned to 2. */
  189.     int mb_x, mb_y;
  190.     float strength;
  191.     float avg_adj = 0.f;
  192.     /* Need to init it anyways for MB tree. */
  193.     if( h->param.rc.f_aq_strength == 0 )
  194.     {
  195.         int mb_xy;
  196.         memset( frame->f_qp_offset, 0, h->mb.i_mb_count * sizeof(float) );
  197.         memset( frame->f_qp_offset_aq, 0, h->mb.i_mb_count * sizeof(float) );
  198.         if( h->frames.b_have_lowres )
  199.             for( mb_xy = 0; mb_xy < h->mb.i_mb_count; mb_xy++ )
  200.                 frame->i_inv_qscale_factor[mb_xy] = 256;
  201.         return;
  202.     }
  203.     if( h->param.rc.i_aq_mode == X264_AQ_AUTOVARIANCE )
  204.     {
  205.         for( mb_y = 0; mb_y < h->sps->i_mb_height; mb_y++ )
  206.             for( mb_x = 0; mb_x < h->sps->i_mb_width; mb_x++ )
  207.             {
  208.                 uint32_t energy = ac_energy_mb( h, mb_x, mb_y, frame );
  209.                 float qp_adj = x264_log2( energy + 2 );
  210.                 qp_adj *= qp_adj;
  211.                 frame->f_qp_offset[mb_x + mb_y*h->mb.i_mb_stride] = qp_adj;
  212.                 avg_adj += qp_adj;
  213.             }
  214.         avg_adj /= h->mb.i_mb_count;
  215.         strength = h->param.rc.f_aq_strength * avg_adj * (1.f / 6000.f);
  216.     }
  217.     else
  218.         strength = h->param.rc.f_aq_strength * 1.0397f;
  219.     for( mb_y = 0; mb_y < h->sps->i_mb_height; mb_y++ )
  220.         for( mb_x = 0; mb_x < h->sps->i_mb_width; mb_x++ )
  221.         {
  222.             float qp_adj;
  223.             if( h->param.rc.i_aq_mode == X264_AQ_AUTOVARIANCE )
  224.             {
  225.                 qp_adj = frame->f_qp_offset[mb_x + mb_y*h->mb.i_mb_stride];
  226.                 qp_adj = strength * (qp_adj - avg_adj);
  227.             }
  228.             else
  229.             {
  230.                 uint32_t energy = ac_energy_mb( h, mb_x, mb_y, frame );
  231.                 qp_adj = strength * (x264_log2( X264_MAX(energy, 1) ) - 14.427f);
  232.             }
  233.             frame->f_qp_offset[mb_x + mb_y*h->mb.i_mb_stride] =
  234.             frame->f_qp_offset_aq[mb_x + mb_y*h->mb.i_mb_stride] = qp_adj;
  235.             if( h->frames.b_have_lowres )
  236.                 frame->i_inv_qscale_factor[mb_x + mb_y*h->mb.i_mb_stride] = x264_exp2fix8(qp_adj);
  237.         }
  238. }
  239. /*****************************************************************************
  240. * x264_adaptive_quant:
  241.  * adjust macroblock QP based on variance (AC energy) of the MB.
  242.  * high variance  = higher QP
  243.  * low variance = lower QP
  244.  * This generally increases SSIM and lowers PSNR.
  245. *****************************************************************************/
  246. void x264_adaptive_quant( x264_t *h )
  247. {
  248.     x264_emms();
  249.     h->mb.i_qp = x264_clip3( h->rc->f_qpm + h->fenc->f_qp_offset[h->mb.i_mb_xy] + .5, h->param.rc.i_qp_min, h->param.rc.i_qp_max );
  250. }
  251. int x264_macroblock_tree_read( x264_t *h, x264_frame_t *frame )
  252. {
  253.     x264_ratecontrol_t *rc = h->rc;
  254.     uint8_t i_type_actual = rc->entry[frame->i_frame].pict_type;
  255.     int i;
  256.     if( i_type_actual != SLICE_TYPE_B )
  257.     {
  258.         uint8_t i_type;
  259.         if( !fread( &i_type, 1, 1, rc->p_mbtree_stat_file_in ) )
  260.             goto fail;
  261.         if( i_type != i_type_actual )
  262.         {
  263.             x264_log(h, X264_LOG_ERROR, "MB-tree frametype %d doesn't match actual frametype %d.n", i_type,i_type_actual);
  264.             return -1;
  265.         }
  266.         if( fread( rc->qp_buffer, sizeof(uint16_t), h->mb.i_mb_count, rc->p_mbtree_stat_file_in ) != h->mb.i_mb_count )
  267.             goto fail;
  268.         for( i = 0; i < h->mb.i_mb_count; i++ )
  269.             frame->f_qp_offset[i] = ((float)(int16_t)endian_fix16( rc->qp_buffer[i] )) * (1/256.0);
  270.     }
  271.     else
  272.         x264_adaptive_quant_frame( h, frame );
  273.     return 0;
  274. fail:
  275.     x264_log(h, X264_LOG_ERROR, "Incomplete MB-tree stats file.n");
  276.     return -1;
  277. }
  278. int x264_reference_build_list_optimal( x264_t *h )
  279. {
  280.     ratecontrol_entry_t *rce = h->rc->rce;
  281.     x264_frame_t *frames[16];
  282.     int ref, i;
  283.     if( rce->refs != h->i_ref0 )
  284.         return -1;
  285.     memcpy( frames, h->fref0, sizeof(frames) );
  286.     /* For now don't reorder ref 0; it seems to lower quality
  287.        in most cases due to skips. */
  288.     for( ref = 1; ref < h->i_ref0; ref++ )
  289.     {
  290.         int max = -1;
  291.         int bestref = 1;
  292.         for( i = 1; i < h->i_ref0; i++ )
  293.             /* Favor lower POC as a tiebreaker. */
  294.             COPY2_IF_GT( max, rce->refcount[i], bestref, i );
  295.         rce->refcount[bestref] = -1;
  296.         h->fref0[ref] = frames[bestref];
  297.     }
  298.     return 0;
  299. }
  300. static char *x264_strcat_filename( char *input, char *suffix )
  301. {
  302.     char *output = x264_malloc( strlen( input ) + strlen( suffix ) + 1 );
  303.     if( !output )
  304.         return NULL;
  305.     strcpy( output, input );
  306.     strcat( output, suffix );
  307.     return output;
  308. }
  309. int x264_ratecontrol_new( x264_t *h )
  310. {
  311.     x264_ratecontrol_t *rc;
  312.     int i, j;
  313.     x264_emms();
  314.     CHECKED_MALLOCZERO( h->rc, h->param.i_threads * sizeof(x264_ratecontrol_t) );
  315.     rc = h->rc;
  316.     rc->b_abr = h->param.rc.i_rc_method != X264_RC_CQP && !h->param.rc.b_stat_read;
  317.     rc->b_2pass = h->param.rc.i_rc_method == X264_RC_ABR && h->param.rc.b_stat_read;
  318.     /* FIXME: use integers */
  319.     if(h->param.i_fps_num > 0 && h->param.i_fps_den > 0)
  320.         rc->fps = (float) h->param.i_fps_num / h->param.i_fps_den;
  321.     else
  322.         rc->fps = 25.0;
  323.     if( h->param.rc.b_mb_tree )
  324.     {
  325.         h->param.rc.f_pb_factor = 1;
  326.         rc->qcompress = 1;
  327.     }
  328.     else
  329.         rc->qcompress = h->param.rc.f_qcompress;
  330.     rc->bitrate = h->param.rc.i_bitrate * 1000.;
  331.     rc->rate_tolerance = h->param.rc.f_rate_tolerance;
  332.     rc->nmb = h->mb.i_mb_count;
  333.     rc->last_non_b_pict_type = -1;
  334.     rc->cbr_decay = 1.0;
  335.     if( h->param.rc.i_rc_method == X264_RC_CRF && h->param.rc.b_stat_read )
  336.     {
  337.         x264_log(h, X264_LOG_ERROR, "constant rate-factor is incompatible with 2pass.n");
  338.         return -1;
  339.     }
  340.     if( h->param.rc.i_vbv_buffer_size )
  341.     {
  342.         if( h->param.rc.i_rc_method == X264_RC_CQP )
  343.         {
  344.             x264_log(h, X264_LOG_WARNING, "VBV is incompatible with constant QP, ignored.n");
  345.             h->param.rc.i_vbv_max_bitrate = 0;
  346.             h->param.rc.i_vbv_buffer_size = 0;
  347.         }
  348.         else if( h->param.rc.i_vbv_max_bitrate == 0 )
  349.         {
  350.             x264_log( h, X264_LOG_DEBUG, "VBV maxrate unspecified, assuming CBRn" );
  351.             h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate;
  352.         }
  353.     }
  354.     if( h->param.rc.i_vbv_max_bitrate < h->param.rc.i_bitrate &&
  355.         h->param.rc.i_vbv_max_bitrate > 0)
  356.         x264_log(h, X264_LOG_WARNING, "max bitrate less than average bitrate, ignored.n");
  357.     else if( h->param.rc.i_vbv_max_bitrate > 0 &&
  358.              h->param.rc.i_vbv_buffer_size > 0 )
  359.     {
  360.         if( h->param.rc.i_vbv_buffer_size < (int)(h->param.rc.i_vbv_max_bitrate / rc->fps) )
  361.         {
  362.             h->param.rc.i_vbv_buffer_size = h->param.rc.i_vbv_max_bitrate / rc->fps;
  363.             x264_log( h, X264_LOG_WARNING, "VBV buffer size cannot be smaller than one frame, using %d kbitn",
  364.                       h->param.rc.i_vbv_buffer_size );
  365.         }
  366.         if( h->param.rc.f_vbv_buffer_init > 1. )
  367.             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 );
  368.         rc->buffer_rate = h->param.rc.i_vbv_max_bitrate * 1000. / rc->fps;
  369.         rc->buffer_size = h->param.rc.i_vbv_buffer_size * 1000.;
  370.         rc->single_frame_vbv = rc->buffer_rate * 1.1 > rc->buffer_size;
  371.         h->param.rc.f_vbv_buffer_init = X264_MAX( h->param.rc.f_vbv_buffer_init, rc->buffer_rate / rc->buffer_size );
  372.         rc->buffer_fill_final = rc->buffer_size * h->param.rc.f_vbv_buffer_init;
  373.         rc->cbr_decay = 1.0 - rc->buffer_rate / rc->buffer_size
  374.                       * 0.5 * X264_MAX(0, 1.5 - rc->buffer_rate * rc->fps / rc->bitrate);
  375.         rc->b_vbv = 1;
  376.         rc->b_vbv_min_rate = !rc->b_2pass
  377.                           && h->param.rc.i_rc_method == X264_RC_ABR
  378.                           && h->param.rc.i_vbv_max_bitrate <= h->param.rc.i_bitrate;
  379.     }
  380.     else if( h->param.rc.i_vbv_max_bitrate )
  381.     {
  382.         x264_log(h, X264_LOG_WARNING, "VBV maxrate specified, but no bufsize.n");
  383.         h->param.rc.i_vbv_max_bitrate = 0;
  384.     }
  385.     if(rc->rate_tolerance < 0.01)
  386.     {
  387.         x264_log(h, X264_LOG_WARNING, "bitrate tolerance too small, using .01n");
  388.         rc->rate_tolerance = 0.01;
  389.     }
  390.     h->mb.b_variable_qp = rc->b_vbv || h->param.rc.i_aq_mode;
  391.     if( rc->b_abr )
  392.     {
  393.         /* FIXME ABR_INIT_QP is actually used only in CRF */
  394. #define ABR_INIT_QP ( h->param.rc.i_rc_method == X264_RC_CRF ? h->param.rc.f_rf_constant : 24 )
  395.         rc->accum_p_norm = .01;
  396.         rc->accum_p_qp = ABR_INIT_QP * rc->accum_p_norm;
  397.         /* estimated ratio that produces a reasonable QP for the first I-frame */
  398.         rc->cplxr_sum = .01 * pow( 7.0e5, rc->qcompress ) * pow( h->mb.i_mb_count, 0.5 );
  399.         rc->wanted_bits_window = 1.0 * rc->bitrate / rc->fps;
  400.         rc->last_non_b_pict_type = SLICE_TYPE_I;
  401.     }
  402.     if( h->param.rc.i_rc_method == X264_RC_CRF )
  403.     {
  404.         /* Arbitrary rescaling to make CRF somewhat similar to QP.
  405.          * Try to compensate for MB-tree's effects as well. */
  406.         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
  407.         double mbtree_offset = h->param.rc.b_mb_tree ? (1.0-h->param.rc.f_qcompress)*13.5 : 0;
  408.         rc->rate_factor_constant = pow( base_cplx, 1 - rc->qcompress )
  409.                                  / qp2qscale( h->param.rc.f_rf_constant + mbtree_offset );
  410.     }
  411.     rc->ip_offset = 6.0 * log(h->param.rc.f_ip_factor) / log(2.0);
  412.     rc->pb_offset = 6.0 * log(h->param.rc.f_pb_factor) / log(2.0);
  413.     rc->qp_constant[SLICE_TYPE_P] = h->param.rc.i_qp_constant;
  414.     rc->qp_constant[SLICE_TYPE_I] = x264_clip3( h->param.rc.i_qp_constant - rc->ip_offset + 0.5, 0, 51 );
  415.     rc->qp_constant[SLICE_TYPE_B] = x264_clip3( h->param.rc.i_qp_constant + rc->pb_offset + 0.5, 0, 51 );
  416.     rc->lstep = pow( 2, h->param.rc.i_qp_step / 6.0 );
  417.     rc->last_qscale = qp2qscale(26);
  418.     CHECKED_MALLOC( rc->pred, 5*sizeof(predictor_t) );
  419.     CHECKED_MALLOC( rc->pred_b_from_p, sizeof(predictor_t) );
  420.     for( i = 0; i < 5; i++ )
  421.     {
  422.         rc->last_qscale_for[i] = qp2qscale( ABR_INIT_QP );
  423.         rc->lmin[i] = qp2qscale( h->param.rc.i_qp_min );
  424.         rc->lmax[i] = qp2qscale( h->param.rc.i_qp_max );
  425.         rc->pred[i].coeff= 2.0;
  426.         rc->pred[i].count= 1.0;
  427.         rc->pred[i].decay= 0.5;
  428.         rc->pred[i].offset= 0.0;
  429.         for( j = 0; j < 2; j++ )
  430.         {
  431.             rc->row_preds[i][j].coeff= .25;
  432.             rc->row_preds[i][j].count= 1.0;
  433.             rc->row_preds[i][j].decay= 0.5;
  434.             rc->row_preds[i][j].offset= 0.0;
  435.         }
  436.     }
  437.     *rc->pred_b_from_p = rc->pred[0];
  438.     if( parse_zones( h ) < 0 )
  439.     {
  440.         x264_log( h, X264_LOG_ERROR, "failed to parse zonesn" );
  441.         return -1;
  442.     }
  443.     /* Load stat file and init 2pass algo */
  444.     if( h->param.rc.b_stat_read )
  445.     {
  446.         char *p, *stats_in, *stats_buf;
  447.         /* read 1st pass stats */
  448.         assert( h->param.rc.psz_stat_in );
  449.         stats_buf = stats_in = x264_slurp_file( h->param.rc.psz_stat_in );
  450.         if( !stats_buf )
  451.         {
  452.             x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open stats filen");
  453.             return -1;
  454.         }
  455.         if( h->param.rc.b_mb_tree )
  456.         {
  457.             char *mbtree_stats_in = x264_strcat_filename( h->param.rc.psz_stat_in, ".mbtree" );
  458.             if( !mbtree_stats_in )
  459.                 return -1;
  460.             rc->p_mbtree_stat_file_in = fopen( mbtree_stats_in, "rb" );
  461.             x264_free( mbtree_stats_in );
  462.             if( !rc->p_mbtree_stat_file_in )
  463.             {
  464.                 x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open mbtree stats filen");
  465.                 return -1;
  466.             }
  467.         }
  468.         /* check whether 1st pass options were compatible with current options */
  469.         if( !strncmp( stats_buf, "#options:", 9 ) )
  470.         {
  471.             int i;
  472.             char *opts = stats_buf;
  473.             stats_in = strchr( stats_buf, 'n' );
  474.             if( !stats_in )
  475.                 return -1;
  476.             *stats_in = '';
  477.             stats_in++;
  478.             if( ( p = strstr( opts, "bframes=" ) ) && sscanf( p, "bframes=%d", &i )
  479.                 && h->param.i_bframe != i )
  480.             {
  481.                 x264_log( h, X264_LOG_ERROR, "different number of B-frames than 1st pass (%d vs %d)n",
  482.                           h->param.i_bframe, i );
  483.                 return -1;
  484.             }
  485.             /* since B-adapt doesn't (yet) take into account B-pyramid,
  486.              * the converse is not a problem */
  487.             if( strstr( opts, "b_pyramid=1" ) && !h->param.b_bframe_pyramid )
  488.                 x264_log( h, X264_LOG_WARNING, "1st pass used B-pyramid, 2nd doesn'tn" );
  489.             if( ( p = strstr( opts, "keyint=" ) ) && sscanf( p, "keyint=%d", &i )
  490.                 && h->param.i_keyint_max != i )
  491.                 x264_log( h, X264_LOG_WARNING, "different keyint than 1st pass (%d vs %d)n",
  492.                           h->param.i_keyint_max, i );
  493.             if( strstr( opts, "qp=0" ) && h->param.rc.i_rc_method == X264_RC_ABR )
  494.                 x264_log( h, X264_LOG_WARNING, "1st pass was lossless, bitrate prediction will be inaccuraten" );
  495.             if( !strstr( opts, "direct=3" ) && h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO )
  496.             {
  497.                 x264_log( h, X264_LOG_WARNING, "direct=auto not used on the first passn" );
  498.                 h->mb.b_direct_auto_write = 1;
  499.             }
  500.             if( ( p = strstr( opts, "b_adapt=" ) ) && sscanf( p, "b_adapt=%d", &i ) && i >= X264_B_ADAPT_NONE && i <= X264_B_ADAPT_TRELLIS )
  501.                 h->param.i_bframe_adaptive = i;
  502.             else if( h->param.i_bframe )
  503.             {
  504.                 x264_log( h, X264_LOG_ERROR, "b_adapt method specified in stats file not validn" );
  505.                 return -1;
  506.             }
  507.             if( h->param.rc.b_mb_tree && ( p = strstr( opts, "rc_lookahead=" ) ) && sscanf( p, "rc_lookahead=%d", &i ) )
  508.                 h->param.rc.i_lookahead = i;
  509.         }
  510.         /* find number of pics */
  511.         p = stats_in;
  512.         for(i=-1; p; i++)
  513.             p = strchr(p+1, ';');
  514.         if(i==0)
  515.         {
  516.             x264_log(h, X264_LOG_ERROR, "empty stats filen");
  517.             return -1;
  518.         }
  519.         rc->num_entries = i;
  520.         if( h->param.i_frame_total < rc->num_entries && h->param.i_frame_total > 0 )
  521.         {
  522.             x264_log( h, X264_LOG_WARNING, "2nd pass has fewer frames than 1st pass (%d vs %d)n",
  523.                       h->param.i_frame_total, rc->num_entries );
  524.         }
  525.         if( h->param.i_frame_total > rc->num_entries )
  526.         {
  527.             x264_log( h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d vs %d)n",
  528.                       h->param.i_frame_total, rc->num_entries );
  529.             return -1;
  530.         }
  531.         CHECKED_MALLOCZERO( rc->entry, rc->num_entries * sizeof(ratecontrol_entry_t) );
  532.         /* init all to skipped p frames */
  533.         for(i=0; i<rc->num_entries; i++)
  534.         {
  535.             ratecontrol_entry_t *rce = &rc->entry[i];
  536.             rce->pict_type = SLICE_TYPE_P;
  537.             rce->qscale = rce->new_qscale = qp2qscale(20);
  538.             rce->misc_bits = rc->nmb + 10;
  539.             rce->new_qp = 0;
  540.         }
  541.         /* read stats */
  542.         p = stats_in;
  543.         for(i=0; i < rc->num_entries; i++)
  544.         {
  545.             ratecontrol_entry_t *rce;
  546.             int frame_number;
  547.             char pict_type;
  548.             int e;
  549.             char *next;
  550.             float qp;
  551.             int ref;
  552.             next= strchr(p, ';');
  553.             if(next)
  554.             {
  555.                 (*next)=0; //sscanf is unbelievably slow on long strings
  556.                 next++;
  557.             }
  558.             e = sscanf(p, " in:%d ", &frame_number);
  559.             if(frame_number < 0 || frame_number >= rc->num_entries)
  560.             {
  561.                 x264_log(h, X264_LOG_ERROR, "bad frame number (%d) at stats line %dn", frame_number, i);
  562.                 return -1;
  563.             }
  564.             rce = &rc->entry[frame_number];
  565.             rce->direct_mode = 0;
  566.             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",
  567.                    &pict_type, &qp, &rce->tex_bits,
  568.                    &rce->mv_bits, &rce->misc_bits, &rce->i_count, &rce->p_count,
  569.                    &rce->s_count, &rce->direct_mode);
  570.             p = strstr( p, "ref:" );
  571.             if( !p )
  572.                 goto parse_error;
  573.             p += 4;
  574.             for( ref = 0; ref < 16; ref++ )
  575.             {
  576.                 if( sscanf( p, " %d", &rce->refcount[ref] ) != 1 )
  577.                     break;
  578.                 p = strchr( p+1, ' ' );
  579.                 if( !p )
  580.                     goto parse_error;
  581.             }
  582.             rce->refs = ref;
  583.             switch(pict_type)
  584.             {
  585.                 case 'I': rce->kept_as_ref = 1;
  586.                 case 'i': rce->pict_type = SLICE_TYPE_I; break;
  587.                 case 'P': rce->pict_type = SLICE_TYPE_P; break;
  588.                 case 'B': rce->kept_as_ref = 1;
  589.                 case 'b': rce->pict_type = SLICE_TYPE_B; break;
  590.                 default:  e = -1; break;
  591.             }
  592.             if(e < 10)
  593.             {
  594. parse_error:
  595.                 x264_log(h, X264_LOG_ERROR, "statistics are damaged at line %d, parser out=%dn", i, e);
  596.                 return -1;
  597.             }
  598.             rce->qscale = qp2qscale(qp);
  599.             p = next;
  600.         }
  601.         x264_free(stats_buf);
  602.         if(h->param.rc.i_rc_method == X264_RC_ABR)
  603.         {
  604.             if(init_pass2(h) < 0) return -1;
  605.         } /* else we're using constant quant, so no need to run the bitrate allocation */
  606.     }
  607.     /* Open output file */
  608.     /* If input and output files are the same, output to a temp file
  609.      * and move it to the real name only when it's complete */
  610.     if( h->param.rc.b_stat_write )
  611.     {
  612.         char *p;
  613.         rc->psz_stat_file_tmpname = x264_strcat_filename( h->param.rc.psz_stat_out, ".temp" );
  614.         if( !rc->psz_stat_file_tmpname )
  615.             return -1;
  616.         rc->p_stat_file_out = fopen( rc->psz_stat_file_tmpname, "wb" );
  617.         if( rc->p_stat_file_out == NULL )
  618.         {
  619.             x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open stats filen");
  620.             return -1;
  621.         }
  622.         p = x264_param2string( &h->param, 1 );
  623.         if( p )
  624.             fprintf( rc->p_stat_file_out, "#options: %sn", p );
  625.         x264_free( p );
  626.         if( h->param.rc.b_mb_tree && !h->param.rc.b_stat_read )
  627.         {
  628.             rc->psz_mbtree_stat_file_tmpname = x264_strcat_filename( h->param.rc.psz_stat_out, ".mbtree.temp" );
  629.             rc->psz_mbtree_stat_file_name = x264_strcat_filename( h->param.rc.psz_stat_out, ".mbtree" );
  630.             if( !rc->psz_mbtree_stat_file_tmpname || !rc->psz_mbtree_stat_file_name )
  631.                 return -1;
  632.             rc->p_mbtree_stat_file_out = fopen( rc->psz_mbtree_stat_file_tmpname, "wb" );
  633.             if( rc->p_mbtree_stat_file_out == NULL )
  634.             {
  635.                 x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open mbtree stats filen");
  636.                 return -1;
  637.             }
  638.         }
  639.     }
  640.     if( h->param.rc.b_mb_tree && (h->param.rc.b_stat_read || h->param.rc.b_stat_write) )
  641.         CHECKED_MALLOC( rc->qp_buffer, h->mb.i_mb_count * sizeof(uint16_t) );
  642.     for( i=0; i<h->param.i_threads; i++ )
  643.     {
  644.         h->thread[i]->rc = rc+i;
  645.         if( i )
  646.         {
  647.             rc[i] = rc[0];
  648.             memcpy( &h->thread[i]->param, &h->param, sizeof(x264_param_t) );
  649.             h->thread[i]->mb.b_variable_qp = h->mb.b_variable_qp;
  650.         }
  651.     }
  652.     return 0;
  653. fail:
  654.     return -1;
  655. }
  656. static int parse_zone( x264_t *h, x264_zone_t *z, char *p )
  657. {
  658.     int len = 0;
  659.     char *tok, UNUSED *saveptr;
  660.     z->param = NULL;
  661.     z->f_bitrate_factor = 1;
  662.     if( 3 <= sscanf(p, "%u,%u,q=%u%n", &z->i_start, &z->i_end, &z->i_qp, &len) )
  663.         z->b_force_qp = 1;
  664.     else if( 3 <= sscanf(p, "%u,%u,b=%f%n", &z->i_start, &z->i_end, &z->f_bitrate_factor, &len) )
  665.         z->b_force_qp = 0;
  666.     else if( 2 <= sscanf(p, "%u,%u%n", &z->i_start, &z->i_end, &len) )
  667.         z->b_force_qp = 0;
  668.     else
  669.     {
  670.         x264_log( h, X264_LOG_ERROR, "invalid zone: "%s"n", p );
  671.         return -1;
  672.     }
  673.     p += len;
  674.     if( !*p )
  675.         return 0;
  676.     CHECKED_MALLOC( z->param, sizeof(x264_param_t) );
  677.     memcpy( z->param, &h->param, sizeof(x264_param_t) );
  678.     z->param->param_free = x264_free;
  679.     while( (tok = strtok_r( p, ",", &saveptr )) )
  680.     {
  681.         char *val = strchr( tok, '=' );
  682.         if( val )
  683.         {
  684.             *val = '';
  685.             val++;
  686.         }
  687.         if( x264_param_parse( z->param, tok, val ) )
  688.         {
  689.             x264_log( h, X264_LOG_ERROR, "invalid zone param: %s = %sn", tok, val );
  690.             return -1;
  691.         }
  692.         p = NULL;
  693.     }
  694.     return 0;
  695. fail:
  696.     return -1;
  697. }
  698. static int parse_zones( x264_t *h )
  699. {
  700.     x264_ratecontrol_t *rc = h->rc;
  701.     int i;
  702.     if( h->param.rc.psz_zones && !h->param.rc.i_zones )
  703.     {
  704.         char *psz_zones, *p, *tok, UNUSED *saveptr;
  705.         CHECKED_MALLOC( psz_zones, strlen( h->param.rc.psz_zones )+1 );
  706.         strcpy( psz_zones, h->param.rc.psz_zones );
  707.         h->param.rc.i_zones = 1;
  708.         for( p = psz_zones; *p; p++ )
  709.             h->param.rc.i_zones += (*p == '/');
  710.         CHECKED_MALLOC( h->param.rc.zones, h->param.rc.i_zones * sizeof(x264_zone_t) );
  711.         p = psz_zones;
  712.         for( i = 0; i < h->param.rc.i_zones; i++ )
  713.         {
  714.             tok = strtok_r( p, "/", &saveptr );
  715.             if( !tok || parse_zone( h, &h->param.rc.zones[i], tok ) )
  716.                 return -1;
  717.             p = NULL;
  718.         }
  719.         x264_free( psz_zones );
  720.     }
  721.     if( h->param.rc.i_zones > 0 )
  722.     {
  723.         for( i = 0; i < h->param.rc.i_zones; i++ )
  724.         {
  725.             x264_zone_t z = h->param.rc.zones[i];
  726.             if( z.i_start < 0 || z.i_start > z.i_end )
  727.             {
  728.                 x264_log( h, X264_LOG_ERROR, "invalid zone: start=%d end=%dn",
  729.                           z.i_start, z.i_end );
  730.                 return -1;
  731.             }
  732.             else if( !z.b_force_qp && z.f_bitrate_factor <= 0 )
  733.             {
  734.                 x264_log( h, X264_LOG_ERROR, "invalid zone: bitrate_factor=%fn",
  735.                           z.f_bitrate_factor );
  736.                 return -1;
  737.             }
  738.         }
  739.         rc->i_zones = h->param.rc.i_zones + 1;
  740.         CHECKED_MALLOC( rc->zones, rc->i_zones * sizeof(x264_zone_t) );
  741.         memcpy( rc->zones+1, h->param.rc.zones, (rc->i_zones-1) * sizeof(x264_zone_t) );
  742.         // default zone to fall back to if none of the others match
  743.         rc->zones[0].i_start = 0;
  744.         rc->zones[0].i_end = INT_MAX;
  745.         rc->zones[0].b_force_qp = 0;
  746.         rc->zones[0].f_bitrate_factor = 1;
  747.         CHECKED_MALLOC( rc->zones[0].param, sizeof(x264_param_t) );
  748.         memcpy( rc->zones[0].param, &h->param, sizeof(x264_param_t) );
  749.         for( i = 1; i < rc->i_zones; i++ )
  750.         {
  751.             if( !rc->zones[i].param )
  752.                 rc->zones[i].param = rc->zones[0].param;
  753.         }
  754.     }
  755.     return 0;
  756. fail:
  757.     return -1;
  758. }
  759. static x264_zone_t *get_zone( x264_t *h, int frame_num )
  760. {
  761.     int i;
  762.     for( i = h->rc->i_zones-1; i >= 0; i-- )
  763.     {
  764.         x264_zone_t *z = &h->rc->zones[i];
  765.         if( frame_num >= z->i_start && frame_num <= z->i_end )
  766.             return z;
  767.     }
  768.     return NULL;
  769. }
  770. void x264_ratecontrol_summary( x264_t *h )
  771. {
  772.     x264_ratecontrol_t *rc = h->rc;
  773.     if( rc->b_abr && h->param.rc.i_rc_method == X264_RC_ABR && rc->cbr_decay > .9999 )
  774.     {
  775.         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
  776.         double mbtree_offset = h->param.rc.b_mb_tree ? (1.0-h->param.rc.f_qcompress)*13.5 : 0;
  777.         x264_log( h, X264_LOG_INFO, "final ratefactor: %.2fn",
  778.                   qscale2qp( pow( base_cplx, 1 - rc->qcompress )
  779.                              * rc->cplxr_sum / rc->wanted_bits_window ) - mbtree_offset );
  780.     }
  781. }
  782. void x264_ratecontrol_delete( x264_t *h )
  783. {
  784.     x264_ratecontrol_t *rc = h->rc;
  785.     int i;
  786.     if( rc->p_stat_file_out )
  787.     {
  788.         fclose( rc->p_stat_file_out );
  789.         if( h->i_frame >= rc->num_entries )
  790.             if( rename( rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out ) != 0 )
  791.             {
  792.                 x264_log( h, X264_LOG_ERROR, "failed to rename "%s" to "%s"n",
  793.                           rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out );
  794.             }
  795.         x264_free( rc->psz_stat_file_tmpname );
  796.     }
  797.     if( rc->p_mbtree_stat_file_out )
  798.     {
  799.         fclose( rc->p_mbtree_stat_file_out );
  800.         if( h->i_frame >= rc->num_entries )
  801.             if( rename( rc->psz_mbtree_stat_file_tmpname, rc->psz_mbtree_stat_file_name ) != 0 )
  802.             {
  803.                 x264_log( h, X264_LOG_ERROR, "failed to rename "%s" to "%s"n",
  804.                           rc->psz_mbtree_stat_file_tmpname, rc->psz_mbtree_stat_file_name );
  805.             }
  806.         x264_free( rc->psz_mbtree_stat_file_tmpname );
  807.         x264_free( rc->psz_mbtree_stat_file_name );
  808.     }
  809.     if( rc->p_mbtree_stat_file_in )
  810.         fclose( rc->p_mbtree_stat_file_in );
  811.     x264_free( rc->pred );
  812.     x264_free( rc->pred_b_from_p );
  813.     x264_free( rc->entry );
  814.     x264_free( rc->qp_buffer );
  815.     if( rc->zones )
  816.     {
  817.         x264_free( rc->zones[0].param );
  818.         for( i=1; i<rc->i_zones; i++ )
  819.             if( rc->zones[i].param != rc->zones[0].param && rc->zones[i].param->param_free )
  820.                 rc->zones[i].param->param_free( rc->zones[i].param );
  821.         x264_free( rc->zones );
  822.     }
  823.     x264_free( rc );
  824. }
  825. void x264_ratecontrol_set_estimated_size( x264_t *h, int bits )
  826. {
  827.     x264_pthread_mutex_lock( &h->fenc->mutex );
  828.     h->rc->frame_size_estimated = bits;
  829.     x264_pthread_mutex_unlock( &h->fenc->mutex );
  830. }
  831. int x264_ratecontrol_get_estimated_size( x264_t const *h)
  832. {
  833.     int size;
  834.     x264_pthread_mutex_lock( &h->fenc->mutex );
  835.     size = h->rc->frame_size_estimated;
  836.     x264_pthread_mutex_unlock( &h->fenc->mutex );
  837.     return size;
  838. }
  839. static void accum_p_qp_update( x264_t *h, float qp )
  840. {
  841.     x264_ratecontrol_t *rc = h->rc;
  842.     rc->accum_p_qp   *= .95;
  843.     rc->accum_p_norm *= .95;
  844.     rc->accum_p_norm += 1;
  845.     if( h->sh.i_type == SLICE_TYPE_I )
  846.         rc->accum_p_qp += qp + rc->ip_offset;
  847.     else
  848.         rc->accum_p_qp += qp;
  849. }
  850. /* Before encoding a frame, choose a QP for it */
  851. void x264_ratecontrol_start( x264_t *h, int i_force_qp, int overhead )
  852. {
  853.     x264_ratecontrol_t *rc = h->rc;
  854.     ratecontrol_entry_t *rce = NULL;
  855.     x264_zone_t *zone = get_zone( h, h->fenc->i_frame );
  856.     float q;
  857.     x264_emms();
  858.     if( zone && (!rc->prev_zone || zone->param != rc->prev_zone->param) )
  859.         x264_encoder_reconfig( h, zone->param );
  860.     rc->prev_zone = zone;
  861.     rc->qp_force = i_force_qp;
  862.     if( h->param.rc.b_stat_read )
  863.     {
  864.         int frame = h->fenc->i_frame;
  865.         assert( frame >= 0 && frame < rc->num_entries );
  866.         rce = h->rc->rce = &h->rc->entry[frame];
  867.         if( h->sh.i_type == SLICE_TYPE_B
  868.             && h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO )
  869.         {
  870.             h->sh.b_direct_spatial_mv_pred = ( rce->direct_mode == 's' );
  871.             h->mb.b_direct_auto_read = ( rce->direct_mode == 's' || rce->direct_mode == 't' );
  872.         }
  873.     }
  874.     if( rc->b_vbv )
  875.     {
  876.         memset( h->fdec->i_row_bits, 0, h->sps->i_mb_height * sizeof(int) );
  877.         rc->row_pred = &rc->row_preds[h->sh.i_type];
  878.         update_vbv_plan( h, overhead );
  879.     }
  880.     if( h->sh.i_type != SLICE_TYPE_B )
  881.         rc->bframes = h->fenc->i_bframes;
  882.     if( i_force_qp )
  883.     {
  884.         q = i_force_qp - 1;
  885.     }
  886.     else if( rc->b_abr )
  887.     {
  888.         q = qscale2qp( rate_estimate_qscale( h ) );
  889.     }
  890.     else if( rc->b_2pass )
  891.     {
  892.         rce->new_qscale = rate_estimate_qscale( h );
  893.         q = qscale2qp( rce->new_qscale );
  894.     }
  895.     else /* CQP */
  896.     {
  897.         if( h->sh.i_type == SLICE_TYPE_B && h->fdec->b_kept_as_ref )
  898.             q = ( rc->qp_constant[ SLICE_TYPE_B ] + rc->qp_constant[ SLICE_TYPE_P ] ) / 2;
  899.         else
  900.             q = rc->qp_constant[ h->sh.i_type ];
  901.         if( zone )
  902.         {
  903.             if( zone->b_force_qp )
  904.                 q += zone->i_qp - rc->qp_constant[SLICE_TYPE_P];
  905.             else
  906.                 q -= 6*log(zone->f_bitrate_factor)/log(2);
  907.         }
  908.     }
  909.     q = x264_clip3f( q, h->param.rc.i_qp_min, h->param.rc.i_qp_max );
  910.     rc->qpa_rc =
  911.     rc->qpa_aq = 0;
  912.     h->fdec->f_qp_avg_rc =
  913.     h->fdec->f_qp_avg_aq =
  914.     rc->qpm =
  915.     rc->qp = x264_clip3( (int)(q + 0.5), 0, 51 );
  916.     rc->f_qpm = q;
  917.     if( rce )
  918.         rce->new_qp = rc->qp;
  919.     accum_p_qp_update( h, rc->qp );
  920.     if( h->sh.i_type != SLICE_TYPE_B )
  921.         rc->last_non_b_pict_type = h->sh.i_type;
  922. }
  923. static double predict_row_size( x264_t *h, int y, int qp )
  924. {
  925.     /* average between two predictors:
  926.      * absolute SATD, and scaled bit cost of the colocated row in the previous frame */
  927.     x264_ratecontrol_t *rc = h->rc;
  928.     double pred_s = predict_size( rc->row_pred[0], qp2qscale(qp), h->fdec->i_row_satd[y] );
  929.     double pred_t = 0;
  930.     if( h->sh.i_type == SLICE_TYPE_I || qp >= h->fref0[0]->i_row_qp[y] )
  931.     {
  932.         if( h->sh.i_type != SLICE_TYPE_I
  933.             && h->fref0[0]->i_type == h->fdec->i_type
  934.             && h->fref0[0]->i_row_satd[y] > 0
  935.             && (abs(h->fref0[0]->i_row_satd[y] - h->fdec->i_row_satd[y]) < h->fdec->i_row_satd[y]/2))
  936.         {
  937.             pred_t = h->fref0[0]->i_row_bits[y] * h->fdec->i_row_satd[y] / h->fref0[0]->i_row_satd[y]
  938.                      * qp2qscale(h->fref0[0]->i_row_qp[y]) / qp2qscale(qp);
  939.         }
  940.         if( pred_t == 0 )
  941.             pred_t = pred_s;
  942.         return (pred_s + pred_t) / 2;
  943.     }
  944.     /* Our QP is lower than the reference! */
  945.     else
  946.     {
  947.         double newq = qp2qscale(qp);
  948.         double oldq = qp2qscale(h->fref0[0]->i_row_qp[y]);
  949.         double pred_intra = predict_size( rc->row_pred[1], (1 - newq / oldq) * newq, h->fdec->i_row_satds[0][0][y] );
  950.         /* Sum: better to overestimate than underestimate by using only one of the two predictors. */
  951.         return pred_intra + pred_s;
  952.     }
  953. }
  954. static double row_bits_so_far( x264_t *h, int y )
  955. {
  956.     int i;
  957.     double bits = 0;
  958.     for( i = 0; i <= y; i++ )
  959.         bits += h->fdec->i_row_bits[i];
  960.     return bits;
  961. }
  962. static double predict_row_size_sum( x264_t *h, int y, int qp )
  963. {
  964.     int i;
  965.     double bits = row_bits_so_far(h, y);
  966.     for( i = y+1; i < h->sps->i_mb_height; i++ )
  967.         bits += predict_row_size( h, i, qp );
  968.     return bits;
  969. }
  970. void x264_ratecontrol_mb( x264_t *h, int bits )
  971. {
  972.     x264_ratecontrol_t *rc = h->rc;
  973.     const int y = h->mb.i_mb_y;
  974.     x264_emms();
  975.     h->fdec->i_row_bits[y] += bits;
  976.     rc->qpa_rc += rc->f_qpm;
  977.     rc->qpa_aq += h->mb.i_qp;
  978.     if( h->mb.i_mb_x != h->sps->i_mb_width - 1 || !rc->b_vbv )
  979.         return;
  980.     h->fdec->i_row_qp[y] = rc->qpm;
  981.     if( h->sh.i_type == SLICE_TYPE_B )
  982.     {
  983.         /* B-frames shouldn't use lower QP than their reference frames.
  984.          * This code is a bit overzealous in limiting B-frame quantizers, but it helps avoid
  985.          * underflows due to the fact that B-frames are not explicitly covered by VBV. */
  986.         if( y < h->sps->i_mb_height-1 )
  987.         {
  988.             int i_estimated;
  989.             int avg_qp = X264_MIN(h->fref0[0]->i_row_qp[y+1], h->fref1[0]->i_row_qp[y+1])
  990.                        + rc->pb_offset * ((h->fenc->i_type == X264_TYPE_BREF) ? 0.5 : 1);
  991.             rc->qpm = X264_MIN(X264_MAX( rc->qp, avg_qp), 51); //avg_qp could go higher than 51 due to pb_offset
  992.             i_estimated = row_bits_so_far(h, y); //FIXME: compute full estimated size
  993.             if (i_estimated > h->rc->frame_size_planned)
  994.                 x264_ratecontrol_set_estimated_size(h, i_estimated);
  995.         }
  996.     }
  997.     else
  998.     {
  999.         update_predictor( rc->row_pred[0], qp2qscale(rc->qpm), h->fdec->i_row_satd[y], h->fdec->i_row_bits[y] );
  1000.         if( h->sh.i_type != SLICE_TYPE_I && rc->qpm < h->fref0[0]->i_row_qp[y] )
  1001.         {
  1002.             double newq = qp2qscale(rc->qpm);
  1003.             double oldq = qp2qscale(h->fref0[0]->i_row_qp[y]);
  1004.             update_predictor( rc->row_pred[1], (1 - newq / oldq) * newq, h->fdec->i_row_satds[0][0][y], h->fdec->i_row_bits[y] );
  1005.         }
  1006.         /* tweak quality based on difference from predicted size */
  1007.         if( y < h->sps->i_mb_height-1 )// && h->stat.i_frame_count[h->sh.i_type] > 0 )
  1008.         {
  1009.             int prev_row_qp = h->fdec->i_row_qp[y];
  1010.             int b0 = predict_row_size_sum( h, y, rc->qpm );
  1011.             int b1 = b0;
  1012.             int i_qp_max = X264_MIN( prev_row_qp + h->param.rc.i_qp_step, h->param.rc.i_qp_max );
  1013.             int i_qp_min = X264_MAX( prev_row_qp - h->param.rc.i_qp_step, h->param.rc.i_qp_min );
  1014.             float buffer_left_planned = rc->buffer_fill - rc->frame_size_planned;
  1015.             /* More threads means we have to be more cautious in letting ratecontrol use up extra bits.
  1016.              * In 2-pass mode we can be more trusting of the planned frame sizes, since they were decided
  1017.              * by actual encoding instead of SATD prediction. */
  1018.             float rc_tol = h->param.rc.b_stat_read ? (buffer_left_planned / rc->buffer_size) * rc->frame_size_planned
  1019.                                                    : (buffer_left_planned / h->param.i_threads);
  1020.             /* Don't modify the row QPs until a sufficent amount of the bits of the frame have been processed, in case a flat */
  1021.             /* area at the top of the frame was measured inaccurately. */
  1022.             if( row_bits_so_far(h,y) < 0.05 * rc->frame_size_planned )
  1023.                 return;
  1024.             if(h->sh.i_type != SLICE_TYPE_I)
  1025.                 rc_tol /= 2;
  1026.             if( !rc->b_vbv_min_rate )
  1027.                 i_qp_min = X264_MAX( i_qp_min, h->sh.i_qp );
  1028.             while( rc->qpm < i_qp_max
  1029.                    && ((b1 > rc->frame_size_planned + rc_tol) ||
  1030.                        (rc->buffer_fill - b1 < buffer_left_planned * 0.5) ||
  1031.                        (b1 > rc->frame_size_planned && rc->qpm < rc->qp_novbv)) )
  1032.             {
  1033.                 rc->qpm ++;
  1034.                 b1 = predict_row_size_sum( h, y, rc->qpm );
  1035.             }
  1036.             while( rc->qpm > i_qp_min
  1037.                    && (rc->qpm > h->fdec->i_row_qp[0] || rc->single_frame_vbv)
  1038.                    && ((b1 < rc->frame_size_planned * 0.8 && rc->qpm <= prev_row_qp)
  1039.                    || b1 < (rc->buffer_fill - rc->buffer_size + rc->buffer_rate) * 1.1) )
  1040.             {
  1041.                 rc->qpm --;
  1042.                 b1 = predict_row_size_sum( h, y, rc->qpm );
  1043.             }
  1044.             /* avoid VBV underflow */
  1045.             while( (rc->qpm < h->param.rc.i_qp_max)
  1046.                    && (rc->buffer_fill - b1 < rc->buffer_rate * 0.05 ) )
  1047.             {
  1048.                 rc->qpm ++;
  1049.                 b1 = predict_row_size_sum( h, y, rc->qpm );
  1050.             }
  1051.             x264_ratecontrol_set_estimated_size(h, b1);
  1052.         }
  1053.     }
  1054.     /* loses the fractional part of the frame-wise qp */
  1055.     rc->f_qpm = rc->qpm;
  1056. }
  1057. int x264_ratecontrol_qp( x264_t *h )
  1058. {
  1059.     return h->rc->qpm;
  1060. }
  1061. /* In 2pass, force the same frame types as in the 1st pass */
  1062. int x264_ratecontrol_slice_type( x264_t *h, int frame_num )
  1063. {
  1064.     x264_ratecontrol_t *rc = h->rc;
  1065.     if( h->param.rc.b_stat_read )
  1066.     {
  1067.         if( frame_num >= rc->num_entries )
  1068.         {
  1069.             /* We could try to initialize everything required for ABR and
  1070.              * adaptive B-frames, but that would be complicated.
  1071.              * So just calculate the average QP used so far. */
  1072.             int i;
  1073.             h->param.rc.i_qp_constant = (h->stat.i_frame_count[SLICE_TYPE_P] == 0) ? 24
  1074.                                       : 1 + h->stat.f_frame_qp[SLICE_TYPE_P] / h->stat.i_frame_count[SLICE_TYPE_P];
  1075.             rc->qp_constant[SLICE_TYPE_P] = x264_clip3( h->param.rc.i_qp_constant, 0, 51 );
  1076.             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 );
  1077.             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 );
  1078.             x264_log(h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d)n", rc->num_entries);
  1079.             x264_log(h, X264_LOG_ERROR, "continuing anyway, at constant QP=%dn", h->param.rc.i_qp_constant);
  1080.             if( h->param.i_bframe_adaptive )
  1081.                 x264_log(h, X264_LOG_ERROR, "disabling adaptive B-framesn");
  1082.             for( i = 0; i < h->param.i_threads; i++ )
  1083.             {
  1084.                 h->thread[i]->rc->b_abr = 0;
  1085.                 h->thread[i]->rc->b_2pass = 0;
  1086.                 h->thread[i]->param.rc.i_rc_method = X264_RC_CQP;
  1087.                 h->thread[i]->param.rc.b_stat_read = 0;
  1088.                 h->thread[i]->param.i_bframe_adaptive = 0;
  1089.                 h->thread[i]->param.i_scenecut_threshold = 0;
  1090.                 if( h->thread[i]->param.i_bframe > 1 )
  1091.                     h->thread[i]->param.i_bframe = 1;
  1092.             }
  1093.             return X264_TYPE_AUTO;
  1094.         }
  1095.         switch( rc->entry[frame_num].pict_type )
  1096.         {
  1097.             case SLICE_TYPE_I:
  1098.                 return rc->entry[frame_num].kept_as_ref ? X264_TYPE_IDR : X264_TYPE_I;
  1099.             case SLICE_TYPE_B:
  1100.                 return rc->entry[frame_num].kept_as_ref ? X264_TYPE_BREF : X264_TYPE_B;
  1101.             case SLICE_TYPE_P:
  1102.             default:
  1103.                 return X264_TYPE_P;
  1104.         }
  1105.     }
  1106.     else
  1107.     {
  1108.         return X264_TYPE_AUTO;
  1109.     }
  1110. }
  1111. /* After encoding one frame, save stats and update ratecontrol state */
  1112. int x264_ratecontrol_end( x264_t *h, int bits )
  1113. {
  1114.     x264_ratecontrol_t *rc = h->rc;
  1115.     const int *mbs = h->stat.frame.i_mb_count;
  1116.     int i;
  1117.     x264_emms();
  1118.     h->stat.frame.i_mb_count_skip = mbs[P_SKIP] + mbs[B_SKIP];
  1119.     h->stat.frame.i_mb_count_i = mbs[I_16x16] + mbs[I_8x8] + mbs[I_4x4];
  1120.     h->stat.frame.i_mb_count_p = mbs[P_L0] + mbs[P_8x8];
  1121.     for( i = B_DIRECT; i < B_8x8; i++ )
  1122.         h->stat.frame.i_mb_count_p += mbs[i];
  1123.     h->fdec->f_qp_avg_rc = rc->qpa_rc /= h->mb.i_mb_count;
  1124.     h->fdec->f_qp_avg_aq = rc->qpa_aq /= h->mb.i_mb_count;
  1125.     if( h->param.rc.b_stat_write )
  1126.     {
  1127.         char c_type = h->sh.i_type==SLICE_TYPE_I ? (h->fenc->i_poc==0 ? 'I' : 'i')
  1128.                     : h->sh.i_type==SLICE_TYPE_P ? 'P'
  1129.                     : h->fenc->b_kept_as_ref ? 'B' : 'b';
  1130.         int dir_frame = h->stat.frame.i_direct_score[1] - h->stat.frame.i_direct_score[0];
  1131.         int dir_avg = h->stat.i_direct_score[1] - h->stat.i_direct_score[0];
  1132.         char c_direct = h->mb.b_direct_auto_write ?
  1133.                         ( dir_frame>0 ? 's' : dir_frame<0 ? 't' :
  1134.                           dir_avg>0 ? 's' : dir_avg<0 ? 't' : '-' )
  1135.                         : '-';
  1136.         if( fprintf( rc->p_stat_file_out,
  1137.                  "in:%d out:%d type:%c q:%.2f tex:%d mv:%d misc:%d imb:%d pmb:%d smb:%d d:%c ref:",
  1138.                  h->fenc->i_frame, h->i_frame,
  1139.                  c_type, rc->qpa_rc,
  1140.                  h->stat.frame.i_tex_bits,
  1141.                  h->stat.frame.i_mv_bits,
  1142.                  h->stat.frame.i_misc_bits,
  1143.                  h->stat.frame.i_mb_count_i,
  1144.                  h->stat.frame.i_mb_count_p,
  1145.                  h->stat.frame.i_mb_count_skip,
  1146.                  c_direct) < 0 )
  1147.             goto fail;
  1148.         for( i = 0; i < h->i_ref0; i++ )
  1149.         {
  1150.             int refcount = h->param.b_interlaced ? h->stat.frame.i_mb_count_ref[0][i*2]
  1151.                                                  + h->stat.frame.i_mb_count_ref[0][i*2+1] :
  1152.                                                    h->stat.frame.i_mb_count_ref[0][i];
  1153.             if( fprintf( rc->p_stat_file_out, "%d ", refcount ) < 0 )
  1154.                 goto fail;
  1155.         }
  1156.         if( fprintf( rc->p_stat_file_out, ";n" ) < 0 )
  1157.             goto fail;
  1158.         /* Don't re-write the data in multi-pass mode. */
  1159.         if( h->param.rc.b_mb_tree && h->fenc->b_kept_as_ref && !h->param.rc.b_stat_read )
  1160.         {
  1161.             uint8_t i_type = h->sh.i_type;
  1162.             int i;
  1163.             /* Values are stored as big-endian FIX8.8 */
  1164.             for( i = 0; i < h->mb.i_mb_count; i++ )
  1165.                 rc->qp_buffer[i] = endian_fix16( h->fenc->f_qp_offset[i]*256.0 );
  1166.             if( fwrite( &i_type, 1, 1, rc->p_mbtree_stat_file_out ) < 1 )
  1167.                 goto fail;
  1168.             if( fwrite( rc->qp_buffer, sizeof(uint16_t), h->mb.i_mb_count, rc->p_mbtree_stat_file_out ) < h->mb.i_mb_count )
  1169.                 goto fail;
  1170.         }
  1171.     }
  1172.     if( rc->b_abr )
  1173.     {
  1174.         if( h->sh.i_type != SLICE_TYPE_B )
  1175.             rc->cplxr_sum += bits * qp2qscale(rc->qpa_rc) / rc->last_rceq;
  1176.         else
  1177.         {
  1178.             /* Depends on the fact that B-frame's QP is an offset from the following P-frame's.
  1179.              * Not perfectly accurate with B-refs, but good enough. */
  1180.             rc->cplxr_sum += bits * qp2qscale(rc->qpa_rc) / (rc->last_rceq * fabs(h->param.rc.f_pb_factor));
  1181.         }
  1182.         rc->cplxr_sum *= rc->cbr_decay;
  1183.         rc->wanted_bits_window += rc->bitrate / rc->fps;
  1184.         rc->wanted_bits_window *= rc->cbr_decay;
  1185.     }
  1186.     if( rc->b_2pass )
  1187.     {
  1188.         rc->expected_bits_sum += qscale2bits( rc->rce, qp2qscale(rc->rce->new_qp) );
  1189.     }
  1190.     if( h->mb.b_variable_qp )
  1191.     {
  1192.         if( h->sh.i_type == SLICE_TYPE_B )
  1193.         {
  1194.             rc->bframe_bits += bits;
  1195.             if( h->fenc->b_last_minigop_bframe )
  1196.             {
  1197.                 update_predictor( rc->pred_b_from_p, qp2qscale(rc->qpa_rc),
  1198.                                   h->fref1[h->i_ref1-1]->i_satd, rc->bframe_bits / rc->bframes );
  1199.                 rc->bframe_bits = 0;
  1200.             }
  1201.         }
  1202.     }
  1203.     update_vbv( h, bits );
  1204.     return 0;
  1205. fail:
  1206.     x264_log(h, X264_LOG_ERROR, "ratecontrol_end: stats file could not be written ton");
  1207.     return -1;
  1208. }
  1209. /****************************************************************************
  1210.  * 2 pass functions
  1211.  ***************************************************************************/
  1212. /**
  1213.  * modify the bitrate curve from pass1 for one frame
  1214.  */
  1215. static double get_qscale(x264_t *h, ratecontrol_entry_t *rce, double rate_factor, int frame_num)
  1216. {
  1217.     x264_ratecontrol_t *rcc= h->rc;
  1218.     double q;
  1219.     x264_zone_t *zone = get_zone( h, frame_num );
  1220.     q = pow( rce->blurred_complexity, 1 - rcc->qcompress );
  1221.     // avoid NaN's in the rc_eq
  1222.     if(!isfinite(q) || rce->tex_bits + rce->mv_bits == 0)
  1223.         q = rcc->last_qscale;
  1224.     else
  1225.     {
  1226.         rcc->last_rceq = q;
  1227.         q /= rate_factor;
  1228.         rcc->last_qscale = q;
  1229.     }
  1230.     if( zone )
  1231.     {
  1232.         if( zone->b_force_qp )
  1233.             q = qp2qscale(zone->i_qp);
  1234.         else
  1235.             q /= zone->f_bitrate_factor;
  1236.     }
  1237.     return q;
  1238. }
  1239. static double get_diff_limited_q(x264_t *h, ratecontrol_entry_t *rce, double q)
  1240. {
  1241.     x264_ratecontrol_t *rcc = h->rc;
  1242.     const int pict_type = rce->pict_type;
  1243.     // force I/B quants as a function of P quants
  1244.     const double last_p_q    = rcc->last_qscale_for[SLICE_TYPE_P];
  1245.     const double last_non_b_q= rcc->last_qscale_for[rcc->last_non_b_pict_type];
  1246.     if( pict_type == SLICE_TYPE_I )
  1247.     {
  1248.         double iq = q;
  1249.         double pq = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
  1250.         double ip_factor = fabs( h->param.rc.f_ip_factor );
  1251.         /* don't apply ip_factor if the following frame is also I */
  1252.         if( rcc->accum_p_norm <= 0 )
  1253.             q = iq;
  1254.         else if( h->param.rc.f_ip_factor < 0 )
  1255.             q = iq / ip_factor;
  1256.         else if( rcc->accum_p_norm >= 1 )
  1257.             q = pq / ip_factor;
  1258.         else
  1259.             q = rcc->accum_p_norm * pq / ip_factor + (1 - rcc->accum_p_norm) * iq;
  1260.     }
  1261.     else if( pict_type == SLICE_TYPE_B )
  1262.     {
  1263.         if( h->param.rc.f_pb_factor > 0 )
  1264.             q = last_non_b_q;
  1265.         if( !rce->kept_as_ref )
  1266.             q *= fabs( h->param.rc.f_pb_factor );
  1267.     }
  1268.     else if( pict_type == SLICE_TYPE_P
  1269.              && rcc->last_non_b_pict_type == SLICE_TYPE_P
  1270.              && rce->tex_bits == 0 )
  1271.     {
  1272.         q = last_p_q;
  1273.     }
  1274.     /* last qscale / qdiff stuff */
  1275.     if(rcc->last_non_b_pict_type==pict_type
  1276.        && (pict_type!=SLICE_TYPE_I || rcc->last_accum_p_norm < 1))
  1277.     {
  1278.         double last_q = rcc->last_qscale_for[pict_type];
  1279.         double max_qscale = last_q * rcc->lstep;
  1280.         double min_qscale = last_q / rcc->lstep;
  1281.         if     (q > max_qscale) q = max_qscale;
  1282.         else if(q < min_qscale) q = min_qscale;
  1283.     }
  1284.     rcc->last_qscale_for[pict_type] = q;
  1285.     if(pict_type!=SLICE_TYPE_B)
  1286.         rcc->last_non_b_pict_type = pict_type;
  1287.     if(pict_type==SLICE_TYPE_I)
  1288.     {
  1289.         rcc->last_accum_p_norm = rcc->accum_p_norm;
  1290.         rcc->accum_p_norm = 0;
  1291.         rcc->accum_p_qp = 0;
  1292.     }
  1293.     if(pict_type==SLICE_TYPE_P)
  1294.     {
  1295.         float mask = 1 - pow( (float)rce->i_count / rcc->nmb, 2 );
  1296.         rcc->accum_p_qp   = mask * (qscale2qp(q) + rcc->accum_p_qp);
  1297.         rcc->accum_p_norm = mask * (1 + rcc->accum_p_norm);
  1298.     }
  1299.     return q;
  1300. }
  1301. static double predict_size( predictor_t *p, double q, double var )
  1302. {
  1303.      return (p->coeff*var + p->offset) / (q*p->count);
  1304. }
  1305. static void update_predictor( predictor_t *p, double q, double var, double bits )
  1306. {
  1307.     const double range = 1.5;
  1308. //C程序不能中间定义变量 --@lia
  1309. double old_coeff,new_coeff,new_coeff_clipped,new_offset;
  1310.     if( var < 10 )
  1311.         return;
  1312. //C程序不能中间定义变量 --@lia
  1313.     //double 
  1314. old_coeff = p->coeff / p->count;
  1315.     //double 
  1316. new_coeff = bits*q / var;
  1317.     //double 
  1318. new_coeff_clipped = x264_clip3f( new_coeff, old_coeff/range, old_coeff*range );
  1319.     //double 
  1320. new_offset = bits*q - new_coeff_clipped * var;
  1321.     if( new_offset >= 0 )
  1322.         new_coeff = new_coeff_clipped;
  1323.     else
  1324.         new_offset = 0;
  1325.     p->count  *= p->decay;
  1326.     p->coeff  *= p->decay;
  1327.     p->offset *= p->decay;
  1328.     p->count  ++;
  1329.     p->coeff  += new_coeff;
  1330.     p->offset += new_offset;
  1331. }
  1332. // update VBV after encoding a frame
  1333. static void update_vbv( x264_t *h, int bits )
  1334. {
  1335.     x264_ratecontrol_t *rcc = h->rc;
  1336.     x264_ratecontrol_t *rct = h->thread[0]->rc;
  1337.     if( rcc->last_satd >= h->mb.i_mb_count )
  1338.         update_predictor( &rct->pred[h->sh.i_type], qp2qscale(rcc->qpa_rc), rcc->last_satd, bits );
  1339.     if( !rcc->b_vbv )
  1340.         return;
  1341.     rct->buffer_fill_final -= bits;
  1342.     if( rct->buffer_fill_final < 0 )
  1343.         x264_log( h, X264_LOG_WARNING, "VBV underflow (frame %d, %.0f bits)n", h->i_frame, rct->buffer_fill_final );
  1344.     rct->buffer_fill_final = X264_MAX( rct->buffer_fill_final, 0 );
  1345.     rct->buffer_fill_final += rct->buffer_rate;
  1346.     rct->buffer_fill_final = X264_MIN( rct->buffer_fill_final, rct->buffer_size );
  1347. }
  1348. // provisionally update VBV according to the planned size of all frames currently in progress
  1349. static void update_vbv_plan( x264_t *h, int overhead )
  1350. {
  1351.     x264_ratecontrol_t *rcc = h->rc;
  1352.     rcc->buffer_fill = h->thread[0]->rc->buffer_fill_final - overhead;
  1353.     if( h->param.i_threads > 1 )
  1354.     {
  1355.         int j = h->rc - h->thread[0]->rc;
  1356.         int i;
  1357.         for( i=1; i<h->param.i_threads; i++ )
  1358.         {
  1359.             x264_t *t = h->thread[ (j+i)%h->param.i_threads ];
  1360.             double bits = t->rc->frame_size_planned;
  1361.             if( !t->b_thread_active )
  1362.                 continue;
  1363.             bits  = X264_MAX(bits, x264_ratecontrol_get_estimated_size(t));
  1364.             rcc->buffer_fill -= bits;
  1365.             rcc->buffer_fill = X264_MAX( rcc->buffer_fill, 0 );
  1366.             rcc->buffer_fill += rcc->buffer_rate;
  1367.             rcc->buffer_fill = X264_MIN( rcc->buffer_fill, rcc->buffer_size );
  1368.         }
  1369.     }
  1370. }
  1371. // apply VBV constraints and clip qscale to between lmin and lmax
  1372. static double clip_qscale( x264_t *h, int pict_type, double q )
  1373. {
  1374.     x264_ratecontrol_t *rcc = h->rc;
  1375.     double lmin = rcc->lmin[pict_type];
  1376.     double lmax = rcc->lmax[pict_type];
  1377.     double q0 = q;
  1378.     /* B-frames are not directly subject to VBV,
  1379.      * since they are controlled by the P-frames' QPs. */
  1380.     if( rcc->b_vbv && rcc->last_satd > 0 )
  1381.     {
  1382.         /* Lookahead VBV: raise the quantizer as necessary such that no frames in
  1383.          * the lookahead overflow and such that the buffer is in a reasonable state
  1384.          * by the end of the lookahead. */
  1385.         if( h->param.rc.i_lookahead )
  1386.         {
  1387.             int j, iterations, terminate = 0;
  1388.             /* Avoid an infinite loop. */
  1389.             for( iterations = 0; iterations < 1000 && terminate != 3; iterations++ )
  1390.             {
  1391.                 double frame_q[3];
  1392.                 double cur_bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
  1393.                 double buffer_fill_cur = rcc->buffer_fill - cur_bits + rcc->buffer_rate;
  1394.                 double target_fill;
  1395.                 frame_q[0] = h->sh.i_type == SLICE_TYPE_I ? q * h->param.rc.f_ip_factor : q;
  1396.                 frame_q[1] = frame_q[0] * h->param.rc.f_pb_factor;
  1397.                 frame_q[2] = frame_q[0] / h->param.rc.f_ip_factor;
  1398.                 /* Loop over the planned future frames. */
  1399.                 for( j = 0; buffer_fill_cur >= 0 && buffer_fill_cur <= rcc->buffer_size; j++ )
  1400.                 {
  1401.                     int i_type = h->fenc->i_planned_type[j];
  1402.                     int i_satd = h->fenc->i_planned_satd[j];
  1403.                     if( i_type == X264_TYPE_AUTO )
  1404.                         break;
  1405.                     i_type = IS_X264_TYPE_I( i_type ) ? SLICE_TYPE_I : IS_X264_TYPE_B( i_type ) ? SLICE_TYPE_B : SLICE_TYPE_P;
  1406.                     cur_bits = predict_size( &rcc->pred[i_type], frame_q[i_type], i_satd );
  1407.                     buffer_fill_cur = buffer_fill_cur - cur_bits + rcc->buffer_rate;
  1408.                 }
  1409.                 /* Try to get to get the buffer at least 50% filled, but don't set an impossible goal. */
  1410.                 target_fill = X264_MIN( rcc->buffer_fill + j * rcc->buffer_rate * 0.5, rcc->buffer_size * 0.5 );
  1411.                 if( buffer_fill_cur < target_fill )
  1412.                 {
  1413.                     q *= 1.01;
  1414.                     terminate |= 1;
  1415.                     continue;
  1416.                 }
  1417.                 /* Try to get the buffer no more than 80% filled, but don't set an impossible goal. */
  1418.                 target_fill = x264_clip3f( rcc->buffer_fill - j * rcc->buffer_rate * 0.5, rcc->buffer_size * 0.8, rcc->buffer_size );
  1419.                 if( rcc->b_vbv_min_rate && buffer_fill_cur > target_fill )
  1420.                 {
  1421.                     q /= 1.01;
  1422.                     terminate |= 2;
  1423.                     continue;
  1424.                 }
  1425.                 break;
  1426.             }
  1427.         }
  1428.         /* Fallback to old purely-reactive algorithm: no lookahead. */
  1429.         else
  1430.         {
  1431.             //C程序不能中间定义变量 --@lia
  1432. double bits,qf,max_fill_factor,min_fill_factor;
  1433. if( ( pict_type == SLICE_TYPE_P ||
  1434.                 ( pict_type == SLICE_TYPE_I && rcc->last_non_b_pict_type == SLICE_TYPE_I ) ) &&
  1435.                 rcc->buffer_fill/rcc->buffer_size < 0.5 )
  1436.             {
  1437.                 q /= x264_clip3f( 2.0*rcc->buffer_fill/rcc->buffer_size, 0.5, 1.0 );
  1438.             }
  1439.             //C程序不能中间定义变量 --@lia
  1440. /* Now a hard threshold to make sure the frame fits in VBV.
  1441.              * This one is mostly for I-frames. */
  1442.             //double 
  1443. bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
  1444.             //double 
  1445. qf = 1.0;
  1446.             /* For small VBVs, allow the frame to use up the entire VBV. */
  1447.             //double 
  1448. max_fill_factor = h->param.rc.i_vbv_buffer_size >= 5*h->param.rc.i_vbv_max_bitrate / rcc->fps ? 2 : 1;
  1449.             /* For single-frame VBVs, request that the frame use up the entire VBV. */
  1450.             //double 
  1451. min_fill_factor = rcc->single_frame_vbv ? 1 : 2;
  1452.             if( bits > rcc->buffer_fill/max_fill_factor )
  1453.                 qf = x264_clip3f( rcc->buffer_fill/(max_fill_factor*bits), 0.2, 1.0 );
  1454.             q /= qf;
  1455.             bits *= qf;
  1456.             if( bits < rcc->buffer_rate/min_fill_factor )
  1457.                 q *= bits*min_fill_factor/rcc->buffer_rate;
  1458.             q = X264_MAX( q0, q );
  1459.         }
  1460.         /* Check B-frame complexity, and use up any bits that would
  1461.          * overflow before the next P-frame. */
  1462.         if( h->sh.i_type == SLICE_TYPE_P && !rcc->single_frame_vbv )
  1463.         {
  1464.             int nb = rcc->bframes;
  1465.             double bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
  1466.             double pbbits = bits;
  1467.             double bbits = predict_size( rcc->pred_b_from_p, q * h->param.rc.f_pb_factor, rcc->last_satd );
  1468.             double space;
  1469.             if( bbits > rcc->buffer_rate  )
  1470.                 nb = 0;
  1471.             pbbits += nb * bbits;
  1472.             space = rcc->buffer_fill + (1+nb)*rcc->buffer_rate - rcc->buffer_size;
  1473.             if( pbbits < space )
  1474.             {
  1475.                 q *= X264_MAX( pbbits / space, bits / (0.5 * rcc->buffer_size) );
  1476.             }
  1477.             q = X264_MAX( q0-5, q );
  1478.         }
  1479.         if( !rcc->b_vbv_min_rate )
  1480.             q = X264_MAX( q0, q );
  1481.     }
  1482.     if(lmin==lmax)
  1483.         return lmin;
  1484.     else if(rcc->b_2pass)
  1485.     {
  1486.         double min2 = log(lmin);
  1487.         double max2 = log(lmax);
  1488.         q = (log(q) - min2)/(max2-min2) - 0.5;
  1489.         q = 1.0/(1.0 + exp(-4*q));
  1490.         q = q*(max2-min2) + min2;
  1491.         return exp(q);
  1492.     }
  1493.     else
  1494.         return x264_clip3f(q, lmin, lmax);
  1495. }
  1496. // update qscale for 1 frame based on actual bits used so far
  1497. static float rate_estimate_qscale( x264_t *h )
  1498. {
  1499.     float q;
  1500.     x264_ratecontrol_t *rcc = h->rc;
  1501.     ratecontrol_entry_t rce;
  1502.     int pict_type = h->sh.i_type;
  1503.     double lmin = rcc->lmin[pict_type];
  1504.     double lmax = rcc->lmax[pict_type];
  1505.     int64_t total_bits = 8*(h->stat.i_frame_size[SLICE_TYPE_I]
  1506.                           + h->stat.i_frame_size[SLICE_TYPE_P]
  1507.                           + h->stat.i_frame_size[SLICE_TYPE_B]);
  1508.     if( rcc->b_2pass )
  1509.     {
  1510.         rce = *rcc->rce;
  1511.         if(pict_type != rce.pict_type)
  1512.         {
  1513.             x264_log(h, X264_LOG_ERROR, "slice=%c but 2pass stats say %cn",
  1514.                      slice_type_to_char[pict_type], slice_type_to_char[rce.pict_type]);
  1515.         }
  1516.     }
  1517.     if( pict_type == SLICE_TYPE_B )
  1518.     {
  1519.         /* B-frames don't have independent ratecontrol, but rather get the
  1520.          * average QP of the two adjacent P-frames + an offset */
  1521.         int i0 = IS_X264_TYPE_I(h->fref0[0]->i_type);
  1522.         int i1 = IS_X264_TYPE_I(h->fref1[0]->i_type);
  1523.         int dt0 = abs(h->fenc->i_poc - h->fref0[0]->i_poc);
  1524.         int dt1 = abs(h->fenc->i_poc - h->fref1[0]->i_poc);
  1525.         float q0 = h->fref0[0]->f_qp_avg_rc;
  1526.         float q1 = h->fref1[0]->f_qp_avg_rc;
  1527.         if( h->fref0[0]->i_type == X264_TYPE_BREF )
  1528.             q0 -= rcc->pb_offset/2;
  1529.         if( h->fref1[0]->i_type == X264_TYPE_BREF )
  1530.             q1 -= rcc->pb_offset/2;
  1531.         if(i0 && i1)
  1532.             q = (q0 + q1) / 2 + rcc->ip_offset;
  1533.         else if(i0)
  1534.             q = q1;
  1535.         else if(i1)
  1536.             q = q0;
  1537.         else
  1538.             q = (q0*dt1 + q1*dt0) / (dt0 + dt1);
  1539.         if(h->fenc->b_kept_as_ref)
  1540.             q += rcc->pb_offset/2;
  1541.         else
  1542.             q += rcc->pb_offset;
  1543.         rcc->frame_size_planned = predict_size( rcc->pred_b_from_p, q, h->fref1[h->i_ref1-1]->i_satd );
  1544.         x264_ratecontrol_set_estimated_size(h, rcc->frame_size_planned);
  1545.         rcc->last_satd = 0;
  1546.         return qp2qscale(q);
  1547.     }
  1548.     else
  1549.     {
  1550.         double abr_buffer = 2 * rcc->rate_tolerance * rcc->bitrate;
  1551.         if( rcc->b_2pass )
  1552.         {
  1553.             //FIXME adjust abr_buffer based on distance to the end of the video
  1554.             int64_t diff;
  1555.             int64_t predicted_bits = total_bits;
  1556.             if( rcc->b_vbv )
  1557.             {
  1558.                 if( h->param.i_threads > 1 )
  1559.                 {
  1560.                     int j = h->rc - h->thread[0]->rc;
  1561.                     int i;
  1562.                     for( i=1; i<h->param.i_threads; i++ )
  1563.                     {
  1564.                         x264_t *t = h->thread[ (j+i)%h->param.i_threads ];
  1565.                         double bits = t->rc->frame_size_planned;
  1566.                         if( !t->b_thread_active )
  1567.                             continue;
  1568.                         bits  = X264_MAX(bits, x264_ratecontrol_get_estimated_size(t));
  1569.                         predicted_bits += (int64_t)bits;
  1570.                     }
  1571.                 }
  1572.             }
  1573.             else
  1574.             {
  1575.                 if( h->fenc->i_frame < h->param.i_threads )
  1576.                     predicted_bits += (int64_t)h->fenc->i_frame * rcc->bitrate / rcc->fps;
  1577.                 else
  1578.                     predicted_bits += (int64_t)(h->param.i_threads - 1) * rcc->bitrate / rcc->fps;
  1579.             }
  1580.             diff = predicted_bits - (int64_t)rce.expected_bits;
  1581.             q = rce.new_qscale;
  1582.             q /= x264_clip3f((double)(abr_buffer - diff) / abr_buffer, .5, 2);
  1583.             if( ((h->fenc->i_frame + 1 - h->param.i_threads) >= rcc->fps) &&
  1584.                 (rcc->expected_bits_sum > 0))
  1585.             {
  1586.                 /* Adjust quant based on the difference between
  1587.                  * achieved and expected bitrate so far */
  1588.                 double time = (double)h->fenc->i_frame / rcc->num_entries;
  1589.                 double w = x264_clip3f( time*100, 0.0, 1.0 );
  1590.                 q *= pow( (double)total_bits / rcc->expected_bits_sum, w );
  1591.             }
  1592.             if( rcc->b_vbv )
  1593.             {
  1594.                 /* Do not overflow vbv */
  1595.                 double expected_size = qscale2bits(&rce, q);
  1596.                 double expected_vbv = rcc->buffer_fill + rcc->buffer_rate - expected_size;
  1597.                 double expected_fullness =  rce.expected_vbv / rcc->buffer_size;
  1598.                 double qmax = q*(2 - expected_fullness);
  1599.                 double size_constraint = 1 + expected_fullness;
  1600.                 qmax = X264_MAX(qmax, rce.new_qscale);
  1601.                 if (expected_fullness < .05)
  1602.                     qmax = lmax;
  1603.                 qmax = X264_MIN(qmax, lmax);
  1604.                 while( ((expected_vbv < rce.expected_vbv/size_constraint) && (q < qmax)) ||
  1605.                         ((expected_vbv < 0) && (q < lmax)))
  1606.                 {
  1607.                     q *= 1.05;
  1608.                     expected_size = qscale2bits(&rce, q);
  1609.                     expected_vbv = rcc->buffer_fill + rcc->buffer_rate - expected_size;
  1610.                 }
  1611.                 rcc->last_satd = x264_stack_align( x264_rc_analyse_slice, h );
  1612.             }
  1613.             q = x264_clip3f( q, lmin, lmax );
  1614.         }
  1615.         else /* 1pass ABR */
  1616.         {
  1617.             /* Calculate the quantizer which would have produced the desired
  1618.              * average bitrate if it had been applied to all frames so far.
  1619.              * Then modulate that quant based on the current frame's complexity
  1620.              * relative to the average complexity so far (using the 2pass RCEQ).
  1621.              * Then bias the quant up or down if total size so far was far from
  1622.              * the target.
  1623.              * Result: Depending on the value of rate_tolerance, there is a
  1624.              * tradeoff between quality and bitrate precision. But at large
  1625.              * tolerances, the bit distribution approaches that of 2pass. */
  1626.             double wanted_bits, overflow=1, lmin, lmax;
  1627.             rcc->last_satd = x264_stack_align( x264_rc_analyse_slice, h );
  1628.             rcc->short_term_cplxsum *= 0.5;
  1629.             rcc->short_term_cplxcount *= 0.5;
  1630.             rcc->short_term_cplxsum += rcc->last_satd;
  1631.             rcc->short_term_cplxcount ++;
  1632.             rce.tex_bits = rcc->last_satd;
  1633.             rce.blurred_complexity = rcc->short_term_cplxsum / rcc->short_term_cplxcount;
  1634.             rce.mv_bits = 0;
  1635.             rce.p_count = rcc->nmb;
  1636.             rce.i_count = 0;
  1637.             rce.s_count = 0;
  1638.             rce.qscale = 1;
  1639.             rce.pict_type = pict_type;
  1640.             if( h->param.rc.i_rc_method == X264_RC_CRF )
  1641.             {
  1642.                 q = get_qscale( h, &rce, rcc->rate_factor_constant, h->fenc->i_frame );
  1643.             }
  1644.             else
  1645.             {
  1646.                 int i_frame_done = h->fenc->i_frame + 1 - h->param.i_threads;
  1647.                 q = get_qscale( h, &rce, rcc->wanted_bits_window / rcc->cplxr_sum, h->fenc->i_frame );
  1648.                 // FIXME is it simpler to keep track of wanted_bits in ratecontrol_end?
  1649.                 wanted_bits = i_frame_done * rcc->bitrate / rcc->fps;
  1650.                 if( wanted_bits > 0 )
  1651.                 {
  1652.                     abr_buffer *= X264_MAX( 1, sqrt(i_frame_done/25) );
  1653.                     overflow = x264_clip3f( 1.0 + (total_bits - wanted_bits) / abr_buffer, .5, 2 );
  1654.                     q *= overflow;
  1655.                 }
  1656.             }
  1657.             if( pict_type == SLICE_TYPE_I && h->param.i_keyint_max > 1
  1658.                 /* should test _next_ pict type, but that isn't decided yet */
  1659.                 && rcc->last_non_b_pict_type != SLICE_TYPE_I )
  1660.             {
  1661.                 q = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
  1662.                 q /= fabs( h->param.rc.f_ip_factor );
  1663.             }
  1664.             else if( h->i_frame > 0 )
  1665.             {
  1666.                 /* Asymmetric clipping, because symmetric would prevent
  1667.                  * overflow control in areas of rapidly oscillating complexity */
  1668.                 lmin = rcc->last_qscale_for[pict_type] / rcc->lstep;
  1669.                 lmax = rcc->last_qscale_for[pict_type] * rcc->lstep;
  1670.                 if( overflow > 1.1 && h->i_frame > 3 )
  1671.                     lmax *= rcc->lstep;
  1672.                 else if( overflow < 0.9 )
  1673.                     lmin /= rcc->lstep;
  1674.                 q = x264_clip3f(q, lmin, lmax);
  1675.             }
  1676.             else if( h->param.rc.i_rc_method == X264_RC_CRF )
  1677.             {
  1678.                 q = qp2qscale( ABR_INIT_QP ) / fabs( h->param.rc.f_ip_factor );
  1679.             }
  1680.             rcc->qp_novbv = qscale2qp(q);
  1681.             //FIXME use get_diff_limited_q() ?
  1682.             q = clip_qscale( h, pict_type, q );
  1683.         }
  1684.         rcc->last_qscale_for[pict_type] =
  1685.         rcc->last_qscale = q;
  1686.         if( !(rcc->b_2pass && !rcc->b_vbv) && h->fenc->i_frame == 0 )
  1687.             rcc->last_qscale_for[SLICE_TYPE_P] = q;
  1688.         if( rcc->b_2pass && rcc->b_vbv )
  1689.             rcc->frame_size_planned = qscale2bits(&rce, q);
  1690.         else
  1691.             rcc->frame_size_planned = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
  1692.         x264_ratecontrol_set_estimated_size(h, rcc->frame_size_planned);
  1693.         return q;
  1694.     }
  1695. }
  1696. void x264_thread_sync_ratecontrol( x264_t *cur, x264_t *prev, x264_t *next )
  1697. {
  1698.     if( cur != prev )
  1699.     {
  1700. #define COPY(var) memcpy(&cur->rc->var, &prev->rc->var, sizeof(cur->rc->var))
  1701.         /* these vars are updated in x264_ratecontrol_start()
  1702.          * so copy them from the context that most recently started (prev)
  1703.          * to the context that's about to start (cur).
  1704.          */
  1705.         COPY(accum_p_qp);
  1706.         COPY(accum_p_norm);
  1707.         COPY(last_satd);
  1708.         COPY(last_rceq);
  1709.         COPY(last_qscale_for);
  1710.         COPY(last_non_b_pict_type);
  1711.         COPY(short_term_cplxsum);
  1712.         COPY(short_term_cplxcount);
  1713.         COPY(bframes);
  1714.         COPY(prev_zone);
  1715. #undef COPY
  1716.     }
  1717.     if( cur != next )
  1718.     {
  1719. #define COPY(var) next->rc->var = cur->rc->var
  1720.         /* these vars are updated in x264_ratecontrol_end()
  1721.          * so copy them from the context that most recently ended (cur)
  1722.          * to the context that's about to end (next)
  1723.          */
  1724.         COPY(cplxr_sum);
  1725.         COPY(expected_bits_sum);
  1726.         COPY(wanted_bits_window);
  1727.         COPY(bframe_bits);
  1728. #undef COPY
  1729.     }
  1730.     //FIXME row_preds[] (not strictly necessary, but would improve prediction)
  1731.     /* the rest of the variables are either constant or thread-local */
  1732. }
  1733. static int find_underflow( x264_t *h, double *fills, int *t0, int *t1, int over )
  1734. {
  1735.     /* find an interval ending on an overflow or underflow (depending on whether
  1736.      * we're adding or removing bits), and starting on the earliest frame that
  1737.      * can influence the buffer fill of that end frame. */
  1738.     x264_ratecontrol_t *rcc = h->rc;
  1739.     const double buffer_min = (over ? .1 : .1) * rcc->buffer_size;
  1740.     const double buffer_max = .9 * rcc->buffer_size;
  1741.     double fill = fills[*t0-1];
  1742.     double parity = over ? 1. : -1.;
  1743.     int i, start=-1, end=-1;
  1744.     for(i = *t0; i < rcc->num_entries; i++)
  1745.     {
  1746.         fill += (rcc->buffer_rate - qscale2bits(&rcc->entry[i], rcc->entry[i].new_qscale)) * parity;
  1747.         fill = x264_clip3f(fill, 0, rcc->buffer_size);
  1748.         fills[i] = fill;
  1749.         if(fill <= buffer_min || i == 0)
  1750.         {
  1751.             if(end >= 0)
  1752.                 break;
  1753.             start = i;
  1754.         }
  1755.         else if(fill >= buffer_max && start >= 0)
  1756.             end = i;
  1757.     }
  1758.     *t0 = start;
  1759.     *t1 = end;
  1760.     return start>=0 && end>=0;
  1761. }
  1762. static int fix_underflow( x264_t *h, int t0, int t1, double adjustment, double qscale_min, double qscale_max)
  1763. {
  1764.     x264_ratecontrol_t *rcc = h->rc;
  1765.     double qscale_orig, qscale_new;
  1766.     int i;
  1767.     int adjusted = 0;
  1768.     if(t0 > 0)
  1769.         t0++;
  1770.     for(i = t0; i <= t1; i++)
  1771.     {
  1772.         qscale_orig = rcc->entry[i].new_qscale;
  1773.         qscale_orig = x264_clip3f(qscale_orig, qscale_min, qscale_max);
  1774.         qscale_new  = qscale_orig * adjustment;
  1775.         qscale_new  = x264_clip3f(qscale_new, qscale_min, qscale_max);
  1776.         rcc->entry[i].new_qscale = qscale_new;
  1777.         adjusted = adjusted || (qscale_new != qscale_orig);
  1778.     }
  1779.     return adjusted;
  1780. }
  1781. static double count_expected_bits( x264_t *h )
  1782. {
  1783.     x264_ratecontrol_t *rcc = h->rc;
  1784.     double expected_bits = 0;
  1785.     int i;
  1786.     for(i = 0; i < rcc->num_entries; i++)
  1787.     {
  1788.         ratecontrol_entry_t *rce = &rcc->entry[i];
  1789.         rce->expected_bits = expected_bits;
  1790.         expected_bits += qscale2bits(rce, rce->new_qscale);
  1791.     }
  1792.     return expected_bits;
  1793. }
  1794. static int vbv_pass2( x264_t *h )
  1795. {
  1796.     /* for each interval of buffer_full .. underflow, uniformly increase the qp of all
  1797.      * frames in the interval until either buffer is full at some intermediate frame or the
  1798.      * last frame in the interval no longer underflows.  Recompute intervals and repeat.
  1799.      * Then do the converse to put bits back into overflow areas until target size is met */
  1800.     x264_ratecontrol_t *rcc = h->rc;
  1801.     double *fills;
  1802.     double all_available_bits = h->param.rc.i_bitrate * 1000. * rcc->num_entries / rcc->fps;
  1803.     double expected_bits = 0;
  1804.     double adjustment;
  1805.     double prev_bits = 0;
  1806.     int i, t0, t1;
  1807.     double qscale_min = qp2qscale(h->param.rc.i_qp_min);
  1808.     double qscale_max = qp2qscale(h->param.rc.i_qp_max);
  1809.     int iterations = 0;
  1810.     int adj_min, adj_max;
  1811.     CHECKED_MALLOC( fills, (rcc->num_entries+1)*sizeof(double) );
  1812.     fills++;
  1813.     /* adjust overall stream size */
  1814.     do
  1815.     {
  1816.         iterations++;
  1817.         prev_bits = expected_bits;
  1818.         if(expected_bits != 0)
  1819.         {   /* not first iteration */
  1820.             adjustment = X264_MAX(X264_MIN(expected_bits / all_available_bits, 0.999), 0.9);
  1821.             fills[-1] = rcc->buffer_size * h->param.rc.f_vbv_buffer_init;
  1822.             t0 = 0;
  1823.             /* fix overflows */
  1824.             adj_min = 1;
  1825.             while(adj_min && find_underflow(h, fills, &t0, &t1, 1))
  1826.             {
  1827.                 adj_min = fix_underflow(h, t0, t1, adjustment, qscale_min, qscale_max);
  1828.                 t0 = t1;
  1829.             }
  1830.         }
  1831.         fills[-1] = rcc->buffer_size * (1. - h->param.rc.f_vbv_buffer_init);
  1832.         t0 = 0;
  1833.         /* fix underflows -- should be done after overflow, as we'd better undersize target than underflowing VBV */
  1834.         adj_max = 1;
  1835.         while(adj_max && find_underflow(h, fills, &t0, &t1, 0))
  1836.             adj_max = fix_underflow(h, t0, t1, 1.001, qscale_min, qscale_max);
  1837.         expected_bits = count_expected_bits(h);
  1838.     } while((expected_bits < .995*all_available_bits) && ((int64_t)(expected_bits+.5) > (int64_t)(prev_bits+.5)) );
  1839.     if (!adj_max)
  1840.         x264_log( h, X264_LOG_WARNING, "vbv-maxrate issue, qpmax or vbv-maxrate too lown");
  1841.     /* store expected vbv filling values for tracking when encoding */
  1842.     for(i = 0; i < rcc->num_entries; i++)
  1843.         rcc->entry[i].expected_vbv = rcc->buffer_size - fills[i];
  1844.     x264_free(fills-1);
  1845.     return 0;
  1846. fail:
  1847.     return -1;
  1848. }
  1849. static int init_pass2( x264_t *h )
  1850. {
  1851.     x264_ratecontrol_t *rcc = h->rc;
  1852.     uint64_t all_const_bits = 0;
  1853.     uint64_t all_available_bits = (uint64_t)(h->param.rc.i_bitrate * 1000. * rcc->num_entries / rcc->fps);
  1854.     double rate_factor, step, step_mult;
  1855.     double qblur = h->param.rc.f_qblur;
  1856.     double cplxblur = h->param.rc.f_complexity_blur;
  1857.     const int filter_size = (int)(qblur*4) | 1;
  1858.     double expected_bits;
  1859.     double *qscale, *blurred_qscale;
  1860.     int i;
  1861.     /* find total/average complexity & const_bits */
  1862.     for(i=0; i<rcc->num_entries; i++)
  1863.     {
  1864.         ratecontrol_entry_t *rce = &rcc->entry[i];
  1865.         all_const_bits += rce->misc_bits;
  1866.     }
  1867.     if( all_available_bits < all_const_bits)
  1868.     {
  1869.         x264_log(h, X264_LOG_ERROR, "requested bitrate is too low. estimated minimum is %d kbpsn",
  1870.                  (int)(all_const_bits * rcc->fps / (rcc->num_entries * 1000.)));
  1871.         return -1;
  1872.     }
  1873.     /* Blur complexities, to reduce local fluctuation of QP.
  1874.      * We don't blur the QPs directly, because then one very simple frame
  1875.      * could drag down the QP of a nearby complex frame and give it more
  1876.      * bits than intended. */
  1877.     for(i=0; i<rcc->num_entries; i++)
  1878.     {
  1879.         ratecontrol_entry_t *rce = &rcc->entry[i];
  1880.         double weight_sum = 0;
  1881.         double cplx_sum = 0;
  1882.         double weight = 1.0;
  1883.         double gaussian_weight;
  1884.         int j;
  1885.         /* weighted average of cplx of future frames */
  1886.         for(j=1; j<cplxblur*2 && j<rcc->num_entries-i; j++)
  1887.         {
  1888.             ratecontrol_entry_t *rcj = &rcc->entry[i+j];
  1889.             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
  1890.             if(weight < .0001)
  1891.                 break;
  1892.             gaussian_weight = weight * exp(-j*j/200.0);
  1893.             weight_sum += gaussian_weight;
  1894.             cplx_sum += gaussian_weight * (qscale2bits(rcj, 1) - rcj->misc_bits);
  1895.         }
  1896.         /* weighted average of cplx of past frames */
  1897.         weight = 1.0;
  1898.         for(j=0; j<=cplxblur*2 && j<=i; j++)
  1899.         {
  1900.             ratecontrol_entry_t *rcj = &rcc->entry[i-j];
  1901.             gaussian_weight = weight * exp(-j*j/200.0);
  1902.             weight_sum += gaussian_weight;
  1903.             cplx_sum += gaussian_weight * (qscale2bits(rcj, 1) - rcj->misc_bits);
  1904.             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
  1905.             if(weight < .0001)
  1906.                 break;
  1907.         }
  1908.         rce->blurred_complexity = cplx_sum / weight_sum;
  1909.     }
  1910.     CHECKED_MALLOC( qscale, sizeof(double)*rcc->num_entries );
  1911.     if( filter_size > 1 )
  1912.         CHECKED_MALLOC( blurred_qscale, sizeof(double)*rcc->num_entries );
  1913.     else
  1914.         blurred_qscale = qscale;
  1915.     /* Search for a factor which, when multiplied by the RCEQ values from
  1916.      * each frame, adds up to the desired total size.
  1917.      * There is no exact closed-form solution because of VBV constraints and
  1918.      * because qscale2bits is not invertible, but we can start with the simple
  1919.      * approximation of scaling the 1st pass by the ratio of bitrates.
  1920.      * The search range is probably overkill, but speed doesn't matter here. */
  1921.     expected_bits = 1;
  1922.     for(i=0; i<rcc->num_entries; i++)
  1923.         expected_bits += qscale2bits(&rcc->entry[i], get_qscale(h, &rcc->entry[i], 1.0, i));
  1924.     step_mult = all_available_bits / expected_bits;
  1925.     rate_factor = 0;
  1926.     for(step = 1E4 * step_mult; step > 1E-7 * step_mult; step *= 0.5)
  1927.     {
  1928.         expected_bits = 0;
  1929.         rate_factor += step;
  1930.         rcc->last_non_b_pict_type = -1;
  1931.         rcc->last_accum_p_norm = 1;
  1932.         rcc->accum_p_norm = 0;
  1933.         /* find qscale */
  1934.         for(i=0; i<rcc->num_entries; i++)
  1935.         {
  1936.             qscale[i] = get_qscale(h, &rcc->entry[i], rate_factor, i);
  1937.         }
  1938.         /* fixed I/B qscale relative to P */
  1939.         for(i=rcc->num_entries-1; i>=0; i--)
  1940.         {
  1941.             qscale[i] = get_diff_limited_q(h, &rcc->entry[i], qscale[i]);
  1942.             assert(qscale[i] >= 0);
  1943.         }
  1944.         /* smooth curve */
  1945.         if(filter_size > 1)
  1946.         {
  1947.             assert(filter_size%2==1);
  1948.             for(i=0; i<rcc->num_entries; i++)
  1949.             {
  1950.                 ratecontrol_entry_t *rce = &rcc->entry[i];
  1951.                 int j;
  1952.                 double q=0.0, sum=0.0;
  1953.                 for(j=0; j<filter_size; j++)
  1954.                 {
  1955.                     int index = i+j-filter_size/2;
  1956.                     double d = index-i;
  1957.                     double coeff = qblur==0 ? 1.0 : exp(-d*d/(qblur*qblur));
  1958.                     if(index < 0 || index >= rcc->num_entries)
  1959.                         continue;
  1960.                     if(rce->pict_type != rcc->entry[index].pict_type)
  1961.                         continue;
  1962.                     q += qscale[index] * coeff;
  1963.                     sum += coeff;
  1964.                 }
  1965.                 blurred_qscale[i] = q/sum;
  1966.             }
  1967.         }
  1968.         /* find expected bits */
  1969.         for(i=0; i<rcc->num_entries; i++)
  1970.         {
  1971.             ratecontrol_entry_t *rce = &rcc->entry[i];
  1972.             rce->new_qscale = clip_qscale(h, rce->pict_type, blurred_qscale[i]);
  1973.             assert(rce->new_qscale >= 0);
  1974.             expected_bits += qscale2bits(rce, rce->new_qscale);
  1975.         }
  1976.         if(expected_bits > all_available_bits) rate_factor -= step;
  1977.     }
  1978.     x264_free(qscale);
  1979.     if(filter_size > 1)
  1980.         x264_free(blurred_qscale);
  1981.     if(rcc->b_vbv)
  1982.         if( vbv_pass2( h ) )
  1983.             return -1;
  1984.     expected_bits = count_expected_bits(h);
  1985.     if(fabs(expected_bits/all_available_bits - 1.0) > 0.01)
  1986.     {
  1987.         double avgq = 0;
  1988.         for(i=0; i<rcc->num_entries; i++)
  1989.             avgq += rcc->entry[i].new_qscale;
  1990.         avgq = qscale2qp(avgq / rcc->num_entries);
  1991.         if ((expected_bits > all_available_bits) || (!rcc->b_vbv))
  1992.             x264_log(h, X264_LOG_WARNING, "Error: 2pass curve failed to convergen");
  1993.         x264_log(h, X264_LOG_WARNING, "target: %.2f kbit/s, expected: %.2f kbit/s, avg QP: %.4fn",
  1994.                  (float)h->param.rc.i_bitrate,
  1995.                  expected_bits * rcc->fps / (rcc->num_entries * 1000.),
  1996.                  avgq);
  1997.         if(expected_bits < all_available_bits && avgq < h->param.rc.i_qp_min + 2)
  1998.         {
  1999.             if(h->param.rc.i_qp_min > 0)
  2000.                 x264_log(h, X264_LOG_WARNING, "try reducing target bitrate or reducing qp_min (currently %d)n", h->param.rc.i_qp_min);
  2001.             else
  2002.                 x264_log(h, X264_LOG_WARNING, "try reducing target bitraten");
  2003.         }
  2004.         else if(expected_bits > all_available_bits && avgq > h->param.rc.i_qp_max - 2)
  2005.         {
  2006.             if(h->param.rc.i_qp_max < 51)
  2007.                 x264_log(h, X264_LOG_WARNING, "try increasing target bitrate or increasing qp_max (currently %d)n", h->param.rc.i_qp_max);
  2008.             else
  2009.                 x264_log(h, X264_LOG_WARNING, "try increasing target bitraten");
  2010.         }
  2011.         else if(!(rcc->b_2pass && rcc->b_vbv))
  2012.             x264_log(h, X264_LOG_WARNING, "internal errorn");
  2013.     }
  2014.     return 0;
  2015. fail:
  2016.     return -1;
  2017. }