]> git.sesse.net Git - x264/blob - encoder/ratecontrol.c
Export the average effective CRF of each frame
[x264] / encoder / ratecontrol.c
1 /*****************************************************************************
2  * ratecontrol.c: ratecontrol
3  *****************************************************************************
4  * Copyright (C) 2005-2012 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  *          Fiona Glaser <fiona@x264.com>
10  *          Måns Rullgård <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  * This program is also available under a commercial proprietary license.
27  * For more information, contact us at licensing@x264.com.
28  *****************************************************************************/
29
30 #define _ISOC99_SOURCE
31 #undef NDEBUG // always check asserts, the speed effect is far too small to disable them
32
33 #include "common/common.h"
34 #include "ratecontrol.h"
35 #include "me.h"
36
37 typedef struct
38 {
39     int pict_type;
40     int frame_type;
41     int kept_as_ref;
42     double qscale;
43     int mv_bits;
44     int tex_bits;
45     int misc_bits;
46     uint64_t expected_bits; /*total expected bits up to the current frame (current one excluded)*/
47     double expected_vbv;
48     double new_qscale;
49     int new_qp;
50     int i_count;
51     int p_count;
52     int s_count;
53     float blurred_complexity;
54     char direct_mode;
55     int16_t weight[3][2];
56     int16_t i_weight_denom[2];
57     int refcount[16];
58     int refs;
59     int64_t i_duration;
60     int64_t i_cpb_duration;
61 } ratecontrol_entry_t;
62
63 typedef struct
64 {
65     float coeff_min;
66     float coeff;
67     float count;
68     float decay;
69     float offset;
70 } predictor_t;
71
72 struct x264_ratecontrol_t
73 {
74     /* constants */
75     int b_abr;
76     int b_2pass;
77     int b_vbv;
78     int b_vbv_min_rate;
79     double fps;
80     double bitrate;
81     double rate_tolerance;
82     double qcompress;
83     int nmb;                    /* number of macroblocks in a frame */
84     int qp_constant[3];
85
86     /* current frame */
87     ratecontrol_entry_t *rce;
88     int qp;                     /* qp for current frame */
89     float qpm;                  /* qp for current macroblock: precise float for AQ */
90     float qpa_rc;               /* average of macroblocks' qp before aq */
91     float qpa_rc_prev;
92     int   qpa_aq;               /* average of macroblocks' qp after aq */
93     int   qpa_aq_prev;
94     float qp_novbv;             /* QP for the current frame if 1-pass VBV was disabled. */
95
96     /* VBV stuff */
97     double buffer_size;
98     int64_t buffer_fill_final;
99     double buffer_fill;         /* planned buffer, if all in-progress frames hit their bit budget */
100     double buffer_rate;         /* # of bits added to buffer_fill after each frame */
101     double vbv_max_rate;        /* # of bits added to buffer_fill per second */
102     predictor_t *pred;          /* predict frame size from satd */
103     int single_frame_vbv;
104     double rate_factor_max_increment; /* Don't allow RF above (CRF + this value). */
105
106     /* ABR stuff */
107     int    last_satd;
108     double last_rceq;
109     double cplxr_sum;           /* sum of bits*qscale/rceq */
110     double expected_bits_sum;   /* sum of qscale2bits after rceq, ratefactor, and overflow, only includes finished frames */
111     int64_t filler_bits_sum;    /* sum in bits of finished frames' filler data */
112     double wanted_bits_window;  /* target bitrate * window */
113     double cbr_decay;
114     double short_term_cplxsum;
115     double short_term_cplxcount;
116     double rate_factor_constant;
117     double ip_offset;
118     double pb_offset;
119
120     /* 2pass stuff */
121     FILE *p_stat_file_out;
122     char *psz_stat_file_tmpname;
123     FILE *p_mbtree_stat_file_out;
124     char *psz_mbtree_stat_file_tmpname;
125     char *psz_mbtree_stat_file_name;
126     FILE *p_mbtree_stat_file_in;
127
128     int num_entries;            /* number of ratecontrol_entry_ts */
129     ratecontrol_entry_t *entry; /* FIXME: copy needed data and free this once init is done */
130     double last_qscale;
131     double last_qscale_for[3];  /* last qscale for a specific pict type, used for max_diff & ipb factor stuff */
132     int last_non_b_pict_type;
133     double accum_p_qp;          /* for determining I-frame quant */
134     double accum_p_norm;
135     double last_accum_p_norm;
136     double lmin[3];             /* min qscale by frame type */
137     double lmax[3];
138     double lstep;               /* max change (multiply) in qscale per frame */
139     struct
140     {
141         uint16_t *qp_buffer[2]; /* Global buffers for converting MB-tree quantizer data. */
142         int qpbuf_pos;          /* In order to handle pyramid reordering, QP buffer acts as a stack.
143                                  * This value is the current position (0 or 1). */
144         int src_mb_count;
145
146         /* For rescaling */
147         int rescale_enabled;
148         float *scale_buffer[2]; /* Intermediate buffers */
149         int filtersize[2];      /* filter size (H/V) */
150         float *coeffs[2];
151         int *pos[2];
152         int srcdim[2];          /* Source dimensions (W/H) */
153     } mbtree;
154
155     /* MBRC stuff */
156     float frame_size_estimated; /* Access to this variable must be atomic: double is
157                                  * not atomic on all arches we care about */
158     double frame_size_maximum;  /* Maximum frame size due to MinCR */
159     double frame_size_planned;
160     double slice_size_planned;
161     predictor_t (*row_pred)[2];
162     predictor_t row_preds[3][2];
163     predictor_t *pred_b_from_p; /* predict B-frame size from P-frame satd */
164     int bframes;                /* # consecutive B-frames before this P-frame */
165     int bframe_bits;            /* total cost of those frames */
166
167     int i_zones;
168     x264_zone_t *zones;
169     x264_zone_t *prev_zone;
170
171     /* hrd stuff */
172     int initial_cpb_removal_delay;
173     int initial_cpb_removal_delay_offset;
174     double nrt_first_access_unit; /* nominal removal time */
175     double previous_cpb_final_arrival_time;
176     uint64_t hrd_multiply_denom;
177 };
178
179
180 static int parse_zones( x264_t *h );
181 static int init_pass2(x264_t *);
182 static float rate_estimate_qscale( x264_t *h );
183 static int update_vbv( x264_t *h, int bits );
184 static void update_vbv_plan( x264_t *h, int overhead );
185 static float predict_size( predictor_t *p, float q, float var );
186 static void update_predictor( predictor_t *p, float q, float var, float bits );
187
188 #define CMP_OPT_FIRST_PASS( opt, param_val )\
189 {\
190     if( ( p = strstr( opts, opt "=" ) ) && sscanf( p, opt "=%d" , &i ) && param_val != i )\
191     {\
192         x264_log( h, X264_LOG_ERROR, "different " opt " setting than first pass (%d vs %d)\n", param_val, i );\
193         return -1;\
194     }\
195 }
196
197 /* Terminology:
198  * qp = h.264's quantizer
199  * qscale = linearized quantizer = Lagrange multiplier
200  */
201 static inline float qp2qscale( float qp )
202 {
203     return 0.85f * powf( 2.0f, ( qp - 12.0f ) / 6.0f );
204 }
205 static inline float qscale2qp( float qscale )
206 {
207     return 12.0f + 6.0f * log2f( qscale/0.85f );
208 }
209
210 /* Texture bitrate is not quite inversely proportional to qscale,
211  * probably due the the changing number of SKIP blocks.
212  * MV bits level off at about qp<=12, because the lambda used
213  * for motion estimation is constant there. */
214 static inline double qscale2bits( ratecontrol_entry_t *rce, double qscale )
215 {
216     if( qscale<0.1 )
217         qscale = 0.1;
218     return (rce->tex_bits + .1) * pow( rce->qscale / qscale, 1.1 )
219            + rce->mv_bits * pow( X264_MAX(rce->qscale, 1) / X264_MAX(qscale, 1), 0.5 )
220            + rce->misc_bits;
221 }
222
223 static ALWAYS_INLINE uint32_t ac_energy_var( uint64_t sum_ssd, int shift, x264_frame_t *frame, int i, int b_store )
224 {
225     uint32_t sum = sum_ssd;
226     uint32_t ssd = sum_ssd >> 32;
227     if( b_store )
228     {
229         frame->i_pixel_sum[i] += sum;
230         frame->i_pixel_ssd[i] += ssd;
231     }
232     return ssd - ((uint64_t)sum * sum >> shift);
233 }
234
235 static ALWAYS_INLINE uint32_t ac_energy_plane( x264_t *h, int mb_x, int mb_y, x264_frame_t *frame, int i, int b_chroma, int b_field, int b_store )
236 {
237     int height = b_chroma ? 16>>CHROMA_V_SHIFT : 16;
238     int stride = frame->i_stride[i];
239     int offset = b_field
240         ? 16 * mb_x + height * (mb_y&~1) * stride + (mb_y&1) * stride
241         : 16 * mb_x + height * mb_y * stride;
242     stride <<= b_field;
243     if( b_chroma )
244     {
245         ALIGNED_ARRAY_16( pixel, pix,[FENC_STRIDE*16] );
246         int chromapix = h->luma2chroma_pixel[PIXEL_16x16];
247         int shift = 7 - CHROMA_V_SHIFT;
248
249         h->mc.load_deinterleave_chroma_fenc( pix, frame->plane[1] + offset, stride, height );
250         return ac_energy_var( h->pixf.var[chromapix]( pix,               FENC_STRIDE ), shift, frame, 1, b_store )
251              + ac_energy_var( h->pixf.var[chromapix]( pix+FENC_STRIDE/2, FENC_STRIDE ), shift, frame, 2, b_store );
252     }
253     else
254         return ac_energy_var( h->pixf.var[PIXEL_16x16]( frame->plane[i] + offset, stride ), 8, frame, i, b_store );
255 }
256
257 // Find the total AC energy of the block in all planes.
258 static NOINLINE uint32_t x264_ac_energy_mb( x264_t *h, int mb_x, int mb_y, x264_frame_t *frame )
259 {
260     /* This function contains annoying hacks because GCC has a habit of reordering emms
261      * and putting it after floating point ops.  As a result, we put the emms at the end of the
262      * function and make sure that its always called before the float math.  Noinline makes
263      * sure no reordering goes on. */
264     uint32_t var;
265     x264_prefetch_fenc( h, frame, mb_x, mb_y );
266     if( h->mb.b_adaptive_mbaff )
267     {
268         /* We don't know the super-MB mode we're going to pick yet, so
269          * simply try both and pick the lower of the two. */
270         uint32_t var_interlaced, var_progressive;
271         var_interlaced   = ac_energy_plane( h, mb_x, mb_y, frame, 0, 0, 1, 1 );
272         var_progressive  = ac_energy_plane( h, mb_x, mb_y, frame, 0, 0, 0, 0 );
273         if( CHROMA444 )
274         {
275             var_interlaced  += ac_energy_plane( h, mb_x, mb_y, frame, 1, 0, 1, 1 );
276             var_progressive += ac_energy_plane( h, mb_x, mb_y, frame, 1, 0, 0, 0 );
277             var_interlaced  += ac_energy_plane( h, mb_x, mb_y, frame, 2, 0, 1, 1 );
278             var_progressive += ac_energy_plane( h, mb_x, mb_y, frame, 2, 0, 0, 0 );
279         }
280         else
281         {
282             var_interlaced  += ac_energy_plane( h, mb_x, mb_y, frame, 1, 1, 1, 1 );
283             var_progressive += ac_energy_plane( h, mb_x, mb_y, frame, 1, 1, 0, 0 );
284         }
285         var = X264_MIN( var_interlaced, var_progressive );
286     }
287     else
288     {
289         var  = ac_energy_plane( h, mb_x, mb_y, frame, 0, 0, PARAM_INTERLACED, 1 );
290         if( CHROMA444 )
291         {
292             var += ac_energy_plane( h, mb_x, mb_y, frame, 1, 0, PARAM_INTERLACED, 1 );
293             var += ac_energy_plane( h, mb_x, mb_y, frame, 2, 0, PARAM_INTERLACED, 1 );
294         }
295         else
296             var += ac_energy_plane( h, mb_x, mb_y, frame, 1, 1, PARAM_INTERLACED, 1 );
297     }
298     x264_emms();
299     return var;
300 }
301
302 void x264_adaptive_quant_frame( x264_t *h, x264_frame_t *frame, float *quant_offsets )
303 {
304     /* constants chosen to result in approximately the same overall bitrate as without AQ.
305      * FIXME: while they're written in 5 significant digits, they're only tuned to 2. */
306     float strength;
307     float avg_adj = 0.f;
308     /* Initialize frame stats */
309     for( int i = 0; i < 3; i++ )
310     {
311         frame->i_pixel_sum[i] = 0;
312         frame->i_pixel_ssd[i] = 0;
313     }
314
315     /* Degenerate cases */
316     if( h->param.rc.i_aq_mode == X264_AQ_NONE || h->param.rc.f_aq_strength == 0 )
317     {
318         /* Need to init it anyways for MB tree */
319         if( h->param.rc.i_aq_mode && h->param.rc.f_aq_strength == 0 )
320         {
321             if( quant_offsets )
322             {
323                 for( int mb_xy = 0; mb_xy < h->mb.i_mb_count; mb_xy++ )
324                     frame->f_qp_offset[mb_xy] = frame->f_qp_offset_aq[mb_xy] = quant_offsets[mb_xy];
325                 if( h->frames.b_have_lowres )
326                     for( int mb_xy = 0; mb_xy < h->mb.i_mb_count; mb_xy++ )
327                         frame->i_inv_qscale_factor[mb_xy] = x264_exp2fix8( frame->f_qp_offset[mb_xy] );
328             }
329             else
330             {
331                 memset( frame->f_qp_offset, 0, h->mb.i_mb_count * sizeof(float) );
332                 memset( frame->f_qp_offset_aq, 0, h->mb.i_mb_count * sizeof(float) );
333                 if( h->frames.b_have_lowres )
334                     for( int mb_xy = 0; mb_xy < h->mb.i_mb_count; mb_xy++ )
335                         frame->i_inv_qscale_factor[mb_xy] = 256;
336             }
337         }
338         /* Need variance data for weighted prediction */
339         if( h->param.analyse.i_weighted_pred )
340         {
341             for( int mb_y = 0; mb_y < h->mb.i_mb_height; mb_y++ )
342                 for( int mb_x = 0; mb_x < h->mb.i_mb_width; mb_x++ )
343                     x264_ac_energy_mb( h, mb_x, mb_y, frame );
344         }
345         else
346             return;
347     }
348     /* Actual adaptive quantization */
349     else
350     {
351         if( h->param.rc.i_aq_mode == X264_AQ_AUTOVARIANCE )
352         {
353             float bit_depth_correction = powf(1 << (BIT_DEPTH-8), 0.5f);
354             float avg_adj_pow2 = 0.f;
355             for( int mb_y = 0; mb_y < h->mb.i_mb_height; mb_y++ )
356                 for( int mb_x = 0; mb_x < h->mb.i_mb_width; mb_x++ )
357                 {
358                     uint32_t energy = x264_ac_energy_mb( h, mb_x, mb_y, frame );
359                     float qp_adj = powf( energy + 1, 0.125f );
360                     frame->f_qp_offset[mb_x + mb_y*h->mb.i_mb_stride] = qp_adj;
361                     avg_adj += qp_adj;
362                     avg_adj_pow2 += qp_adj * qp_adj;
363                 }
364             avg_adj /= h->mb.i_mb_count;
365             avg_adj_pow2 /= h->mb.i_mb_count;
366             strength = h->param.rc.f_aq_strength * avg_adj / bit_depth_correction;
367             avg_adj = avg_adj - 0.5f * (avg_adj_pow2 - (14.f * bit_depth_correction)) / avg_adj;
368         }
369         else
370             strength = h->param.rc.f_aq_strength * 1.0397f;
371
372         for( int mb_y = 0; mb_y < h->mb.i_mb_height; mb_y++ )
373             for( int mb_x = 0; mb_x < h->mb.i_mb_width; mb_x++ )
374             {
375                 float qp_adj;
376                 int mb_xy = mb_x + mb_y*h->mb.i_mb_stride;
377                 if( h->param.rc.i_aq_mode == X264_AQ_AUTOVARIANCE )
378                 {
379                     qp_adj = frame->f_qp_offset[mb_xy];
380                     qp_adj = strength * (qp_adj - avg_adj);
381                 }
382                 else
383                 {
384                     uint32_t energy = x264_ac_energy_mb( h, mb_x, mb_y, frame );
385                     qp_adj = strength * (x264_log2( X264_MAX(energy, 1) ) - (14.427f + 2*(BIT_DEPTH-8)));
386                 }
387                 if( quant_offsets )
388                     qp_adj += quant_offsets[mb_xy];
389                 frame->f_qp_offset[mb_xy] =
390                 frame->f_qp_offset_aq[mb_xy] = qp_adj;
391                 if( h->frames.b_have_lowres )
392                     frame->i_inv_qscale_factor[mb_xy] = x264_exp2fix8(qp_adj);
393             }
394     }
395
396     /* Remove mean from SSD calculation */
397     for( int i = 0; i < 3; i++ )
398     {
399         uint64_t ssd = frame->i_pixel_ssd[i];
400         uint64_t sum = frame->i_pixel_sum[i];
401         int width  = 16*h->mb.i_mb_width  >> (i && CHROMA_H_SHIFT);
402         int height = 16*h->mb.i_mb_height >> (i && CHROMA_V_SHIFT);
403         frame->i_pixel_ssd[i] = ssd - (sum * sum + width * height / 2) / (width * height);
404     }
405 }
406
407 static int x264_macroblock_tree_rescale_init( x264_t *h, x264_ratecontrol_t *rc )
408 {
409     /* Use fractional QP array dimensions to compensate for edge padding */
410     float srcdim[2] = {rc->mbtree.srcdim[0] / 16.f, rc->mbtree.srcdim[1] / 16.f};
411     float dstdim[2] = {    h->param.i_width / 16.f,    h->param.i_height / 16.f};
412     int srcdimi[2] = {ceil(srcdim[0]), ceil(srcdim[1])};
413     int dstdimi[2] = {ceil(dstdim[0]), ceil(dstdim[1])};
414     if( PARAM_INTERLACED )
415     {
416         srcdimi[1] = (srcdimi[1]+1)&~1;
417         dstdimi[1] = (dstdimi[1]+1)&~1;
418     }
419
420     rc->mbtree.src_mb_count = srcdimi[0] * srcdimi[1];
421
422     CHECKED_MALLOC( rc->mbtree.qp_buffer[0], rc->mbtree.src_mb_count * sizeof(uint16_t) );
423     if( h->param.i_bframe_pyramid && h->param.rc.b_stat_read )
424         CHECKED_MALLOC( rc->mbtree.qp_buffer[1], rc->mbtree.src_mb_count * sizeof(uint16_t) );
425     rc->mbtree.qpbuf_pos = -1;
426
427     /* No rescaling to do */
428     if( srcdimi[0] == dstdimi[0] && srcdimi[1] == dstdimi[1] )
429         return 0;
430
431     rc->mbtree.rescale_enabled = 1;
432
433     /* Allocate intermediate scaling buffers */
434     CHECKED_MALLOC( rc->mbtree.scale_buffer[0], srcdimi[0] * srcdimi[1] * sizeof(float) );
435     CHECKED_MALLOC( rc->mbtree.scale_buffer[1], dstdimi[0] * srcdimi[1] * sizeof(float) );
436
437     /* Allocate and calculate resize filter parameters and coefficients */
438     for( int i = 0; i < 2; i++ )
439     {
440         if( srcdim[i] > dstdim[i] ) // downscale
441             rc->mbtree.filtersize[i] = 1 + (2 * srcdimi[i] + dstdimi[i] - 1) / dstdimi[i];
442         else                        // upscale
443             rc->mbtree.filtersize[i] = 3;
444
445         CHECKED_MALLOC( rc->mbtree.coeffs[i], rc->mbtree.filtersize[i] * dstdimi[i] * sizeof(float) );
446         CHECKED_MALLOC( rc->mbtree.pos[i], dstdimi[i] * sizeof(int) );
447
448         /* Initialize filter coefficients */
449         float inc = srcdim[i] / dstdim[i];
450         float dmul = inc > 1.f ? dstdim[i] / srcdim[i] : 1.f;
451         float dstinsrc = 0.5f * inc - 0.5f;
452         int filtersize = rc->mbtree.filtersize[i];
453         for( int j = 0; j < dstdimi[i]; j++ )
454         {
455             int pos = dstinsrc - (filtersize - 2.f) * 0.5f;
456             float sum = 0.0;
457             rc->mbtree.pos[i][j] = pos;
458             for( int k = 0; k < filtersize; k++ )
459             {
460                 float d = fabs( pos + k - dstinsrc ) * dmul;
461                 float coeff = X264_MAX( 1.f - d, 0 );
462                 rc->mbtree.coeffs[i][j * filtersize + k] = coeff;
463                 sum += coeff;
464             }
465             sum = 1.0f / sum;
466             for( int k = 0; k < filtersize; k++ )
467                 rc->mbtree.coeffs[i][j * filtersize + k] *= sum;
468             dstinsrc += inc;
469         }
470     }
471
472     /* Write back actual qp array dimensions */
473     rc->mbtree.srcdim[0] = srcdimi[0];
474     rc->mbtree.srcdim[1] = srcdimi[1];
475     return 0;
476 fail:
477     return -1;
478 }
479
480 static void x264_macroblock_tree_rescale_destroy( x264_ratecontrol_t *rc )
481 {
482     for( int i = 0; i < 2; i++ )
483     {
484         x264_free( rc->mbtree.qp_buffer[i] );
485         x264_free( rc->mbtree.scale_buffer[i] );
486         x264_free( rc->mbtree.coeffs[i] );
487         x264_free( rc->mbtree.pos[i] );
488     }
489 }
490
491 static ALWAYS_INLINE float tapfilter( float *src, int pos, int max, int stride, float *coeff, int filtersize )
492 {
493     float sum = 0.f;
494     for( int i = 0; i < filtersize; i++, pos++ )
495         sum += src[x264_clip3( pos, 0, max-1 )*stride] * coeff[i];
496     return sum;
497 }
498
499 static void x264_macroblock_tree_rescale( x264_t *h, x264_ratecontrol_t *rc, float *dst )
500 {
501     float *input, *output;
502     int filtersize, stride, height;
503
504     /* H scale first */
505     input = rc->mbtree.scale_buffer[0];
506     output = rc->mbtree.scale_buffer[1];
507     filtersize = rc->mbtree.filtersize[0];
508     stride = rc->mbtree.srcdim[0];
509     height = rc->mbtree.srcdim[1];
510     for( int y = 0; y < height; y++, input += stride, output += h->mb.i_mb_width )
511     {
512         float *coeff = rc->mbtree.coeffs[0];
513         for( int x = 0; x < h->mb.i_mb_width; x++, coeff+=filtersize )
514             output[x] = tapfilter( input, rc->mbtree.pos[0][x], stride, 1, coeff, filtersize );
515     }
516
517     /* V scale next */
518     input = rc->mbtree.scale_buffer[1];
519     output = dst;
520     filtersize = rc->mbtree.filtersize[1];
521     stride = h->mb.i_mb_width;
522     height = rc->mbtree.srcdim[1];
523     for( int x = 0; x < h->mb.i_mb_width; x++, input++, output++ )
524     {
525         float *coeff = rc->mbtree.coeffs[1];
526         for( int y = 0; y < h->mb.i_mb_height; y++, coeff+=filtersize )
527             output[y*stride] = tapfilter( input, rc->mbtree.pos[1][y], height, stride, coeff, filtersize );
528     }
529 }
530
531 int x264_macroblock_tree_read( x264_t *h, x264_frame_t *frame, float *quant_offsets )
532 {
533     x264_ratecontrol_t *rc = h->rc;
534     uint8_t i_type_actual = rc->entry[frame->i_frame].pict_type;
535
536     if( rc->entry[frame->i_frame].kept_as_ref )
537     {
538         uint8_t i_type;
539         if( rc->mbtree.qpbuf_pos < 0 )
540         {
541             do
542             {
543                 rc->mbtree.qpbuf_pos++;
544
545                 if( !fread( &i_type, 1, 1, rc->p_mbtree_stat_file_in ) )
546                     goto fail;
547                 if( fread( rc->mbtree.qp_buffer[rc->mbtree.qpbuf_pos], sizeof(uint16_t), rc->mbtree.src_mb_count, rc->p_mbtree_stat_file_in ) != rc->mbtree.src_mb_count )
548                     goto fail;
549
550                 if( i_type != i_type_actual && rc->mbtree.qpbuf_pos == 1 )
551                 {
552                     x264_log( h, X264_LOG_ERROR, "MB-tree frametype %d doesn't match actual frametype %d.\n", i_type, i_type_actual );
553                     return -1;
554                 }
555             } while( i_type != i_type_actual );
556         }
557
558         float *dst = rc->mbtree.rescale_enabled ? rc->mbtree.scale_buffer[0] : frame->f_qp_offset;
559         for( int i = 0; i < rc->mbtree.src_mb_count; i++ )
560         {
561             int16_t qp_fix8 = endian_fix16( rc->mbtree.qp_buffer[rc->mbtree.qpbuf_pos][i] );
562             dst[i] = qp_fix8 * (1.f/256.f);
563         }
564         if( rc->mbtree.rescale_enabled )
565             x264_macroblock_tree_rescale( h, rc, frame->f_qp_offset );
566         if( h->frames.b_have_lowres )
567             for( int i = 0; i < h->mb.i_mb_count; i++ )
568                 frame->i_inv_qscale_factor[i] = x264_exp2fix8( frame->f_qp_offset[i] );
569         rc->mbtree.qpbuf_pos--;
570     }
571     else
572         x264_stack_align( x264_adaptive_quant_frame, h, frame, quant_offsets );
573     return 0;
574 fail:
575     x264_log( h, X264_LOG_ERROR, "Incomplete MB-tree stats file.\n" );
576     return -1;
577 }
578
579 int x264_reference_build_list_optimal( x264_t *h )
580 {
581     ratecontrol_entry_t *rce = h->rc->rce;
582     x264_frame_t *frames[16];
583     x264_weight_t weights[16][3];
584     int refcount[16];
585
586     if( rce->refs != h->i_ref[0] )
587         return -1;
588
589     memcpy( frames, h->fref[0], sizeof(frames) );
590     memcpy( refcount, rce->refcount, sizeof(refcount) );
591     memcpy( weights, h->fenc->weight, sizeof(weights) );
592     memset( &h->fenc->weight[1][0], 0, sizeof(x264_weight_t[15][3]) );
593
594     /* For now don't reorder ref 0; it seems to lower quality
595        in most cases due to skips. */
596     for( int ref = 1; ref < h->i_ref[0]; ref++ )
597     {
598         int max = -1;
599         int bestref = 1;
600
601         for( int i = 1; i < h->i_ref[0]; i++ )
602             /* Favor lower POC as a tiebreaker. */
603             COPY2_IF_GT( max, refcount[i], bestref, i );
604
605         /* FIXME: If there are duplicates from frames other than ref0 then it is possible
606          * that the optimal ordering doesnt place every duplicate. */
607
608         refcount[bestref] = -1;
609         h->fref[0][ref] = frames[bestref];
610         memcpy( h->fenc->weight[ref], weights[bestref], sizeof(weights[bestref]) );
611     }
612
613     return 0;
614 }
615
616 static char *x264_strcat_filename( char *input, char *suffix )
617 {
618     char *output = x264_malloc( strlen( input ) + strlen( suffix ) + 1 );
619     if( !output )
620         return NULL;
621     strcpy( output, input );
622     strcat( output, suffix );
623     return output;
624 }
625
626 void x264_ratecontrol_init_reconfigurable( x264_t *h, int b_init )
627 {
628     x264_ratecontrol_t *rc = h->rc;
629     if( !b_init && rc->b_2pass )
630         return;
631
632     if( h->param.rc.i_rc_method == X264_RC_CRF )
633     {
634         /* Arbitrary rescaling to make CRF somewhat similar to QP.
635          * Try to compensate for MB-tree's effects as well. */
636         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
637         double mbtree_offset = h->param.rc.b_mb_tree ? (1.0-h->param.rc.f_qcompress)*13.5 : 0;
638         rc->rate_factor_constant = pow( base_cplx, 1 - rc->qcompress )
639                                  / qp2qscale( h->param.rc.f_rf_constant + mbtree_offset + QP_BD_OFFSET );
640     }
641
642     if( h->param.rc.i_vbv_max_bitrate > 0 && h->param.rc.i_vbv_buffer_size > 0 )
643     {
644         /* We don't support changing the ABR bitrate right now,
645            so if the stream starts as CBR, keep it CBR. */
646         if( rc->b_vbv_min_rate )
647             h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate;
648
649         if( h->param.rc.i_vbv_buffer_size < (int)(h->param.rc.i_vbv_max_bitrate / rc->fps) )
650         {
651             h->param.rc.i_vbv_buffer_size = h->param.rc.i_vbv_max_bitrate / rc->fps;
652             x264_log( h, X264_LOG_WARNING, "VBV buffer size cannot be smaller than one frame, using %d kbit\n",
653                       h->param.rc.i_vbv_buffer_size );
654         }
655
656         int vbv_buffer_size = h->param.rc.i_vbv_buffer_size * 1000;
657         int vbv_max_bitrate = h->param.rc.i_vbv_max_bitrate * 1000;
658
659         /* Init HRD */
660         if( h->param.i_nal_hrd && b_init )
661         {
662             h->sps->vui.hrd.i_cpb_cnt = 1;
663             h->sps->vui.hrd.b_cbr_hrd = h->param.i_nal_hrd == X264_NAL_HRD_CBR;
664             h->sps->vui.hrd.i_time_offset_length = 0;
665
666             #define BR_SHIFT  6
667             #define CPB_SHIFT 4
668
669             int bitrate = 1000*h->param.rc.i_vbv_max_bitrate;
670             int bufsize = 1000*h->param.rc.i_vbv_buffer_size;
671
672             // normalize HRD size and rate to the value / scale notation
673             h->sps->vui.hrd.i_bit_rate_scale = x264_clip3( x264_ctz( bitrate ) - BR_SHIFT, 0, 15 );
674             h->sps->vui.hrd.i_bit_rate_value = bitrate >> ( h->sps->vui.hrd.i_bit_rate_scale + BR_SHIFT );
675             h->sps->vui.hrd.i_bit_rate_unscaled = h->sps->vui.hrd.i_bit_rate_value << ( h->sps->vui.hrd.i_bit_rate_scale + BR_SHIFT );
676             h->sps->vui.hrd.i_cpb_size_scale = x264_clip3( x264_ctz( bufsize ) - CPB_SHIFT, 0, 15 );
677             h->sps->vui.hrd.i_cpb_size_value = bufsize >> ( h->sps->vui.hrd.i_cpb_size_scale + CPB_SHIFT );
678             h->sps->vui.hrd.i_cpb_size_unscaled = h->sps->vui.hrd.i_cpb_size_value << ( h->sps->vui.hrd.i_cpb_size_scale + CPB_SHIFT );
679
680             #undef CPB_SHIFT
681             #undef BR_SHIFT
682
683             // arbitrary
684             #define MAX_DURATION 0.5
685
686             int max_cpb_output_delay = X264_MIN( h->param.i_keyint_max * MAX_DURATION * h->sps->vui.i_time_scale / h->sps->vui.i_num_units_in_tick, INT_MAX );
687             int max_dpb_output_delay = h->sps->vui.i_max_dec_frame_buffering * MAX_DURATION * h->sps->vui.i_time_scale / h->sps->vui.i_num_units_in_tick;
688             int max_delay = (int)(90000.0 * (double)h->sps->vui.hrd.i_cpb_size_unscaled / h->sps->vui.hrd.i_bit_rate_unscaled + 0.5);
689
690             h->sps->vui.hrd.i_initial_cpb_removal_delay_length = 2 + x264_clip3( 32 - x264_clz( max_delay ), 4, 22 );
691             h->sps->vui.hrd.i_cpb_removal_delay_length = x264_clip3( 32 - x264_clz( max_cpb_output_delay ), 4, 31 );
692             h->sps->vui.hrd.i_dpb_output_delay_length  = x264_clip3( 32 - x264_clz( max_dpb_output_delay ), 4, 31 );
693
694             #undef MAX_DURATION
695
696             vbv_buffer_size = h->sps->vui.hrd.i_cpb_size_unscaled;
697             vbv_max_bitrate = h->sps->vui.hrd.i_bit_rate_unscaled;
698         }
699         else if( h->param.i_nal_hrd && !b_init )
700         {
701             x264_log( h, X264_LOG_WARNING, "VBV parameters cannot be changed when NAL HRD is in use\n" );
702             return;
703         }
704         h->sps->vui.hrd.i_bit_rate_unscaled = vbv_max_bitrate;
705         h->sps->vui.hrd.i_cpb_size_unscaled = vbv_buffer_size;
706
707         if( rc->b_vbv_min_rate )
708             rc->bitrate = h->param.rc.i_bitrate * 1000.;
709         rc->buffer_rate = vbv_max_bitrate / rc->fps;
710         rc->vbv_max_rate = vbv_max_bitrate;
711         rc->buffer_size = vbv_buffer_size;
712         rc->single_frame_vbv = rc->buffer_rate * 1.1 > rc->buffer_size;
713         rc->cbr_decay = 1.0 - rc->buffer_rate / rc->buffer_size
714                       * 0.5 * X264_MAX(0, 1.5 - rc->buffer_rate * rc->fps / rc->bitrate);
715         if( h->param.rc.i_rc_method == X264_RC_CRF && h->param.rc.f_rf_constant_max )
716         {
717             rc->rate_factor_max_increment = h->param.rc.f_rf_constant_max - h->param.rc.f_rf_constant;
718             if( rc->rate_factor_max_increment <= 0 )
719             {
720                 x264_log( h, X264_LOG_WARNING, "CRF max must be greater than CRF\n" );
721                 rc->rate_factor_max_increment = 0;
722             }
723         }
724         if( b_init )
725         {
726             if( h->param.rc.f_vbv_buffer_init > 1. )
727                 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 );
728             h->param.rc.f_vbv_buffer_init = x264_clip3f( X264_MAX( h->param.rc.f_vbv_buffer_init, rc->buffer_rate / rc->buffer_size ), 0, 1);
729             rc->buffer_fill_final = rc->buffer_size * h->param.rc.f_vbv_buffer_init * h->sps->vui.i_time_scale;
730             rc->b_vbv = 1;
731             rc->b_vbv_min_rate = !rc->b_2pass
732                           && h->param.rc.i_rc_method == X264_RC_ABR
733                           && h->param.rc.i_vbv_max_bitrate <= h->param.rc.i_bitrate;
734         }
735     }
736 }
737
738 int x264_ratecontrol_new( x264_t *h )
739 {
740     x264_ratecontrol_t *rc;
741
742     x264_emms();
743
744     CHECKED_MALLOCZERO( h->rc, h->param.i_threads * sizeof(x264_ratecontrol_t) );
745     rc = h->rc;
746
747     rc->b_abr = h->param.rc.i_rc_method != X264_RC_CQP && !h->param.rc.b_stat_read;
748     rc->b_2pass = h->param.rc.i_rc_method == X264_RC_ABR && h->param.rc.b_stat_read;
749
750     /* FIXME: use integers */
751     if( h->param.i_fps_num > 0 && h->param.i_fps_den > 0 )
752         rc->fps = (float) h->param.i_fps_num / h->param.i_fps_den;
753     else
754         rc->fps = 25.0;
755
756     if( h->param.rc.b_mb_tree )
757     {
758         h->param.rc.f_pb_factor = 1;
759         rc->qcompress = 1;
760     }
761     else
762         rc->qcompress = h->param.rc.f_qcompress;
763
764     rc->bitrate = h->param.rc.i_bitrate * 1000.;
765     rc->rate_tolerance = h->param.rc.f_rate_tolerance;
766     rc->nmb = h->mb.i_mb_count;
767     rc->last_non_b_pict_type = -1;
768     rc->cbr_decay = 1.0;
769
770     if( h->param.rc.i_rc_method == X264_RC_CRF && h->param.rc.b_stat_read )
771     {
772         x264_log( h, X264_LOG_ERROR, "constant rate-factor is incompatible with 2pass.\n" );
773         return -1;
774     }
775
776     x264_ratecontrol_init_reconfigurable( h, 1 );
777
778     if( h->param.i_nal_hrd )
779     {
780         uint64_t denom = (uint64_t)h->sps->vui.hrd.i_bit_rate_unscaled * h->sps->vui.i_time_scale;
781         uint64_t num = 180000;
782         x264_reduce_fraction64( &num, &denom );
783         rc->hrd_multiply_denom = 180000 / num;
784
785         double bits_required = log2( 180000 / rc->hrd_multiply_denom )
786                              + log2( h->sps->vui.i_time_scale )
787                              + log2( h->sps->vui.hrd.i_cpb_size_unscaled );
788         if( bits_required >= 63 )
789         {
790             x264_log( h, X264_LOG_ERROR, "HRD with very large timescale and bufsize not supported\n" );
791             return -1;
792         }
793     }
794
795     if( rc->rate_tolerance < 0.01 )
796     {
797         x264_log( h, X264_LOG_WARNING, "bitrate tolerance too small, using .01\n" );
798         rc->rate_tolerance = 0.01;
799     }
800
801     h->mb.b_variable_qp = rc->b_vbv || h->param.rc.i_aq_mode;
802
803     if( rc->b_abr )
804     {
805         /* FIXME ABR_INIT_QP is actually used only in CRF */
806 #define ABR_INIT_QP (( h->param.rc.i_rc_method == X264_RC_CRF ? h->param.rc.f_rf_constant : 24 ) + QP_BD_OFFSET)
807         rc->accum_p_norm = .01;
808         rc->accum_p_qp = ABR_INIT_QP * rc->accum_p_norm;
809         /* estimated ratio that produces a reasonable QP for the first I-frame */
810         rc->cplxr_sum = .01 * pow( 7.0e5, rc->qcompress ) * pow( h->mb.i_mb_count, 0.5 );
811         rc->wanted_bits_window = 1.0 * rc->bitrate / rc->fps;
812         rc->last_non_b_pict_type = SLICE_TYPE_I;
813     }
814
815     rc->ip_offset = 6.0 * log2f( h->param.rc.f_ip_factor );
816     rc->pb_offset = 6.0 * log2f( h->param.rc.f_pb_factor );
817     rc->qp_constant[SLICE_TYPE_P] = h->param.rc.i_qp_constant;
818     rc->qp_constant[SLICE_TYPE_I] = x264_clip3( h->param.rc.i_qp_constant - rc->ip_offset + 0.5, 0, QP_MAX );
819     rc->qp_constant[SLICE_TYPE_B] = x264_clip3( h->param.rc.i_qp_constant + rc->pb_offset + 0.5, 0, QP_MAX );
820     h->mb.ip_offset = rc->ip_offset + 0.5;
821
822     rc->lstep = pow( 2, h->param.rc.i_qp_step / 6.0 );
823     rc->last_qscale = qp2qscale( 26 );
824     int num_preds = h->param.b_sliced_threads * h->param.i_threads + 1;
825     CHECKED_MALLOC( rc->pred, 5 * sizeof(predictor_t) * num_preds );
826     CHECKED_MALLOC( rc->pred_b_from_p, sizeof(predictor_t) );
827     for( int i = 0; i < 3; i++ )
828     {
829         rc->last_qscale_for[i] = qp2qscale( ABR_INIT_QP );
830         rc->lmin[i] = qp2qscale( h->param.rc.i_qp_min );
831         rc->lmax[i] = qp2qscale( h->param.rc.i_qp_max );
832         for( int j = 0; j < num_preds; j++ )
833         {
834             rc->pred[i+j*5].coeff_min = 2.0 / 4;
835             rc->pred[i+j*5].coeff = 2.0;
836             rc->pred[i+j*5].count = 1.0;
837             rc->pred[i+j*5].decay = 0.5;
838             rc->pred[i+j*5].offset = 0.0;
839         }
840         for( int j = 0; j < 2; j++ )
841         {
842             rc->row_preds[i][j].coeff_min = .25 / 4;
843             rc->row_preds[i][j].coeff = .25;
844             rc->row_preds[i][j].count = 1.0;
845             rc->row_preds[i][j].decay = 0.5;
846             rc->row_preds[i][j].offset = 0.0;
847         }
848     }
849     *rc->pred_b_from_p = rc->pred[0];
850
851     if( parse_zones( h ) < 0 )
852     {
853         x264_log( h, X264_LOG_ERROR, "failed to parse zones\n" );
854         return -1;
855     }
856
857     /* Load stat file and init 2pass algo */
858     if( h->param.rc.b_stat_read )
859     {
860         char *p, *stats_in, *stats_buf;
861
862         /* read 1st pass stats */
863         assert( h->param.rc.psz_stat_in );
864         stats_buf = stats_in = x264_slurp_file( h->param.rc.psz_stat_in );
865         if( !stats_buf )
866         {
867             x264_log( h, X264_LOG_ERROR, "ratecontrol_init: can't open stats file\n" );
868             return -1;
869         }
870         if( h->param.rc.b_mb_tree )
871         {
872             char *mbtree_stats_in = x264_strcat_filename( h->param.rc.psz_stat_in, ".mbtree" );
873             if( !mbtree_stats_in )
874                 return -1;
875             rc->p_mbtree_stat_file_in = fopen( mbtree_stats_in, "rb" );
876             x264_free( mbtree_stats_in );
877             if( !rc->p_mbtree_stat_file_in )
878             {
879                 x264_log( h, X264_LOG_ERROR, "ratecontrol_init: can't open mbtree stats file\n" );
880                 return -1;
881             }
882         }
883
884         /* check whether 1st pass options were compatible with current options */
885         if( strncmp( stats_buf, "#options:", 9 ) )
886         {
887             x264_log( h, X264_LOG_ERROR, "options list in stats file not valid\n" );
888             return -1;
889         }
890
891         float res_factor, res_factor_bits;
892         {
893             int i, j;
894             uint32_t k, l;
895             char *opts = stats_buf;
896             stats_in = strchr( stats_buf, '\n' );
897             if( !stats_in )
898                 return -1;
899             *stats_in = '\0';
900             stats_in++;
901             if( sscanf( opts, "#options: %dx%d", &i, &j ) != 2 )
902             {
903                 x264_log( h, X264_LOG_ERROR, "resolution specified in stats file not valid\n" );
904                 return -1;
905             }
906             else if( h->param.rc.b_mb_tree )
907             {
908                 rc->mbtree.srcdim[0] = i;
909                 rc->mbtree.srcdim[1] = j;
910             }
911             res_factor = (float)h->param.i_width * h->param.i_height / (i*j);
912             /* Change in bits relative to resolution isn't quite linear on typical sources,
913              * so we'll at least try to roughly approximate this effect. */
914             res_factor_bits = powf( res_factor, 0.7 );
915
916             if( ( p = strstr( opts, "timebase=" ) ) && sscanf( p, "timebase=%u/%u", &k, &l ) != 2 )
917             {
918                 x264_log( h, X264_LOG_ERROR, "timebase specified in stats file not valid\n" );
919                 return -1;
920             }
921             if( k != h->param.i_timebase_num || l != h->param.i_timebase_den )
922             {
923                 x264_log( h, X264_LOG_ERROR, "timebase mismatch with 1st pass (%u/%u vs %u/%u)\n",
924                           h->param.i_timebase_num, h->param.i_timebase_den, k, l );
925                 return -1;
926             }
927
928             CMP_OPT_FIRST_PASS( "bitdepth", BIT_DEPTH );
929             CMP_OPT_FIRST_PASS( "weightp", X264_MAX( 0, h->param.analyse.i_weighted_pred ) );
930             CMP_OPT_FIRST_PASS( "bframes", h->param.i_bframe );
931             CMP_OPT_FIRST_PASS( "b_pyramid", h->param.i_bframe_pyramid );
932             CMP_OPT_FIRST_PASS( "intra_refresh", h->param.b_intra_refresh );
933             CMP_OPT_FIRST_PASS( "open_gop", h->param.b_open_gop );
934             CMP_OPT_FIRST_PASS( "bluray_compat", h->param.b_bluray_compat );
935
936             if( (p = strstr( opts, "interlaced=" )) )
937             {
938                 char *current = h->param.b_interlaced ? h->param.b_tff ? "tff" : "bff" : h->param.b_fake_interlaced ? "fake" : "0";
939                 char buf[5];
940                 sscanf( p, "interlaced=%4s", buf );
941                 if( strcmp( current, buf ) )
942                 {
943                     x264_log( h, X264_LOG_ERROR, "different interlaced setting than first pass (%s vs %s)\n", current, buf );
944                     return -1;
945                 }
946             }
947
948             if( (p = strstr( opts, "keyint=" )) )
949             {
950                 p += 7;
951                 char buf[13] = "infinite ";
952                 if( h->param.i_keyint_max != X264_KEYINT_MAX_INFINITE )
953                     sprintf( buf, "%d ", h->param.i_keyint_max );
954                 if( strncmp( p, buf, strlen(buf) ) )
955                 {
956                     x264_log( h, X264_LOG_ERROR, "different keyint setting than first pass (%.*s vs %.*s)\n",
957                               strlen(buf)-1, buf, strcspn(p, " "), p );
958                     return -1;
959                 }
960             }
961
962             if( strstr( opts, "qp=0" ) && h->param.rc.i_rc_method == X264_RC_ABR )
963                 x264_log( h, X264_LOG_WARNING, "1st pass was lossless, bitrate prediction will be inaccurate\n" );
964
965             if( !strstr( opts, "direct=3" ) && h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO )
966             {
967                 x264_log( h, X264_LOG_WARNING, "direct=auto not used on the first pass\n" );
968                 h->mb.b_direct_auto_write = 1;
969             }
970
971             if( ( p = strstr( opts, "b_adapt=" ) ) && sscanf( p, "b_adapt=%d", &i ) && i >= X264_B_ADAPT_NONE && i <= X264_B_ADAPT_TRELLIS )
972                 h->param.i_bframe_adaptive = i;
973             else if( h->param.i_bframe )
974             {
975                 x264_log( h, X264_LOG_ERROR, "b_adapt method specified in stats file not valid\n" );
976                 return -1;
977             }
978
979             if( (h->param.rc.b_mb_tree || h->param.rc.i_vbv_buffer_size) && ( p = strstr( opts, "rc_lookahead=" ) ) && sscanf( p, "rc_lookahead=%d", &i ) )
980                 h->param.rc.i_lookahead = i;
981         }
982
983         /* find number of pics */
984         p = stats_in;
985         int num_entries;
986         for( num_entries = -1; p; num_entries++ )
987             p = strchr( p + 1, ';' );
988         if( !num_entries )
989         {
990             x264_log( h, X264_LOG_ERROR, "empty stats file\n" );
991             return -1;
992         }
993         rc->num_entries = num_entries;
994
995         if( h->param.i_frame_total < rc->num_entries && h->param.i_frame_total > 0 )
996         {
997             x264_log( h, X264_LOG_WARNING, "2nd pass has fewer frames than 1st pass (%d vs %d)\n",
998                       h->param.i_frame_total, rc->num_entries );
999         }
1000         if( h->param.i_frame_total > rc->num_entries )
1001         {
1002             x264_log( h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d vs %d)\n",
1003                       h->param.i_frame_total, rc->num_entries );
1004             return -1;
1005         }
1006
1007         CHECKED_MALLOCZERO( rc->entry, rc->num_entries * sizeof(ratecontrol_entry_t) );
1008
1009         /* init all to skipped p frames */
1010         for( int i = 0; i < rc->num_entries; i++ )
1011         {
1012             ratecontrol_entry_t *rce = &rc->entry[i];
1013             rce->pict_type = SLICE_TYPE_P;
1014             rce->qscale = rce->new_qscale = qp2qscale( 20 );
1015             rce->misc_bits = rc->nmb + 10;
1016             rce->new_qp = 0;
1017         }
1018
1019         /* read stats */
1020         p = stats_in;
1021         for( int i = 0; i < rc->num_entries; i++ )
1022         {
1023             ratecontrol_entry_t *rce;
1024             int frame_number;
1025             char pict_type;
1026             int e;
1027             char *next;
1028             float qp;
1029             int ref;
1030
1031             next= strchr(p, ';');
1032             if( next )
1033                 *next++ = 0; //sscanf is unbelievably slow on long strings
1034             e = sscanf( p, " in:%d ", &frame_number );
1035
1036             if( frame_number < 0 || frame_number >= rc->num_entries )
1037             {
1038                 x264_log( h, X264_LOG_ERROR, "bad frame number (%d) at stats line %d\n", frame_number, i );
1039                 return -1;
1040             }
1041             rce = &rc->entry[frame_number];
1042             rce->direct_mode = 0;
1043
1044             e += sscanf( p, " in:%*d out:%*d type:%c dur:%"SCNd64" cpbdur:%"SCNd64" q:%f tex:%d mv:%d misc:%d imb:%d pmb:%d smb:%d d:%c",
1045                    &pict_type, &rce->i_duration, &rce->i_cpb_duration, &qp, &rce->tex_bits,
1046                    &rce->mv_bits, &rce->misc_bits, &rce->i_count, &rce->p_count,
1047                    &rce->s_count, &rce->direct_mode );
1048             rce->tex_bits  *= res_factor_bits;
1049             rce->mv_bits   *= res_factor_bits;
1050             rce->misc_bits *= res_factor_bits;
1051             rce->i_count   *= res_factor;
1052             rce->p_count   *= res_factor;
1053             rce->s_count   *= res_factor;
1054
1055             p = strstr( p, "ref:" );
1056             if( !p )
1057                 goto parse_error;
1058             p += 4;
1059             for( ref = 0; ref < 16; ref++ )
1060             {
1061                 if( sscanf( p, " %d", &rce->refcount[ref] ) != 1 )
1062                     break;
1063                 p = strchr( p+1, ' ' );
1064                 if( !p )
1065                     goto parse_error;
1066             }
1067             rce->refs = ref;
1068
1069             /* find weights */
1070             rce->i_weight_denom[0] = rce->i_weight_denom[1] = -1;
1071             char *w = strchr( p, 'w' );
1072             if( w )
1073             {
1074                 int count = sscanf( w, "w:%hd,%hd,%hd,%hd,%hd,%hd,%hd,%hd",
1075                                     &rce->i_weight_denom[0], &rce->weight[0][0], &rce->weight[0][1],
1076                                     &rce->i_weight_denom[1], &rce->weight[1][0], &rce->weight[1][1],
1077                                     &rce->weight[2][0], &rce->weight[2][1] );
1078                 if( count == 3 )
1079                     rce->i_weight_denom[1] = -1;
1080                 else if ( count != 8 )
1081                     rce->i_weight_denom[0] = rce->i_weight_denom[1] = -1;
1082             }
1083
1084             if( pict_type != 'b' )
1085                 rce->kept_as_ref = 1;
1086             switch( pict_type )
1087             {
1088                 case 'I':
1089                     rce->frame_type = X264_TYPE_IDR;
1090                     rce->pict_type  = SLICE_TYPE_I;
1091                     break;
1092                 case 'i':
1093                     rce->frame_type = X264_TYPE_I;
1094                     rce->pict_type  = SLICE_TYPE_I;
1095                     break;
1096                 case 'P':
1097                     rce->frame_type = X264_TYPE_P;
1098                     rce->pict_type  = SLICE_TYPE_P;
1099                     break;
1100                 case 'B':
1101                     rce->frame_type = X264_TYPE_BREF;
1102                     rce->pict_type  = SLICE_TYPE_B;
1103                     break;
1104                 case 'b':
1105                     rce->frame_type = X264_TYPE_B;
1106                     rce->pict_type  = SLICE_TYPE_B;
1107                     break;
1108                 default:  e = -1; break;
1109             }
1110             if( e < 12 )
1111             {
1112 parse_error:
1113                 x264_log( h, X264_LOG_ERROR, "statistics are damaged at line %d, parser out=%d\n", i, e );
1114                 return -1;
1115             }
1116             rce->qscale = qp2qscale( qp );
1117             p = next;
1118         }
1119
1120         x264_free( stats_buf );
1121
1122         if( h->param.rc.i_rc_method == X264_RC_ABR )
1123         {
1124             if( init_pass2( h ) < 0 )
1125                 return -1;
1126         } /* else we're using constant quant, so no need to run the bitrate allocation */
1127     }
1128
1129     /* Open output file */
1130     /* If input and output files are the same, output to a temp file
1131      * and move it to the real name only when it's complete */
1132     if( h->param.rc.b_stat_write )
1133     {
1134         char *p;
1135         rc->psz_stat_file_tmpname = x264_strcat_filename( h->param.rc.psz_stat_out, ".temp" );
1136         if( !rc->psz_stat_file_tmpname )
1137             return -1;
1138
1139         rc->p_stat_file_out = fopen( rc->psz_stat_file_tmpname, "wb" );
1140         if( rc->p_stat_file_out == NULL )
1141         {
1142             x264_log( h, X264_LOG_ERROR, "ratecontrol_init: can't open stats file\n" );
1143             return -1;
1144         }
1145
1146         p = x264_param2string( &h->param, 1 );
1147         if( p )
1148             fprintf( rc->p_stat_file_out, "#options: %s\n", p );
1149         x264_free( p );
1150         if( h->param.rc.b_mb_tree && !h->param.rc.b_stat_read )
1151         {
1152             rc->psz_mbtree_stat_file_tmpname = x264_strcat_filename( h->param.rc.psz_stat_out, ".mbtree.temp" );
1153             rc->psz_mbtree_stat_file_name = x264_strcat_filename( h->param.rc.psz_stat_out, ".mbtree" );
1154             if( !rc->psz_mbtree_stat_file_tmpname || !rc->psz_mbtree_stat_file_name )
1155                 return -1;
1156
1157             rc->p_mbtree_stat_file_out = fopen( rc->psz_mbtree_stat_file_tmpname, "wb" );
1158             if( rc->p_mbtree_stat_file_out == NULL )
1159             {
1160                 x264_log( h, X264_LOG_ERROR, "ratecontrol_init: can't open mbtree stats file\n" );
1161                 return -1;
1162             }
1163         }
1164     }
1165
1166     if( h->param.rc.b_mb_tree && (h->param.rc.b_stat_read || h->param.rc.b_stat_write) )
1167     {
1168         if( !h->param.rc.b_stat_read )
1169         {
1170             rc->mbtree.srcdim[0] = h->param.i_width;
1171             rc->mbtree.srcdim[1] = h->param.i_height;
1172         }
1173         if( x264_macroblock_tree_rescale_init( h, rc ) < 0 )
1174             return -1;
1175     }
1176
1177     for( int i = 0; i<h->param.i_threads; i++ )
1178     {
1179         h->thread[i]->rc = rc+i;
1180         if( i )
1181         {
1182             rc[i] = rc[0];
1183             h->thread[i]->param = h->param;
1184             h->thread[i]->mb.b_variable_qp = h->mb.b_variable_qp;
1185             h->thread[i]->mb.ip_offset = h->mb.ip_offset;
1186         }
1187     }
1188
1189     return 0;
1190 fail:
1191     return -1;
1192 }
1193
1194 static int parse_zone( x264_t *h, x264_zone_t *z, char *p )
1195 {
1196     int len = 0;
1197     char *tok, UNUSED *saveptr=NULL;
1198     z->param = NULL;
1199     z->f_bitrate_factor = 1;
1200     if( 3 <= sscanf(p, "%d,%d,q=%d%n", &z->i_start, &z->i_end, &z->i_qp, &len) )
1201         z->b_force_qp = 1;
1202     else if( 3 <= sscanf(p, "%d,%d,b=%f%n", &z->i_start, &z->i_end, &z->f_bitrate_factor, &len) )
1203         z->b_force_qp = 0;
1204     else if( 2 <= sscanf(p, "%d,%d%n", &z->i_start, &z->i_end, &len) )
1205         z->b_force_qp = 0;
1206     else
1207     {
1208         x264_log( h, X264_LOG_ERROR, "invalid zone: \"%s\"\n", p );
1209         return -1;
1210     }
1211     p += len;
1212     if( !*p )
1213         return 0;
1214     CHECKED_MALLOC( z->param, sizeof(x264_param_t) );
1215     memcpy( z->param, &h->param, sizeof(x264_param_t) );
1216     z->param->param_free = x264_free;
1217     while( (tok = strtok_r( p, ",", &saveptr )) )
1218     {
1219         char *val = strchr( tok, '=' );
1220         if( val )
1221         {
1222             *val = '\0';
1223             val++;
1224         }
1225         if( x264_param_parse( z->param, tok, val ) )
1226         {
1227             x264_log( h, X264_LOG_ERROR, "invalid zone param: %s = %s\n", tok, val );
1228             return -1;
1229         }
1230         p = NULL;
1231     }
1232     return 0;
1233 fail:
1234     return -1;
1235 }
1236
1237 static int parse_zones( x264_t *h )
1238 {
1239     x264_ratecontrol_t *rc = h->rc;
1240     if( h->param.rc.psz_zones && !h->param.rc.i_zones )
1241     {
1242         char *psz_zones, *p;
1243         CHECKED_MALLOC( psz_zones, strlen( h->param.rc.psz_zones )+1 );
1244         strcpy( psz_zones, h->param.rc.psz_zones );
1245         h->param.rc.i_zones = 1;
1246         for( p = psz_zones; *p; p++ )
1247             h->param.rc.i_zones += (*p == '/');
1248         CHECKED_MALLOC( h->param.rc.zones, h->param.rc.i_zones * sizeof(x264_zone_t) );
1249         p = psz_zones;
1250         for( int i = 0; i < h->param.rc.i_zones; i++ )
1251         {
1252             int i_tok = strcspn( p, "/" );
1253             p[i_tok] = 0;
1254             if( parse_zone( h, &h->param.rc.zones[i], p ) )
1255                 return -1;
1256             p += i_tok + 1;
1257         }
1258         x264_free( psz_zones );
1259     }
1260
1261     if( h->param.rc.i_zones > 0 )
1262     {
1263         for( int i = 0; i < h->param.rc.i_zones; i++ )
1264         {
1265             x264_zone_t z = h->param.rc.zones[i];
1266             if( z.i_start < 0 || z.i_start > z.i_end )
1267             {
1268                 x264_log( h, X264_LOG_ERROR, "invalid zone: start=%d end=%d\n",
1269                           z.i_start, z.i_end );
1270                 return -1;
1271             }
1272             else if( !z.b_force_qp && z.f_bitrate_factor <= 0 )
1273             {
1274                 x264_log( h, X264_LOG_ERROR, "invalid zone: bitrate_factor=%f\n",
1275                           z.f_bitrate_factor );
1276                 return -1;
1277             }
1278         }
1279
1280         rc->i_zones = h->param.rc.i_zones + 1;
1281         CHECKED_MALLOC( rc->zones, rc->i_zones * sizeof(x264_zone_t) );
1282         memcpy( rc->zones+1, h->param.rc.zones, (rc->i_zones-1) * sizeof(x264_zone_t) );
1283
1284         // default zone to fall back to if none of the others match
1285         rc->zones[0].i_start = 0;
1286         rc->zones[0].i_end = INT_MAX;
1287         rc->zones[0].b_force_qp = 0;
1288         rc->zones[0].f_bitrate_factor = 1;
1289         CHECKED_MALLOC( rc->zones[0].param, sizeof(x264_param_t) );
1290         memcpy( rc->zones[0].param, &h->param, sizeof(x264_param_t) );
1291         for( int i = 1; i < rc->i_zones; i++ )
1292         {
1293             if( !rc->zones[i].param )
1294                 rc->zones[i].param = rc->zones[0].param;
1295         }
1296     }
1297
1298     return 0;
1299 fail:
1300     return -1;
1301 }
1302
1303 static x264_zone_t *get_zone( x264_t *h, int frame_num )
1304 {
1305     for( int i = h->rc->i_zones - 1; i >= 0; i-- )
1306     {
1307         x264_zone_t *z = &h->rc->zones[i];
1308         if( frame_num >= z->i_start && frame_num <= z->i_end )
1309             return z;
1310     }
1311     return NULL;
1312 }
1313
1314 void x264_ratecontrol_summary( x264_t *h )
1315 {
1316     x264_ratecontrol_t *rc = h->rc;
1317     if( rc->b_abr && h->param.rc.i_rc_method == X264_RC_ABR && rc->cbr_decay > .9999 )
1318     {
1319         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
1320         double mbtree_offset = h->param.rc.b_mb_tree ? (1.0-h->param.rc.f_qcompress)*13.5 : 0;
1321         x264_log( h, X264_LOG_INFO, "final ratefactor: %.2f\n",
1322                   qscale2qp( pow( base_cplx, 1 - rc->qcompress )
1323                              * rc->cplxr_sum / rc->wanted_bits_window ) - mbtree_offset - QP_BD_OFFSET );
1324     }
1325 }
1326
1327 void x264_ratecontrol_delete( x264_t *h )
1328 {
1329     x264_ratecontrol_t *rc = h->rc;
1330     int b_regular_file;
1331
1332     if( rc->p_stat_file_out )
1333     {
1334         b_regular_file = x264_is_regular_file( rc->p_stat_file_out );
1335         fclose( rc->p_stat_file_out );
1336         if( h->i_frame >= rc->num_entries && b_regular_file )
1337             if( rename( rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out ) != 0 )
1338             {
1339                 x264_log( h, X264_LOG_ERROR, "failed to rename \"%s\" to \"%s\"\n",
1340                           rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out );
1341             }
1342         x264_free( rc->psz_stat_file_tmpname );
1343     }
1344     if( rc->p_mbtree_stat_file_out )
1345     {
1346         b_regular_file = x264_is_regular_file( rc->p_mbtree_stat_file_out );
1347         fclose( rc->p_mbtree_stat_file_out );
1348         if( h->i_frame >= rc->num_entries && b_regular_file )
1349             if( rename( rc->psz_mbtree_stat_file_tmpname, rc->psz_mbtree_stat_file_name ) != 0 )
1350             {
1351                 x264_log( h, X264_LOG_ERROR, "failed to rename \"%s\" to \"%s\"\n",
1352                           rc->psz_mbtree_stat_file_tmpname, rc->psz_mbtree_stat_file_name );
1353             }
1354         x264_free( rc->psz_mbtree_stat_file_tmpname );
1355         x264_free( rc->psz_mbtree_stat_file_name );
1356     }
1357     if( rc->p_mbtree_stat_file_in )
1358         fclose( rc->p_mbtree_stat_file_in );
1359     x264_free( rc->pred );
1360     x264_free( rc->pred_b_from_p );
1361     x264_free( rc->entry );
1362     x264_macroblock_tree_rescale_destroy( rc );
1363     if( rc->zones )
1364     {
1365         x264_free( rc->zones[0].param );
1366         for( int i = 1; i < rc->i_zones; i++ )
1367             if( rc->zones[i].param != rc->zones[0].param && rc->zones[i].param->param_free )
1368                 rc->zones[i].param->param_free( rc->zones[i].param );
1369         x264_free( rc->zones );
1370     }
1371     x264_free( rc );
1372 }
1373
1374 static void accum_p_qp_update( x264_t *h, float qp )
1375 {
1376     x264_ratecontrol_t *rc = h->rc;
1377     rc->accum_p_qp   *= .95;
1378     rc->accum_p_norm *= .95;
1379     rc->accum_p_norm += 1;
1380     if( h->sh.i_type == SLICE_TYPE_I )
1381         rc->accum_p_qp += qp + rc->ip_offset;
1382     else
1383         rc->accum_p_qp += qp;
1384 }
1385
1386 /* Before encoding a frame, choose a QP for it */
1387 void x264_ratecontrol_start( x264_t *h, int i_force_qp, int overhead )
1388 {
1389     x264_ratecontrol_t *rc = h->rc;
1390     ratecontrol_entry_t *rce = NULL;
1391     x264_zone_t *zone = get_zone( h, h->fenc->i_frame );
1392     float q;
1393
1394     x264_emms();
1395
1396     if( zone && (!rc->prev_zone || zone->param != rc->prev_zone->param) )
1397         x264_encoder_reconfig( h, zone->param );
1398     rc->prev_zone = zone;
1399
1400     if( h->param.rc.b_stat_read )
1401     {
1402         int frame = h->fenc->i_frame;
1403         assert( frame >= 0 && frame < rc->num_entries );
1404         rce = h->rc->rce = &h->rc->entry[frame];
1405
1406         if( h->sh.i_type == SLICE_TYPE_B
1407             && h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO )
1408         {
1409             h->sh.b_direct_spatial_mv_pred = ( rce->direct_mode == 's' );
1410             h->mb.b_direct_auto_read = ( rce->direct_mode == 's' || rce->direct_mode == 't' );
1411         }
1412     }
1413
1414     if( rc->b_vbv )
1415     {
1416         memset( h->fdec->i_row_bits, 0, h->mb.i_mb_height * sizeof(int) );
1417         memset( h->fdec->f_row_qp, 0, h->mb.i_mb_height * sizeof(float) );
1418         memset( h->fdec->f_row_qscale, 0, h->mb.i_mb_height * sizeof(float) );
1419         rc->row_pred = &rc->row_preds[h->sh.i_type];
1420         rc->buffer_rate = h->fenc->i_cpb_duration * rc->vbv_max_rate * h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
1421         update_vbv_plan( h, overhead );
1422
1423         const x264_level_t *l = x264_levels;
1424         while( l->level_idc != 0 && l->level_idc != h->param.i_level_idc )
1425             l++;
1426
1427         int mincr = l->mincr;
1428
1429         if( h->param.b_bluray_compat )
1430             mincr = 4;
1431
1432         /* Profiles above High don't require minCR, so just set the maximum to a large value. */
1433         if( h->sps->i_profile_idc > PROFILE_HIGH )
1434             rc->frame_size_maximum = 1e9;
1435         else
1436         {
1437             /* The spec has a bizarre special case for the first frame. */
1438             if( h->i_frame == 0 )
1439             {
1440                 //384 * ( Max( PicSizeInMbs, fR * MaxMBPS ) + MaxMBPS * ( tr( 0 ) - tr,n( 0 ) ) ) / MinCR
1441                 double fr = 1. / 172;
1442                 int pic_size_in_mbs = h->mb.i_mb_width * h->mb.i_mb_height;
1443                 rc->frame_size_maximum = 384 * BIT_DEPTH * X264_MAX( pic_size_in_mbs, fr*l->mbps ) / mincr;
1444             }
1445             else
1446             {
1447                 //384 * MaxMBPS * ( tr( n ) - tr( n - 1 ) ) / MinCR
1448                 rc->frame_size_maximum = 384 * BIT_DEPTH * ((double)h->fenc->i_cpb_duration * h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale) * l->mbps / mincr;
1449             }
1450         }
1451     }
1452
1453     if( h->sh.i_type != SLICE_TYPE_B )
1454         rc->bframes = h->fenc->i_bframes;
1455
1456     if( rc->b_abr )
1457     {
1458         q = qscale2qp( rate_estimate_qscale( h ) );
1459     }
1460     else if( rc->b_2pass )
1461     {
1462         rce->new_qscale = rate_estimate_qscale( h );
1463         q = qscale2qp( rce->new_qscale );
1464     }
1465     else /* CQP */
1466     {
1467         if( h->sh.i_type == SLICE_TYPE_B && h->fdec->b_kept_as_ref )
1468             q = ( rc->qp_constant[ SLICE_TYPE_B ] + rc->qp_constant[ SLICE_TYPE_P ] ) / 2;
1469         else
1470             q = rc->qp_constant[ h->sh.i_type ];
1471
1472         if( zone )
1473         {
1474             if( zone->b_force_qp )
1475                 q += zone->i_qp - rc->qp_constant[SLICE_TYPE_P];
1476             else
1477                 q -= 6*log2f( zone->f_bitrate_factor );
1478         }
1479     }
1480     if( i_force_qp != X264_QP_AUTO )
1481         q = i_force_qp - 1;
1482
1483     q = x264_clip3f( q, h->param.rc.i_qp_min, h->param.rc.i_qp_max );
1484
1485     rc->qpa_rc = rc->qpa_rc_prev =
1486     rc->qpa_aq = rc->qpa_aq_prev = 0;
1487     rc->qp = x264_clip3( q + 0.5f, 0, QP_MAX );
1488     h->fdec->f_qp_avg_rc =
1489     h->fdec->f_qp_avg_aq =
1490     rc->qpm = q;
1491     if( rce )
1492         rce->new_qp = rc->qp;
1493
1494     accum_p_qp_update( h, rc->qpm );
1495
1496     if( h->sh.i_type != SLICE_TYPE_B )
1497         rc->last_non_b_pict_type = h->sh.i_type;
1498 }
1499
1500 static float predict_row_size( x264_t *h, int y, float qscale )
1501 {
1502     /* average between two predictors:
1503      * absolute SATD, and scaled bit cost of the colocated row in the previous frame */
1504     x264_ratecontrol_t *rc = h->rc;
1505     float pred_s = predict_size( rc->row_pred[0], qscale, h->fdec->i_row_satd[y] );
1506     if( h->sh.i_type == SLICE_TYPE_I || qscale >= h->fref[0][0]->f_row_qscale[y] )
1507     {
1508         if( h->sh.i_type == SLICE_TYPE_P
1509             && h->fref[0][0]->i_type == h->fdec->i_type
1510             && h->fref[0][0]->f_row_qscale[y] > 0
1511             && h->fref[0][0]->i_row_satd[y] > 0
1512             && (abs(h->fref[0][0]->i_row_satd[y] - h->fdec->i_row_satd[y]) < h->fdec->i_row_satd[y]/2))
1513         {
1514             float pred_t = h->fref[0][0]->i_row_bits[y] * h->fdec->i_row_satd[y] / h->fref[0][0]->i_row_satd[y]
1515                          * h->fref[0][0]->f_row_qscale[y] / qscale;
1516             return (pred_s + pred_t) * 0.5f;
1517         }
1518         return pred_s;
1519     }
1520     /* Our QP is lower than the reference! */
1521     else
1522     {
1523         float pred_intra = predict_size( rc->row_pred[1], qscale, h->fdec->i_row_satds[0][0][y] );
1524         /* Sum: better to overestimate than underestimate by using only one of the two predictors. */
1525         return pred_intra + pred_s;
1526     }
1527 }
1528
1529 static int row_bits_so_far( x264_t *h, int y )
1530 {
1531     int bits = 0;
1532     for( int i = h->i_threadslice_start; i <= y; i++ )
1533         bits += h->fdec->i_row_bits[i];
1534     return bits;
1535 }
1536
1537 static float predict_row_size_sum( x264_t *h, int y, float qp )
1538 {
1539     float qscale = qp2qscale( qp );
1540     float bits = row_bits_so_far( h, y );
1541     for( int i = y+1; i < h->i_threadslice_end; i++ )
1542         bits += predict_row_size( h, i, qscale );
1543     return bits;
1544 }
1545
1546 /* TODO:
1547  *  eliminate all use of qp in row ratecontrol: make it entirely qscale-based.
1548  *  make this function stop being needlessly O(N^2)
1549  *  update more often than once per row? */
1550 int x264_ratecontrol_mb( x264_t *h, int bits )
1551 {
1552     x264_ratecontrol_t *rc = h->rc;
1553     const int y = h->mb.i_mb_y;
1554
1555     h->fdec->i_row_bits[y] += bits;
1556     rc->qpa_aq += h->mb.i_qp;
1557
1558     if( h->mb.i_mb_x != h->mb.i_mb_width - 1 )
1559         return 0;
1560
1561     x264_emms();
1562     rc->qpa_rc += rc->qpm * h->mb.i_mb_width;
1563
1564     if( !rc->b_vbv )
1565         return 0;
1566
1567     float qscale = qp2qscale( rc->qpm );
1568     h->fdec->f_row_qp[y] = rc->qpm;
1569     h->fdec->f_row_qscale[y] = qscale;
1570
1571     update_predictor( rc->row_pred[0], qscale, h->fdec->i_row_satd[y], h->fdec->i_row_bits[y] );
1572     if( h->sh.i_type == SLICE_TYPE_P && rc->qpm < h->fref[0][0]->f_row_qp[y] )
1573         update_predictor( rc->row_pred[1], qscale, h->fdec->i_row_satds[0][0][y], h->fdec->i_row_bits[y] );
1574
1575     /* update ratecontrol per-mbpair in MBAFF */
1576     if( SLICE_MBAFF && !(y&1) )
1577         return 0;
1578
1579     /* FIXME: We don't currently support the case where there's a slice
1580      * boundary in between. */
1581     int can_reencode_row = h->sh.i_first_mb <= ((h->mb.i_mb_y - SLICE_MBAFF) * h->mb.i_mb_stride);
1582
1583     /* tweak quality based on difference from predicted size */
1584     float prev_row_qp = h->fdec->f_row_qp[y];
1585     float qp_absolute_max = h->param.rc.i_qp_max;
1586     if( rc->rate_factor_max_increment )
1587         qp_absolute_max = X264_MIN( qp_absolute_max, rc->qp_novbv + rc->rate_factor_max_increment );
1588     float qp_max = X264_MIN( prev_row_qp + h->param.rc.i_qp_step, qp_absolute_max );
1589     float qp_min = X264_MAX( prev_row_qp - h->param.rc.i_qp_step, h->param.rc.i_qp_min );
1590     float step_size = 0.5f;
1591     float buffer_left_planned = rc->buffer_fill - rc->frame_size_planned;
1592     float slice_size_planned = h->param.b_sliced_threads ? rc->slice_size_planned : rc->frame_size_planned;
1593     float max_frame_error = X264_MAX( 0.05f, 1.0f / h->mb.i_mb_height );
1594     float size_of_other_slices = 0;
1595     if( h->param.b_sliced_threads )
1596     {
1597         float size_of_other_slices_planned = 0;
1598         for( int i = 0; i < h->param.i_threads; i++ )
1599             if( h != h->thread[i] )
1600             {
1601                 size_of_other_slices += h->thread[i]->rc->frame_size_estimated;
1602                 size_of_other_slices_planned += h->thread[i]->rc->slice_size_planned;
1603             }
1604         float weight = rc->slice_size_planned / rc->frame_size_planned;
1605         size_of_other_slices = (size_of_other_slices - size_of_other_slices_planned) * weight + size_of_other_slices_planned;
1606     }
1607     if( y < h->i_threadslice_end-1 )
1608     {
1609         /* B-frames shouldn't use lower QP than their reference frames. */
1610         if( h->sh.i_type == SLICE_TYPE_B )
1611         {
1612             qp_min = X264_MAX( qp_min, X264_MAX( h->fref[0][0]->f_row_qp[y+1], h->fref[1][0]->f_row_qp[y+1] ) );
1613             rc->qpm = X264_MAX( rc->qpm, qp_min );
1614         }
1615
1616         /* More threads means we have to be more cautious in letting ratecontrol use up extra bits. */
1617         float rc_tol = buffer_left_planned / h->param.i_threads * rc->rate_tolerance;
1618         float b1 = predict_row_size_sum( h, y, rc->qpm ) + size_of_other_slices;
1619
1620         /* Don't increase the row QPs until a sufficent amount of the bits of the frame have been processed, in case a flat */
1621         /* area at the top of the frame was measured inaccurately. */
1622         if( row_bits_so_far( h, y ) < 0.05f * slice_size_planned )
1623             qp_max = qp_absolute_max = prev_row_qp;
1624
1625         if( h->sh.i_type != SLICE_TYPE_I )
1626             rc_tol *= 0.5f;
1627
1628         if( !rc->b_vbv_min_rate )
1629             qp_min = X264_MAX( qp_min, rc->qp_novbv );
1630
1631         while( rc->qpm < qp_max
1632                && ((b1 > rc->frame_size_planned + rc_tol) ||
1633                    (rc->buffer_fill - b1 < buffer_left_planned * 0.5f) ||
1634                    (b1 > rc->frame_size_planned && rc->qpm < rc->qp_novbv)) )
1635         {
1636             rc->qpm += step_size;
1637             b1 = predict_row_size_sum( h, y, rc->qpm ) + size_of_other_slices;
1638         }
1639
1640         while( rc->qpm > qp_min
1641                && (rc->qpm > h->fdec->f_row_qp[0] || rc->single_frame_vbv)
1642                && ((b1 < rc->frame_size_planned * 0.8f && rc->qpm <= prev_row_qp)
1643                || b1 < (rc->buffer_fill - rc->buffer_size + rc->buffer_rate) * 1.1f) )
1644         {
1645             rc->qpm -= step_size;
1646             b1 = predict_row_size_sum( h, y, rc->qpm ) + size_of_other_slices;
1647         }
1648
1649         /* avoid VBV underflow or MinCR violation */
1650         while( (rc->qpm < qp_absolute_max)
1651                && ((rc->buffer_fill - b1 < rc->buffer_rate * max_frame_error) ||
1652                    (rc->frame_size_maximum - b1 < rc->frame_size_maximum * max_frame_error)))
1653         {
1654             rc->qpm += step_size;
1655             b1 = predict_row_size_sum( h, y, rc->qpm ) + size_of_other_slices;
1656         }
1657
1658         h->rc->frame_size_estimated = b1 - size_of_other_slices;
1659
1660         /* If the current row was large enough to cause a large QP jump, try re-encoding it. */
1661         if( rc->qpm > qp_max && prev_row_qp < qp_max && can_reencode_row )
1662         {
1663             /* Bump QP to halfway in between... close enough. */
1664             rc->qpm = x264_clip3f( (prev_row_qp + rc->qpm)*0.5f, prev_row_qp + 1.0f, qp_max );
1665             rc->qpa_rc = rc->qpa_rc_prev;
1666             rc->qpa_aq = rc->qpa_aq_prev;
1667             h->fdec->i_row_bits[y] = h->fdec->i_row_bits[y-SLICE_MBAFF] = 0;
1668             return -1;
1669         }
1670     }
1671     else
1672     {
1673         h->rc->frame_size_estimated = predict_row_size_sum( h, y, rc->qpm );
1674
1675         /* Last-ditch attempt: if the last row of the frame underflowed the VBV,
1676          * try again. */
1677         if( (h->rc->frame_size_estimated + size_of_other_slices) > (rc->buffer_fill - rc->buffer_rate * max_frame_error) &&
1678              rc->qpm < qp_max && can_reencode_row )
1679         {
1680             rc->qpm = qp_max;
1681             rc->qpa_rc = rc->qpa_rc_prev;
1682             rc->qpa_aq = rc->qpa_aq_prev;
1683             h->fdec->i_row_bits[y] = h->fdec->i_row_bits[y-SLICE_MBAFF] = 0;
1684             return -1;
1685         }
1686     }
1687
1688     rc->qpa_rc_prev = rc->qpa_rc;
1689     rc->qpa_aq_prev = rc->qpa_aq;
1690
1691     return 0;
1692 }
1693
1694 int x264_ratecontrol_qp( x264_t *h )
1695 {
1696     x264_emms();
1697     return x264_clip3( h->rc->qpm + 0.5f, h->param.rc.i_qp_min, h->param.rc.i_qp_max );
1698 }
1699
1700 int x264_ratecontrol_mb_qp( x264_t *h )
1701 {
1702     x264_emms();
1703     float qp = h->rc->qpm;
1704     if( h->param.rc.i_aq_mode )
1705     {
1706          /* MB-tree currently doesn't adjust quantizers in unreferenced frames. */
1707         float qp_offset = h->fdec->b_kept_as_ref ? h->fenc->f_qp_offset[h->mb.i_mb_xy] : h->fenc->f_qp_offset_aq[h->mb.i_mb_xy];
1708         /* Scale AQ's effect towards zero in emergency mode. */
1709         if( qp > QP_MAX_SPEC )
1710             qp_offset *= (QP_MAX - qp) / (QP_MAX - QP_MAX_SPEC);
1711         qp += qp_offset;
1712     }
1713     return x264_clip3( qp + 0.5f, h->param.rc.i_qp_min, h->param.rc.i_qp_max );
1714 }
1715
1716 /* In 2pass, force the same frame types as in the 1st pass */
1717 int x264_ratecontrol_slice_type( x264_t *h, int frame_num )
1718 {
1719     x264_ratecontrol_t *rc = h->rc;
1720     if( h->param.rc.b_stat_read )
1721     {
1722         if( frame_num >= rc->num_entries )
1723         {
1724             /* We could try to initialize everything required for ABR and
1725              * adaptive B-frames, but that would be complicated.
1726              * So just calculate the average QP used so far. */
1727             h->param.rc.i_qp_constant = (h->stat.i_frame_count[SLICE_TYPE_P] == 0) ? 24 + QP_BD_OFFSET
1728                                       : 1 + h->stat.f_frame_qp[SLICE_TYPE_P] / h->stat.i_frame_count[SLICE_TYPE_P];
1729             rc->qp_constant[SLICE_TYPE_P] = x264_clip3( h->param.rc.i_qp_constant, 0, QP_MAX );
1730             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, QP_MAX );
1731             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, QP_MAX );
1732
1733             x264_log( h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d)\n", rc->num_entries );
1734             x264_log( h, X264_LOG_ERROR, "continuing anyway, at constant QP=%d\n", h->param.rc.i_qp_constant );
1735             if( h->param.i_bframe_adaptive )
1736                 x264_log( h, X264_LOG_ERROR, "disabling adaptive B-frames\n" );
1737
1738             for( int i = 0; i < h->param.i_threads; i++ )
1739             {
1740                 h->thread[i]->rc->b_abr = 0;
1741                 h->thread[i]->rc->b_2pass = 0;
1742                 h->thread[i]->param.rc.i_rc_method = X264_RC_CQP;
1743                 h->thread[i]->param.rc.b_stat_read = 0;
1744                 h->thread[i]->param.i_bframe_adaptive = 0;
1745                 h->thread[i]->param.i_scenecut_threshold = 0;
1746                 h->thread[i]->param.rc.b_mb_tree = 0;
1747                 if( h->thread[i]->param.i_bframe > 1 )
1748                     h->thread[i]->param.i_bframe = 1;
1749             }
1750             return X264_TYPE_AUTO;
1751         }
1752         return rc->entry[frame_num].frame_type;
1753     }
1754     else
1755         return X264_TYPE_AUTO;
1756 }
1757
1758 void x264_ratecontrol_set_weights( x264_t *h, x264_frame_t *frm )
1759 {
1760     ratecontrol_entry_t *rce = &h->rc->entry[frm->i_frame];
1761     if( h->param.analyse.i_weighted_pred <= 0 )
1762         return;
1763
1764     if( rce->i_weight_denom[0] >= 0 )
1765         SET_WEIGHT( frm->weight[0][0], 1, rce->weight[0][0], rce->i_weight_denom[0], rce->weight[0][1] );
1766
1767     if( rce->i_weight_denom[1] >= 0 )
1768     {
1769         SET_WEIGHT( frm->weight[0][1], 1, rce->weight[1][0], rce->i_weight_denom[1], rce->weight[1][1] );
1770         SET_WEIGHT( frm->weight[0][2], 1, rce->weight[2][0], rce->i_weight_denom[1], rce->weight[2][1] );
1771     }
1772 }
1773
1774 /* After encoding one frame, save stats and update ratecontrol state */
1775 int x264_ratecontrol_end( x264_t *h, int bits, int *filler )
1776 {
1777     x264_ratecontrol_t *rc = h->rc;
1778     const int *mbs = h->stat.frame.i_mb_count;
1779
1780     x264_emms();
1781
1782     h->stat.frame.i_mb_count_skip = mbs[P_SKIP] + mbs[B_SKIP];
1783     h->stat.frame.i_mb_count_i = mbs[I_16x16] + mbs[I_8x8] + mbs[I_4x4];
1784     h->stat.frame.i_mb_count_p = mbs[P_L0] + mbs[P_8x8];
1785     for( int i = B_DIRECT; i < B_8x8; i++ )
1786         h->stat.frame.i_mb_count_p += mbs[i];
1787
1788     h->fdec->f_qp_avg_rc = rc->qpa_rc /= h->mb.i_mb_count;
1789     h->fdec->f_qp_avg_aq = (float)rc->qpa_aq / h->mb.i_mb_count;
1790     h->fdec->f_crf_avg = h->param.rc.f_rf_constant + h->fdec->f_qp_avg_rc - rc->qp_novbv;
1791
1792     if( h->param.rc.b_stat_write )
1793     {
1794         char c_type = h->sh.i_type==SLICE_TYPE_I ? (h->fenc->i_poc==0 ? 'I' : 'i')
1795                     : h->sh.i_type==SLICE_TYPE_P ? 'P'
1796                     : h->fenc->b_kept_as_ref ? 'B' : 'b';
1797         int dir_frame = h->stat.frame.i_direct_score[1] - h->stat.frame.i_direct_score[0];
1798         int dir_avg = h->stat.i_direct_score[1] - h->stat.i_direct_score[0];
1799         char c_direct = h->mb.b_direct_auto_write ?
1800                         ( dir_frame>0 ? 's' : dir_frame<0 ? 't' :
1801                           dir_avg>0 ? 's' : dir_avg<0 ? 't' : '-' )
1802                         : '-';
1803         if( fprintf( rc->p_stat_file_out,
1804                  "in:%d out:%d type:%c dur:%"PRId64" cpbdur:%"PRId64" q:%.2f tex:%d mv:%d misc:%d imb:%d pmb:%d smb:%d d:%c ref:",
1805                  h->fenc->i_frame, h->i_frame,
1806                  c_type, h->fenc->i_duration,
1807                  h->fenc->i_cpb_duration, rc->qpa_rc,
1808                  h->stat.frame.i_tex_bits,
1809                  h->stat.frame.i_mv_bits,
1810                  h->stat.frame.i_misc_bits,
1811                  h->stat.frame.i_mb_count_i,
1812                  h->stat.frame.i_mb_count_p,
1813                  h->stat.frame.i_mb_count_skip,
1814                  c_direct) < 0 )
1815             goto fail;
1816
1817         /* Only write information for reference reordering once. */
1818         int use_old_stats = h->param.rc.b_stat_read && rc->rce->refs > 1;
1819         for( int i = 0; i < (use_old_stats ? rc->rce->refs : h->i_ref[0]); i++ )
1820         {
1821             int refcount = use_old_stats         ? rc->rce->refcount[i]
1822                          : PARAM_INTERLACED      ? h->stat.frame.i_mb_count_ref[0][i*2]
1823                                                  + h->stat.frame.i_mb_count_ref[0][i*2+1]
1824                          :                         h->stat.frame.i_mb_count_ref[0][i];
1825             if( fprintf( rc->p_stat_file_out, "%d ", refcount ) < 0 )
1826                 goto fail;
1827         }
1828
1829         if( h->param.analyse.i_weighted_pred >= X264_WEIGHTP_SIMPLE && h->sh.weight[0][0].weightfn )
1830         {
1831             if( fprintf( rc->p_stat_file_out, "w:%d,%d,%d",
1832                          h->sh.weight[0][0].i_denom, h->sh.weight[0][0].i_scale, h->sh.weight[0][0].i_offset ) < 0 )
1833                 goto fail;
1834             if( h->sh.weight[0][1].weightfn || h->sh.weight[0][2].weightfn )
1835             {
1836                 if( fprintf( rc->p_stat_file_out, ",%d,%d,%d,%d,%d ",
1837                              h->sh.weight[0][1].i_denom, h->sh.weight[0][1].i_scale, h->sh.weight[0][1].i_offset,
1838                              h->sh.weight[0][2].i_scale, h->sh.weight[0][2].i_offset ) < 0 )
1839                     goto fail;
1840             }
1841             else if( fprintf( rc->p_stat_file_out, " " ) < 0 )
1842                 goto fail;
1843         }
1844
1845         if( fprintf( rc->p_stat_file_out, ";\n") < 0 )
1846             goto fail;
1847
1848         /* Don't re-write the data in multi-pass mode. */
1849         if( h->param.rc.b_mb_tree && h->fenc->b_kept_as_ref && !h->param.rc.b_stat_read )
1850         {
1851             uint8_t i_type = h->sh.i_type;
1852             /* Values are stored as big-endian FIX8.8 */
1853             for( int i = 0; i < h->mb.i_mb_count; i++ )
1854                 rc->mbtree.qp_buffer[0][i] = endian_fix16( h->fenc->f_qp_offset[i]*256.0 );
1855             if( fwrite( &i_type, 1, 1, rc->p_mbtree_stat_file_out ) < 1 )
1856                 goto fail;
1857             if( fwrite( rc->mbtree.qp_buffer[0], sizeof(uint16_t), h->mb.i_mb_count, rc->p_mbtree_stat_file_out ) < h->mb.i_mb_count )
1858                 goto fail;
1859         }
1860     }
1861
1862     if( rc->b_abr )
1863     {
1864         if( h->sh.i_type != SLICE_TYPE_B )
1865             rc->cplxr_sum += bits * qp2qscale( rc->qpa_rc ) / rc->last_rceq;
1866         else
1867         {
1868             /* Depends on the fact that B-frame's QP is an offset from the following P-frame's.
1869              * Not perfectly accurate with B-refs, but good enough. */
1870             rc->cplxr_sum += bits * qp2qscale( rc->qpa_rc ) / (rc->last_rceq * fabs( h->param.rc.f_pb_factor ));
1871         }
1872         rc->cplxr_sum *= rc->cbr_decay;
1873         rc->wanted_bits_window += h->fenc->f_duration * rc->bitrate;
1874         rc->wanted_bits_window *= rc->cbr_decay;
1875     }
1876
1877     if( rc->b_2pass )
1878         rc->expected_bits_sum += qscale2bits( rc->rce, qp2qscale( rc->rce->new_qp ) );
1879
1880     if( h->mb.b_variable_qp )
1881     {
1882         if( h->sh.i_type == SLICE_TYPE_B )
1883         {
1884             rc->bframe_bits += bits;
1885             if( h->fenc->b_last_minigop_bframe )
1886             {
1887                 update_predictor( rc->pred_b_from_p, qp2qscale( rc->qpa_rc ),
1888                                   h->fref[1][h->i_ref[1]-1]->i_satd, rc->bframe_bits / rc->bframes );
1889                 rc->bframe_bits = 0;
1890             }
1891         }
1892     }
1893
1894     *filler = update_vbv( h, bits );
1895     rc->filler_bits_sum += *filler * 8;
1896
1897     if( h->sps->vui.b_nal_hrd_parameters_present )
1898     {
1899         if( h->fenc->i_frame == 0 )
1900         {
1901             // access unit initialises the HRD
1902             h->fenc->hrd_timing.cpb_initial_arrival_time = 0;
1903             rc->initial_cpb_removal_delay = h->initial_cpb_removal_delay;
1904             rc->initial_cpb_removal_delay_offset = h->initial_cpb_removal_delay_offset;
1905             h->fenc->hrd_timing.cpb_removal_time = rc->nrt_first_access_unit = (double)rc->initial_cpb_removal_delay / 90000;
1906         }
1907         else
1908         {
1909             h->fenc->hrd_timing.cpb_removal_time = rc->nrt_first_access_unit + (double)(h->fenc->i_cpb_delay - h->i_cpb_delay_pir_offset) *
1910                                                    h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
1911
1912             double cpb_earliest_arrival_time = h->fenc->hrd_timing.cpb_removal_time - (double)rc->initial_cpb_removal_delay / 90000;
1913             if( h->fenc->b_keyframe )
1914             {
1915                  rc->nrt_first_access_unit = h->fenc->hrd_timing.cpb_removal_time;
1916                  rc->initial_cpb_removal_delay = h->initial_cpb_removal_delay;
1917                  rc->initial_cpb_removal_delay_offset = h->initial_cpb_removal_delay_offset;
1918             }
1919             else
1920                  cpb_earliest_arrival_time -= (double)rc->initial_cpb_removal_delay_offset / 90000;
1921
1922             if( h->sps->vui.hrd.b_cbr_hrd )
1923                 h->fenc->hrd_timing.cpb_initial_arrival_time = rc->previous_cpb_final_arrival_time;
1924             else
1925                 h->fenc->hrd_timing.cpb_initial_arrival_time = X264_MAX( rc->previous_cpb_final_arrival_time, cpb_earliest_arrival_time );
1926         }
1927         int filler_bits = *filler ? X264_MAX( (FILLER_OVERHEAD - h->param.b_annexb), *filler )*8 : 0;
1928         // Equation C-6
1929         h->fenc->hrd_timing.cpb_final_arrival_time = rc->previous_cpb_final_arrival_time = h->fenc->hrd_timing.cpb_initial_arrival_time +
1930                                                      (double)(bits + filler_bits) / h->sps->vui.hrd.i_bit_rate_unscaled;
1931
1932         h->fenc->hrd_timing.dpb_output_time = (double)h->fenc->i_dpb_output_delay * h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale +
1933                                               h->fenc->hrd_timing.cpb_removal_time;
1934     }
1935
1936     return 0;
1937 fail:
1938     x264_log( h, X264_LOG_ERROR, "ratecontrol_end: stats file could not be written to\n" );
1939     return -1;
1940 }
1941
1942 /****************************************************************************
1943  * 2 pass functions
1944  ***************************************************************************/
1945
1946 /**
1947  * modify the bitrate curve from pass1 for one frame
1948  */
1949 static double get_qscale(x264_t *h, ratecontrol_entry_t *rce, double rate_factor, int frame_num)
1950 {
1951     x264_ratecontrol_t *rcc= h->rc;
1952     x264_zone_t *zone = get_zone( h, frame_num );
1953     double q;
1954     if( h->param.rc.b_mb_tree )
1955     {
1956         double timescale = (double)h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
1957         q = pow( BASE_FRAME_DURATION / CLIP_DURATION(rce->i_duration * timescale), 1 - h->param.rc.f_qcompress );
1958     }
1959     else
1960         q = pow( rce->blurred_complexity, 1 - rcc->qcompress );
1961
1962     // avoid NaN's in the rc_eq
1963     if( !isfinite(q) || rce->tex_bits + rce->mv_bits == 0 )
1964         q = rcc->last_qscale_for[rce->pict_type];
1965     else
1966     {
1967         rcc->last_rceq = q;
1968         q /= rate_factor;
1969         rcc->last_qscale = q;
1970     }
1971
1972     if( zone )
1973     {
1974         if( zone->b_force_qp )
1975             q = qp2qscale( zone->i_qp );
1976         else
1977             q /= zone->f_bitrate_factor;
1978     }
1979
1980     return q;
1981 }
1982
1983 static double get_diff_limited_q(x264_t *h, ratecontrol_entry_t *rce, double q, int frame_num)
1984 {
1985     x264_ratecontrol_t *rcc = h->rc;
1986     const int pict_type = rce->pict_type;
1987     x264_zone_t *zone = get_zone( h, frame_num );
1988
1989     // force I/B quants as a function of P quants
1990     const double last_p_q    = rcc->last_qscale_for[SLICE_TYPE_P];
1991     const double last_non_b_q= rcc->last_qscale_for[rcc->last_non_b_pict_type];
1992     if( pict_type == SLICE_TYPE_I )
1993     {
1994         double iq = q;
1995         double pq = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
1996         double ip_factor = fabs( h->param.rc.f_ip_factor );
1997         /* don't apply ip_factor if the following frame is also I */
1998         if( rcc->accum_p_norm <= 0 )
1999             q = iq;
2000         else if( h->param.rc.f_ip_factor < 0 )
2001             q = iq / ip_factor;
2002         else if( rcc->accum_p_norm >= 1 )
2003             q = pq / ip_factor;
2004         else
2005             q = rcc->accum_p_norm * pq / ip_factor + (1 - rcc->accum_p_norm) * iq;
2006     }
2007     else if( pict_type == SLICE_TYPE_B )
2008     {
2009         if( h->param.rc.f_pb_factor > 0 )
2010             q = last_non_b_q;
2011         if( !rce->kept_as_ref )
2012             q *= fabs( h->param.rc.f_pb_factor );
2013     }
2014     else if( pict_type == SLICE_TYPE_P
2015              && rcc->last_non_b_pict_type == SLICE_TYPE_P
2016              && rce->tex_bits == 0 )
2017     {
2018         q = last_p_q;
2019     }
2020
2021     /* last qscale / qdiff stuff */
2022     if( rcc->last_non_b_pict_type == pict_type &&
2023         (pict_type!=SLICE_TYPE_I || rcc->last_accum_p_norm < 1) )
2024     {
2025         double last_q = rcc->last_qscale_for[pict_type];
2026         double max_qscale = last_q * rcc->lstep;
2027         double min_qscale = last_q / rcc->lstep;
2028
2029         if     ( q > max_qscale ) q = max_qscale;
2030         else if( q < min_qscale ) q = min_qscale;
2031     }
2032
2033     rcc->last_qscale_for[pict_type] = q;
2034     if( pict_type != SLICE_TYPE_B )
2035         rcc->last_non_b_pict_type = pict_type;
2036     if( pict_type == SLICE_TYPE_I )
2037     {
2038         rcc->last_accum_p_norm = rcc->accum_p_norm;
2039         rcc->accum_p_norm = 0;
2040         rcc->accum_p_qp = 0;
2041     }
2042     if( pict_type == SLICE_TYPE_P )
2043     {
2044         float mask = 1 - pow( (float)rce->i_count / rcc->nmb, 2 );
2045         rcc->accum_p_qp   = mask * (qscale2qp( q ) + rcc->accum_p_qp);
2046         rcc->accum_p_norm = mask * (1 + rcc->accum_p_norm);
2047     }
2048
2049     if( zone )
2050     {
2051         if( zone->b_force_qp )
2052             q = qp2qscale( zone->i_qp );
2053         else
2054             q /= zone->f_bitrate_factor;
2055     }
2056
2057     return q;
2058 }
2059
2060 static float predict_size( predictor_t *p, float q, float var )
2061 {
2062     return (p->coeff*var + p->offset) / (q*p->count);
2063 }
2064
2065 static void update_predictor( predictor_t *p, float q, float var, float bits )
2066 {
2067     float range = 1.5;
2068     if( var < 10 )
2069         return;
2070     float old_coeff = p->coeff / p->count;
2071     float new_coeff = X264_MAX( bits*q / var, p->coeff_min );
2072     float new_coeff_clipped = x264_clip3f( new_coeff, old_coeff/range, old_coeff*range );
2073     float new_offset = bits*q - new_coeff_clipped * var;
2074     if( new_offset >= 0 )
2075         new_coeff = new_coeff_clipped;
2076     else
2077         new_offset = 0;
2078     p->count  *= p->decay;
2079     p->coeff  *= p->decay;
2080     p->offset *= p->decay;
2081     p->count  ++;
2082     p->coeff  += new_coeff;
2083     p->offset += new_offset;
2084 }
2085
2086 // update VBV after encoding a frame
2087 static int update_vbv( x264_t *h, int bits )
2088 {
2089     int filler = 0;
2090     int bitrate = h->sps->vui.hrd.i_bit_rate_unscaled;
2091     x264_ratecontrol_t *rcc = h->rc;
2092     x264_ratecontrol_t *rct = h->thread[0]->rc;
2093     uint64_t buffer_size = (uint64_t)h->sps->vui.hrd.i_cpb_size_unscaled * h->sps->vui.i_time_scale;
2094
2095     if( rcc->last_satd >= h->mb.i_mb_count )
2096         update_predictor( &rct->pred[h->sh.i_type], qp2qscale( rcc->qpa_rc ), rcc->last_satd, bits );
2097
2098     if( !rcc->b_vbv )
2099         return filler;
2100
2101     rct->buffer_fill_final -= (uint64_t)bits * h->sps->vui.i_time_scale;
2102
2103     if( rct->buffer_fill_final < 0 )
2104         x264_log( h, X264_LOG_WARNING, "VBV underflow (frame %d, %.0f bits)\n", h->i_frame, (double)rct->buffer_fill_final / h->sps->vui.i_time_scale );
2105     rct->buffer_fill_final = X264_MAX( rct->buffer_fill_final, 0 );
2106     rct->buffer_fill_final += (uint64_t)bitrate * h->sps->vui.i_num_units_in_tick * h->fenc->i_cpb_duration;
2107
2108     if( h->sps->vui.hrd.b_cbr_hrd && rct->buffer_fill_final > buffer_size )
2109     {
2110         int64_t scale = (int64_t)h->sps->vui.i_time_scale * 8;
2111         filler = (rct->buffer_fill_final - buffer_size + scale - 1) / scale;
2112         bits = X264_MAX( (FILLER_OVERHEAD - h->param.b_annexb), filler ) * 8;
2113         rct->buffer_fill_final -= (uint64_t)bits * h->sps->vui.i_time_scale;
2114     }
2115     else
2116         rct->buffer_fill_final = X264_MIN( rct->buffer_fill_final, buffer_size );
2117
2118     return filler;
2119 }
2120
2121 void x264_hrd_fullness( x264_t *h )
2122 {
2123     x264_ratecontrol_t *rct = h->thread[0]->rc;
2124     uint64_t denom = (uint64_t)h->sps->vui.hrd.i_bit_rate_unscaled * h->sps->vui.i_time_scale / rct->hrd_multiply_denom;
2125     uint64_t cpb_state = rct->buffer_fill_final;
2126     uint64_t cpb_size = (uint64_t)h->sps->vui.hrd.i_cpb_size_unscaled * h->sps->vui.i_time_scale;
2127     uint64_t multiply_factor = 180000 / rct->hrd_multiply_denom;
2128
2129     if( rct->buffer_fill_final < 0 || rct->buffer_fill_final > cpb_size )
2130     {
2131          x264_log( h, X264_LOG_WARNING, "CPB %s: %.0lf bits in a %.0lf-bit buffer\n",
2132                    rct->buffer_fill_final < 0 ? "underflow" : "overflow", (float)rct->buffer_fill_final/denom, (float)cpb_size/denom );
2133     }
2134
2135     h->initial_cpb_removal_delay = (multiply_factor * cpb_state + denom) / (2*denom);
2136     h->initial_cpb_removal_delay_offset = (multiply_factor * cpb_size + denom) / (2*denom) - h->initial_cpb_removal_delay;
2137 }
2138
2139 // provisionally update VBV according to the planned size of all frames currently in progress
2140 static void update_vbv_plan( x264_t *h, int overhead )
2141 {
2142     x264_ratecontrol_t *rcc = h->rc;
2143     rcc->buffer_fill = h->thread[0]->rc->buffer_fill_final / h->sps->vui.i_time_scale;
2144     if( h->i_thread_frames > 1 )
2145     {
2146         int j = h->rc - h->thread[0]->rc;
2147         for( int i = 1; i < h->i_thread_frames; i++ )
2148         {
2149             x264_t *t = h->thread[ (j+i)%h->i_thread_frames ];
2150             double bits = t->rc->frame_size_planned;
2151             if( !t->b_thread_active )
2152                 continue;
2153             bits = X264_MAX(bits, t->rc->frame_size_estimated);
2154             rcc->buffer_fill -= bits;
2155             rcc->buffer_fill = X264_MAX( rcc->buffer_fill, 0 );
2156             rcc->buffer_fill += t->rc->buffer_rate;
2157             rcc->buffer_fill = X264_MIN( rcc->buffer_fill, rcc->buffer_size );
2158         }
2159     }
2160     rcc->buffer_fill = X264_MIN( rcc->buffer_fill, rcc->buffer_size );
2161     rcc->buffer_fill -= overhead;
2162 }
2163
2164 // apply VBV constraints and clip qscale to between lmin and lmax
2165 static double clip_qscale( x264_t *h, int pict_type, double q )
2166 {
2167     x264_ratecontrol_t *rcc = h->rc;
2168     double lmin = rcc->lmin[pict_type];
2169     double lmax = rcc->lmax[pict_type];
2170     if( rcc->rate_factor_max_increment )
2171         lmax = X264_MIN( lmax, qp2qscale( rcc->qp_novbv + rcc->rate_factor_max_increment ) );
2172     double q0 = q;
2173
2174     /* B-frames are not directly subject to VBV,
2175      * since they are controlled by the P-frames' QPs. */
2176
2177     if( rcc->b_vbv && rcc->last_satd > 0 )
2178     {
2179         /* Lookahead VBV: raise the quantizer as necessary such that no frames in
2180          * the lookahead overflow and such that the buffer is in a reasonable state
2181          * by the end of the lookahead. */
2182         if( h->param.rc.i_lookahead )
2183         {
2184             int terminate = 0;
2185
2186             /* Avoid an infinite loop. */
2187             for( int iterations = 0; iterations < 1000 && terminate != 3; iterations++ )
2188             {
2189                 double frame_q[3];
2190                 double cur_bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
2191                 double buffer_fill_cur = rcc->buffer_fill - cur_bits;
2192                 double target_fill;
2193                 double total_duration = 0;
2194                 frame_q[0] = h->sh.i_type == SLICE_TYPE_I ? q * h->param.rc.f_ip_factor : q;
2195                 frame_q[1] = frame_q[0] * h->param.rc.f_pb_factor;
2196                 frame_q[2] = frame_q[0] / h->param.rc.f_ip_factor;
2197
2198                 /* Loop over the planned future frames. */
2199                 for( int j = 0; buffer_fill_cur >= 0 && buffer_fill_cur <= rcc->buffer_size; j++ )
2200                 {
2201                     total_duration += h->fenc->f_planned_cpb_duration[j];
2202                     buffer_fill_cur += rcc->vbv_max_rate * h->fenc->f_planned_cpb_duration[j];
2203                     int i_type = h->fenc->i_planned_type[j];
2204                     int i_satd = h->fenc->i_planned_satd[j];
2205                     if( i_type == X264_TYPE_AUTO )
2206                         break;
2207                     i_type = IS_X264_TYPE_I( i_type ) ? SLICE_TYPE_I : IS_X264_TYPE_B( i_type ) ? SLICE_TYPE_B : SLICE_TYPE_P;
2208                     cur_bits = predict_size( &rcc->pred[i_type], frame_q[i_type], i_satd );
2209                     buffer_fill_cur -= cur_bits;
2210                 }
2211                 /* Try to get to get the buffer at least 50% filled, but don't set an impossible goal. */
2212                 target_fill = X264_MIN( rcc->buffer_fill + total_duration * rcc->vbv_max_rate * 0.5, rcc->buffer_size * 0.5 );
2213                 if( buffer_fill_cur < target_fill )
2214                 {
2215                     q *= 1.01;
2216                     terminate |= 1;
2217                     continue;
2218                 }
2219                 /* Try to get the buffer no more than 80% filled, but don't set an impossible goal. */
2220                 target_fill = x264_clip3f( rcc->buffer_fill - total_duration * rcc->vbv_max_rate * 0.5, rcc->buffer_size * 0.8, rcc->buffer_size );
2221                 if( rcc->b_vbv_min_rate && buffer_fill_cur > target_fill )
2222                 {
2223                     q /= 1.01;
2224                     terminate |= 2;
2225                     continue;
2226                 }
2227                 break;
2228             }
2229         }
2230         /* Fallback to old purely-reactive algorithm: no lookahead. */
2231         else
2232         {
2233             if( ( pict_type == SLICE_TYPE_P ||
2234                 ( pict_type == SLICE_TYPE_I && rcc->last_non_b_pict_type == SLICE_TYPE_I ) ) &&
2235                 rcc->buffer_fill/rcc->buffer_size < 0.5 )
2236             {
2237                 q /= x264_clip3f( 2.0*rcc->buffer_fill/rcc->buffer_size, 0.5, 1.0 );
2238             }
2239
2240             /* Now a hard threshold to make sure the frame fits in VBV.
2241              * This one is mostly for I-frames. */
2242             double bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
2243             double qf = 1.0;
2244             /* For small VBVs, allow the frame to use up the entire VBV. */
2245             double max_fill_factor = h->param.rc.i_vbv_buffer_size >= 5*h->param.rc.i_vbv_max_bitrate / rcc->fps ? 2 : 1;
2246             /* For single-frame VBVs, request that the frame use up the entire VBV. */
2247             double min_fill_factor = rcc->single_frame_vbv ? 1 : 2;
2248
2249             if( bits > rcc->buffer_fill/max_fill_factor )
2250                 qf = x264_clip3f( rcc->buffer_fill/(max_fill_factor*bits), 0.2, 1.0 );
2251             q /= qf;
2252             bits *= qf;
2253             if( bits < rcc->buffer_rate/min_fill_factor )
2254                 q *= bits*min_fill_factor/rcc->buffer_rate;
2255             q = X264_MAX( q0, q );
2256         }
2257
2258         /* Apply MinCR restrictions */
2259         double bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
2260         if( bits > rcc->frame_size_maximum )
2261             q *= bits / rcc->frame_size_maximum;
2262         bits = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
2263
2264         /* Check B-frame complexity, and use up any bits that would
2265          * overflow before the next P-frame. */
2266         if( h->sh.i_type == SLICE_TYPE_P && !rcc->single_frame_vbv )
2267         {
2268             int nb = rcc->bframes;
2269             double pbbits = bits;
2270             double bbits = predict_size( rcc->pred_b_from_p, q * h->param.rc.f_pb_factor, rcc->last_satd );
2271             double space;
2272             double bframe_cpb_duration = 0;
2273             double minigop_cpb_duration;
2274             for( int i = 0; i < nb; i++ )
2275                 bframe_cpb_duration += h->fenc->f_planned_cpb_duration[1+i];
2276
2277             if( bbits * nb > bframe_cpb_duration * rcc->vbv_max_rate )
2278                 nb = 0;
2279             pbbits += nb * bbits;
2280
2281             minigop_cpb_duration = bframe_cpb_duration + h->fenc->f_planned_cpb_duration[0];
2282             space = rcc->buffer_fill + minigop_cpb_duration*rcc->vbv_max_rate - rcc->buffer_size;
2283             if( pbbits < space )
2284             {
2285                 q *= X264_MAX( pbbits / space, bits / (0.5 * rcc->buffer_size) );
2286             }
2287             q = X264_MAX( q0/2, q );
2288         }
2289
2290         if( !rcc->b_vbv_min_rate )
2291             q = X264_MAX( q0, q );
2292     }
2293
2294     if( lmin==lmax )
2295         return lmin;
2296     else if( rcc->b_2pass )
2297     {
2298         double min2 = log( lmin );
2299         double max2 = log( lmax );
2300         q = (log(q) - min2)/(max2-min2) - 0.5;
2301         q = 1.0/(1.0 + exp( -4*q ));
2302         q = q*(max2-min2) + min2;
2303         return exp( q );
2304     }
2305     else
2306         return x264_clip3f( q, lmin, lmax );
2307 }
2308
2309 // update qscale for 1 frame based on actual bits used so far
2310 static float rate_estimate_qscale( x264_t *h )
2311 {
2312     float q;
2313     x264_ratecontrol_t *rcc = h->rc;
2314     ratecontrol_entry_t UNINIT(rce);
2315     int pict_type = h->sh.i_type;
2316     int64_t total_bits = 8*(h->stat.i_frame_size[SLICE_TYPE_I]
2317                           + h->stat.i_frame_size[SLICE_TYPE_P]
2318                           + h->stat.i_frame_size[SLICE_TYPE_B])
2319                        - rcc->filler_bits_sum;
2320
2321     if( rcc->b_2pass )
2322     {
2323         rce = *rcc->rce;
2324         if( pict_type != rce.pict_type )
2325         {
2326             x264_log( h, X264_LOG_ERROR, "slice=%c but 2pass stats say %c\n",
2327                       slice_type_to_char[pict_type], slice_type_to_char[rce.pict_type] );
2328         }
2329     }
2330
2331     if( pict_type == SLICE_TYPE_B )
2332     {
2333         /* B-frames don't have independent ratecontrol, but rather get the
2334          * average QP of the two adjacent P-frames + an offset */
2335
2336         int i0 = IS_X264_TYPE_I(h->fref_nearest[0]->i_type);
2337         int i1 = IS_X264_TYPE_I(h->fref_nearest[1]->i_type);
2338         int dt0 = abs(h->fenc->i_poc - h->fref_nearest[0]->i_poc);
2339         int dt1 = abs(h->fenc->i_poc - h->fref_nearest[1]->i_poc);
2340         float q0 = h->fref_nearest[0]->f_qp_avg_rc;
2341         float q1 = h->fref_nearest[1]->f_qp_avg_rc;
2342
2343         if( h->fref_nearest[0]->i_type == X264_TYPE_BREF )
2344             q0 -= rcc->pb_offset/2;
2345         if( h->fref_nearest[1]->i_type == X264_TYPE_BREF )
2346             q1 -= rcc->pb_offset/2;
2347
2348         if( i0 && i1 )
2349             q = (q0 + q1) / 2 + rcc->ip_offset;
2350         else if( i0 )
2351             q = q1;
2352         else if( i1 )
2353             q = q0;
2354         else
2355             q = (q0*dt1 + q1*dt0) / (dt0 + dt1);
2356
2357         if( h->fenc->b_kept_as_ref )
2358             q += rcc->pb_offset/2;
2359         else
2360             q += rcc->pb_offset;
2361
2362         if( rcc->b_2pass && rcc->b_vbv )
2363             rcc->frame_size_planned = qscale2bits( &rce, qp2qscale( q ) );
2364         else
2365             rcc->frame_size_planned = predict_size( rcc->pred_b_from_p, qp2qscale( q ), h->fref[1][h->i_ref[1]-1]->i_satd );
2366         /* Limit planned size by MinCR */
2367         if( rcc->b_vbv )
2368             rcc->frame_size_planned = X264_MIN( rcc->frame_size_planned, rcc->frame_size_maximum );
2369         h->rc->frame_size_estimated = rcc->frame_size_planned;
2370
2371         /* For row SATDs */
2372         if( rcc->b_vbv )
2373             rcc->last_satd = x264_rc_analyse_slice( h );
2374         rcc->qp_novbv = q;
2375         return qp2qscale( q );
2376     }
2377     else
2378     {
2379         double abr_buffer = 2 * rcc->rate_tolerance * rcc->bitrate;
2380
2381         if( rcc->b_2pass )
2382         {
2383             double lmin = rcc->lmin[pict_type];
2384             double lmax = rcc->lmax[pict_type];
2385             int64_t diff;
2386             int64_t predicted_bits = total_bits;
2387
2388             if( rcc->b_vbv )
2389             {
2390                 if( h->i_thread_frames > 1 )
2391                 {
2392                     int j = h->rc - h->thread[0]->rc;
2393                     for( int i = 1; i < h->i_thread_frames; i++ )
2394                     {
2395                         x264_t *t = h->thread[ (j+i)%h->i_thread_frames ];
2396                         double bits = t->rc->frame_size_planned;
2397                         if( !t->b_thread_active )
2398                             continue;
2399                         bits = X264_MAX(bits, t->rc->frame_size_estimated);
2400                         predicted_bits += (int64_t)bits;
2401                     }
2402                 }
2403             }
2404             else
2405             {
2406                 if( h->i_frame < h->i_thread_frames )
2407                     predicted_bits += (int64_t)h->i_frame * rcc->bitrate / rcc->fps;
2408                 else
2409                     predicted_bits += (int64_t)(h->i_thread_frames - 1) * rcc->bitrate / rcc->fps;
2410             }
2411
2412             /* Adjust ABR buffer based on distance to the end of the video. */
2413             if( rcc->num_entries > h->i_frame )
2414             {
2415                 double final_bits = rcc->entry[rcc->num_entries-1].expected_bits;
2416                 double video_pos = rce.expected_bits / final_bits;
2417                 double scale_factor = sqrt( (1 - video_pos) * rcc->num_entries );
2418                 abr_buffer *= 0.5 * X264_MAX( scale_factor, 0.5 );
2419             }
2420
2421             diff = predicted_bits - (int64_t)rce.expected_bits;
2422             q = rce.new_qscale;
2423             q /= x264_clip3f((double)(abr_buffer - diff) / abr_buffer, .5, 2);
2424             if( ((h->i_frame + 1 - h->i_thread_frames) >= rcc->fps) &&
2425                 (rcc->expected_bits_sum > 0))
2426             {
2427                 /* Adjust quant based on the difference between
2428                  * achieved and expected bitrate so far */
2429                 double cur_time = (double)h->i_frame / rcc->num_entries;
2430                 double w = x264_clip3f( cur_time*100, 0.0, 1.0 );
2431                 q *= pow( (double)total_bits / rcc->expected_bits_sum, w );
2432             }
2433             rcc->qp_novbv = qscale2qp( q );
2434             if( rcc->b_vbv )
2435             {
2436                 /* Do not overflow vbv */
2437                 double expected_size = qscale2bits( &rce, q );
2438                 double expected_vbv = rcc->buffer_fill + rcc->buffer_rate - expected_size;
2439                 double expected_fullness = rce.expected_vbv / rcc->buffer_size;
2440                 double qmax = q*(2 - expected_fullness);
2441                 double size_constraint = 1 + expected_fullness;
2442                 qmax = X264_MAX( qmax, rce.new_qscale );
2443                 if( expected_fullness < .05 )
2444                     qmax = lmax;
2445                 qmax = X264_MIN(qmax, lmax);
2446                 while( ((expected_vbv < rce.expected_vbv/size_constraint) && (q < qmax)) ||
2447                         ((expected_vbv < 0) && (q < lmax)))
2448                 {
2449                     q *= 1.05;
2450                     expected_size = qscale2bits(&rce, q);
2451                     expected_vbv = rcc->buffer_fill + rcc->buffer_rate - expected_size;
2452                 }
2453                 rcc->last_satd = x264_rc_analyse_slice( h );
2454             }
2455             q = x264_clip3f( q, lmin, lmax );
2456         }
2457         else /* 1pass ABR */
2458         {
2459             /* Calculate the quantizer which would have produced the desired
2460              * average bitrate if it had been applied to all frames so far.
2461              * Then modulate that quant based on the current frame's complexity
2462              * relative to the average complexity so far (using the 2pass RCEQ).
2463              * Then bias the quant up or down if total size so far was far from
2464              * the target.
2465              * Result: Depending on the value of rate_tolerance, there is a
2466              * tradeoff between quality and bitrate precision. But at large
2467              * tolerances, the bit distribution approaches that of 2pass. */
2468
2469             double wanted_bits, overflow = 1;
2470
2471             rcc->last_satd = x264_rc_analyse_slice( h );
2472             rcc->short_term_cplxsum *= 0.5;
2473             rcc->short_term_cplxcount *= 0.5;
2474             rcc->short_term_cplxsum += rcc->last_satd / (CLIP_DURATION(h->fenc->f_duration) / BASE_FRAME_DURATION);
2475             rcc->short_term_cplxcount ++;
2476
2477             rce.tex_bits = rcc->last_satd;
2478             rce.blurred_complexity = rcc->short_term_cplxsum / rcc->short_term_cplxcount;
2479             rce.mv_bits = 0;
2480             rce.p_count = rcc->nmb;
2481             rce.i_count = 0;
2482             rce.s_count = 0;
2483             rce.qscale = 1;
2484             rce.pict_type = pict_type;
2485             rce.i_duration = h->fenc->i_duration;
2486
2487             if( h->param.rc.i_rc_method == X264_RC_CRF )
2488             {
2489                 q = get_qscale( h, &rce, rcc->rate_factor_constant, h->fenc->i_frame );
2490             }
2491             else
2492             {
2493                 q = get_qscale( h, &rce, rcc->wanted_bits_window / rcc->cplxr_sum, h->fenc->i_frame );
2494
2495                 /* ABR code can potentially be counterproductive in CBR, so just don't bother.
2496                  * Don't run it if the frame complexity is zero either. */
2497                 if( !rcc->b_vbv_min_rate && rcc->last_satd )
2498                 {
2499                     // FIXME is it simpler to keep track of wanted_bits in ratecontrol_end?
2500                     int i_frame_done = h->i_frame + 1 - h->i_thread_frames;
2501                     double time_done = i_frame_done / rcc->fps;
2502                     if( h->param.b_vfr_input && i_frame_done > 0 )
2503                         time_done = ((double)(h->fenc->i_reordered_pts - h->i_reordered_pts_delay)) * h->param.i_timebase_num / h->param.i_timebase_den;
2504                     wanted_bits = time_done * rcc->bitrate;
2505                     if( wanted_bits > 0 )
2506                     {
2507                         abr_buffer *= X264_MAX( 1, sqrt( time_done ) );
2508                         overflow = x264_clip3f( 1.0 + (total_bits - wanted_bits) / abr_buffer, .5, 2 );
2509                         q *= overflow;
2510                     }
2511                 }
2512             }
2513
2514             if( pict_type == SLICE_TYPE_I && h->param.i_keyint_max > 1
2515                 /* should test _next_ pict type, but that isn't decided yet */
2516                 && rcc->last_non_b_pict_type != SLICE_TYPE_I )
2517             {
2518                 q = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
2519                 q /= fabs( h->param.rc.f_ip_factor );
2520             }
2521             else if( h->i_frame > 0 )
2522             {
2523                 if( h->param.rc.i_rc_method != X264_RC_CRF )
2524                 {
2525                     /* Asymmetric clipping, because symmetric would prevent
2526                      * overflow control in areas of rapidly oscillating complexity */
2527                     double lmin = rcc->last_qscale_for[pict_type] / rcc->lstep;
2528                     double lmax = rcc->last_qscale_for[pict_type] * rcc->lstep;
2529                     if( overflow > 1.1 && h->i_frame > 3 )
2530                         lmax *= rcc->lstep;
2531                     else if( overflow < 0.9 )
2532                         lmin /= rcc->lstep;
2533
2534                     q = x264_clip3f(q, lmin, lmax);
2535                 }
2536             }
2537             else if( h->param.rc.i_rc_method == X264_RC_CRF && rcc->qcompress != 1 )
2538             {
2539                 q = qp2qscale( ABR_INIT_QP ) / fabs( h->param.rc.f_ip_factor );
2540             }
2541             rcc->qp_novbv = qscale2qp( q );
2542
2543             //FIXME use get_diff_limited_q() ?
2544             q = clip_qscale( h, pict_type, q );
2545         }
2546
2547         rcc->last_qscale_for[pict_type] =
2548         rcc->last_qscale = q;
2549
2550         if( !(rcc->b_2pass && !rcc->b_vbv) && h->fenc->i_frame == 0 )
2551             rcc->last_qscale_for[SLICE_TYPE_P] = q * fabs( h->param.rc.f_ip_factor );
2552
2553         if( rcc->b_2pass && rcc->b_vbv )
2554             rcc->frame_size_planned = qscale2bits(&rce, q);
2555         else
2556             rcc->frame_size_planned = predict_size( &rcc->pred[h->sh.i_type], q, rcc->last_satd );
2557
2558         /* Always use up the whole VBV in this case. */
2559         if( rcc->single_frame_vbv )
2560             rcc->frame_size_planned = rcc->buffer_rate;
2561         /* Limit planned size by MinCR */
2562         if( rcc->b_vbv )
2563             rcc->frame_size_planned = X264_MIN( rcc->frame_size_planned, rcc->frame_size_maximum );
2564         h->rc->frame_size_estimated = rcc->frame_size_planned;
2565         return q;
2566     }
2567 }
2568
2569 static void x264_threads_normalize_predictors( x264_t *h )
2570 {
2571     double totalsize = 0;
2572     for( int i = 0; i < h->param.i_threads; i++ )
2573         totalsize += h->thread[i]->rc->slice_size_planned;
2574     double factor = h->rc->frame_size_planned / totalsize;
2575     for( int i = 0; i < h->param.i_threads; i++ )
2576         h->thread[i]->rc->slice_size_planned *= factor;
2577 }
2578
2579 void x264_threads_distribute_ratecontrol( x264_t *h )
2580 {
2581     int row;
2582     x264_ratecontrol_t *rc = h->rc;
2583     x264_emms();
2584     float qscale = qp2qscale( rc->qpm );
2585
2586     /* Initialize row predictors */
2587     if( h->i_frame == 0 )
2588         for( int i = 0; i < h->param.i_threads; i++ )
2589         {
2590             x264_ratecontrol_t *t = h->thread[i]->rc;
2591             memcpy( t->row_preds, rc->row_preds, sizeof(rc->row_preds) );
2592         }
2593
2594     for( int i = 0; i < h->param.i_threads; i++ )
2595     {
2596         x264_t *t = h->thread[i];
2597         memcpy( t->rc, rc, offsetof(x264_ratecontrol_t, row_pred) );
2598         t->rc->row_pred = &t->rc->row_preds[h->sh.i_type];
2599         /* Calculate the planned slice size. */
2600         if( rc->b_vbv && rc->frame_size_planned )
2601         {
2602             int size = 0;
2603             for( row = t->i_threadslice_start; row < t->i_threadslice_end; row++ )
2604                 size += h->fdec->i_row_satd[row];
2605             t->rc->slice_size_planned = predict_size( &rc->pred[h->sh.i_type + (i+1)*5], qscale, size );
2606         }
2607         else
2608             t->rc->slice_size_planned = 0;
2609     }
2610     if( rc->b_vbv && rc->frame_size_planned )
2611     {
2612         x264_threads_normalize_predictors( h );
2613
2614         if( rc->single_frame_vbv )
2615         {
2616             /* Compensate for our max frame error threshold: give more bits (proportionally) to smaller slices. */
2617             for( int i = 0; i < h->param.i_threads; i++ )
2618             {
2619                 x264_t *t = h->thread[i];
2620                 float max_frame_error = X264_MAX( 0.05, 1.0 / (t->i_threadslice_end - t->i_threadslice_start) );
2621                 t->rc->slice_size_planned += 2 * max_frame_error * rc->frame_size_planned;
2622             }
2623             x264_threads_normalize_predictors( h );
2624         }
2625
2626         for( int i = 0; i < h->param.i_threads; i++ )
2627             h->thread[i]->rc->frame_size_estimated = h->thread[i]->rc->slice_size_planned;
2628     }
2629 }
2630
2631 void x264_threads_merge_ratecontrol( x264_t *h )
2632 {
2633     x264_ratecontrol_t *rc = h->rc;
2634     x264_emms();
2635
2636     for( int i = 0; i < h->param.i_threads; i++ )
2637     {
2638         x264_t *t = h->thread[i];
2639         x264_ratecontrol_t *rct = h->thread[i]->rc;
2640         if( h->param.rc.i_vbv_buffer_size )
2641         {
2642             int size = 0;
2643             for( int row = t->i_threadslice_start; row < t->i_threadslice_end; row++ )
2644                 size += h->fdec->i_row_satd[row];
2645             int bits = t->stat.frame.i_mv_bits + t->stat.frame.i_tex_bits + t->stat.frame.i_misc_bits;
2646             int mb_count = (t->i_threadslice_end - t->i_threadslice_start) * h->mb.i_mb_width;
2647             update_predictor( &rc->pred[h->sh.i_type+(i+1)*5], qp2qscale( rct->qpa_rc/mb_count ), size, bits );
2648         }
2649         if( !i )
2650             continue;
2651         rc->qpa_rc += rct->qpa_rc;
2652         rc->qpa_aq += rct->qpa_aq;
2653     }
2654 }
2655
2656 void x264_thread_sync_ratecontrol( x264_t *cur, x264_t *prev, x264_t *next )
2657 {
2658     if( cur != prev )
2659     {
2660 #define COPY(var) memcpy(&cur->rc->var, &prev->rc->var, sizeof(cur->rc->var))
2661         /* these vars are updated in x264_ratecontrol_start()
2662          * so copy them from the context that most recently started (prev)
2663          * to the context that's about to start (cur). */
2664         COPY(accum_p_qp);
2665         COPY(accum_p_norm);
2666         COPY(last_satd);
2667         COPY(last_rceq);
2668         COPY(last_qscale_for);
2669         COPY(last_non_b_pict_type);
2670         COPY(short_term_cplxsum);
2671         COPY(short_term_cplxcount);
2672         COPY(bframes);
2673         COPY(prev_zone);
2674         COPY(mbtree.qpbuf_pos);
2675         /* these vars can be updated by x264_ratecontrol_init_reconfigurable */
2676         COPY(bitrate);
2677         COPY(buffer_size);
2678         COPY(buffer_rate);
2679         COPY(vbv_max_rate);
2680         COPY(single_frame_vbv);
2681         COPY(cbr_decay);
2682         COPY(rate_factor_constant);
2683         COPY(rate_factor_max_increment);
2684 #undef COPY
2685     }
2686     if( cur != next )
2687     {
2688 #define COPY(var) next->rc->var = cur->rc->var
2689         /* these vars are updated in x264_ratecontrol_end()
2690          * so copy them from the context that most recently ended (cur)
2691          * to the context that's about to end (next) */
2692         COPY(cplxr_sum);
2693         COPY(expected_bits_sum);
2694         COPY(filler_bits_sum);
2695         COPY(wanted_bits_window);
2696         COPY(bframe_bits);
2697         COPY(initial_cpb_removal_delay);
2698         COPY(initial_cpb_removal_delay_offset);
2699         COPY(nrt_first_access_unit);
2700         COPY(previous_cpb_final_arrival_time);
2701 #undef COPY
2702     }
2703     //FIXME row_preds[] (not strictly necessary, but would improve prediction)
2704     /* the rest of the variables are either constant or thread-local */
2705 }
2706
2707 static int find_underflow( x264_t *h, double *fills, int *t0, int *t1, int over )
2708 {
2709     /* find an interval ending on an overflow or underflow (depending on whether
2710      * we're adding or removing bits), and starting on the earliest frame that
2711      * can influence the buffer fill of that end frame. */
2712     x264_ratecontrol_t *rcc = h->rc;
2713     const double buffer_min = (over ? .1 : .1) * rcc->buffer_size;
2714     const double buffer_max = .9 * rcc->buffer_size;
2715     double fill = fills[*t0-1];
2716     double parity = over ? 1. : -1.;
2717     int start = -1, end = -1;
2718     for( int i = *t0; i < rcc->num_entries; i++ )
2719     {
2720         fill += (rcc->entry[i].i_cpb_duration * rcc->vbv_max_rate * h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale -
2721                  qscale2bits( &rcc->entry[i], rcc->entry[i].new_qscale )) * parity;
2722         fill = x264_clip3f(fill, 0, rcc->buffer_size);
2723         fills[i] = fill;
2724         if( fill <= buffer_min || i == 0 )
2725         {
2726             if( end >= 0 )
2727                 break;
2728             start = i;
2729         }
2730         else if( fill >= buffer_max && start >= 0 )
2731             end = i;
2732     }
2733     *t0 = start;
2734     *t1 = end;
2735     return start >= 0 && end >= 0;
2736 }
2737
2738 static int fix_underflow( x264_t *h, int t0, int t1, double adjustment, double qscale_min, double qscale_max)
2739 {
2740     x264_ratecontrol_t *rcc = h->rc;
2741     double qscale_orig, qscale_new;
2742     int adjusted = 0;
2743     if( t0 > 0 )
2744         t0++;
2745     for( int i = t0; i <= t1; i++ )
2746     {
2747         qscale_orig = rcc->entry[i].new_qscale;
2748         qscale_orig = x264_clip3f( qscale_orig, qscale_min, qscale_max );
2749         qscale_new  = qscale_orig * adjustment;
2750         qscale_new  = x264_clip3f( qscale_new, qscale_min, qscale_max );
2751         rcc->entry[i].new_qscale = qscale_new;
2752         adjusted = adjusted || (qscale_new != qscale_orig);
2753     }
2754     return adjusted;
2755 }
2756
2757 static double count_expected_bits( x264_t *h )
2758 {
2759     x264_ratecontrol_t *rcc = h->rc;
2760     double expected_bits = 0;
2761     for( int i = 0; i < rcc->num_entries; i++ )
2762     {
2763         ratecontrol_entry_t *rce = &rcc->entry[i];
2764         rce->expected_bits = expected_bits;
2765         expected_bits += qscale2bits( rce, rce->new_qscale );
2766     }
2767     return expected_bits;
2768 }
2769
2770 static int vbv_pass2( x264_t *h, double all_available_bits )
2771 {
2772     /* for each interval of buffer_full .. underflow, uniformly increase the qp of all
2773      * frames in the interval until either buffer is full at some intermediate frame or the
2774      * last frame in the interval no longer underflows.  Recompute intervals and repeat.
2775      * Then do the converse to put bits back into overflow areas until target size is met */
2776
2777     x264_ratecontrol_t *rcc = h->rc;
2778     double *fills;
2779     double expected_bits = 0;
2780     double adjustment;
2781     double prev_bits = 0;
2782     int t0, t1;
2783     double qscale_min = qp2qscale( h->param.rc.i_qp_min );
2784     double qscale_max = qp2qscale( h->param.rc.i_qp_max );
2785     int iterations = 0;
2786     int adj_min, adj_max;
2787     CHECKED_MALLOC( fills, (rcc->num_entries+1)*sizeof(double) );
2788
2789     fills++;
2790
2791     /* adjust overall stream size */
2792     do
2793     {
2794         iterations++;
2795         prev_bits = expected_bits;
2796
2797         if( expected_bits )
2798         {   /* not first iteration */
2799             adjustment = X264_MAX(X264_MIN(expected_bits / all_available_bits, 0.999), 0.9);
2800             fills[-1] = rcc->buffer_size * h->param.rc.f_vbv_buffer_init;
2801             t0 = 0;
2802             /* fix overflows */
2803             adj_min = 1;
2804             while(adj_min && find_underflow( h, fills, &t0, &t1, 1 ))
2805             {
2806                 adj_min = fix_underflow( h, t0, t1, adjustment, qscale_min, qscale_max );
2807                 t0 = t1;
2808             }
2809         }
2810
2811         fills[-1] = rcc->buffer_size * (1. - h->param.rc.f_vbv_buffer_init);
2812         t0 = 0;
2813         /* fix underflows -- should be done after overflow, as we'd better undersize target than underflowing VBV */
2814         adj_max = 1;
2815         while( adj_max && find_underflow( h, fills, &t0, &t1, 0 ) )
2816             adj_max = fix_underflow( h, t0, t1, 1.001, qscale_min, qscale_max );
2817
2818         expected_bits = count_expected_bits( h );
2819     } while( (expected_bits < .995*all_available_bits) && ((int64_t)(expected_bits+.5) > (int64_t)(prev_bits+.5)) );
2820
2821     if( !adj_max )
2822         x264_log( h, X264_LOG_WARNING, "vbv-maxrate issue, qpmax or vbv-maxrate too low\n");
2823
2824     /* store expected vbv filling values for tracking when encoding */
2825     for( int i = 0; i < rcc->num_entries; i++ )
2826         rcc->entry[i].expected_vbv = rcc->buffer_size - fills[i];
2827
2828     x264_free( fills-1 );
2829     return 0;
2830 fail:
2831     return -1;
2832 }
2833
2834 static int init_pass2( x264_t *h )
2835 {
2836     x264_ratecontrol_t *rcc = h->rc;
2837     uint64_t all_const_bits = 0;
2838     double timescale = (double)h->sps->vui.i_num_units_in_tick / h->sps->vui.i_time_scale;
2839     double duration = 0;
2840     for( int i = 0; i < rcc->num_entries; i++ )
2841         duration += rcc->entry[i].i_duration;
2842     duration *= timescale;
2843     uint64_t all_available_bits = h->param.rc.i_bitrate * 1000. * duration;
2844     double rate_factor, step_mult;
2845     double qblur = h->param.rc.f_qblur;
2846     double cplxblur = h->param.rc.f_complexity_blur;
2847     const int filter_size = (int)(qblur*4) | 1;
2848     double expected_bits;
2849     double *qscale, *blurred_qscale;
2850     double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
2851
2852     /* find total/average complexity & const_bits */
2853     for( int i = 0; i < rcc->num_entries; i++ )
2854     {
2855         ratecontrol_entry_t *rce = &rcc->entry[i];
2856         all_const_bits += rce->misc_bits;
2857     }
2858
2859     if( all_available_bits < all_const_bits)
2860     {
2861         x264_log( h, X264_LOG_ERROR, "requested bitrate is too low. estimated minimum is %d kbps\n",
2862                  (int)(all_const_bits * rcc->fps / (rcc->num_entries * 1000.)) );
2863         return -1;
2864     }
2865
2866     /* Blur complexities, to reduce local fluctuation of QP.
2867      * We don't blur the QPs directly, because then one very simple frame
2868      * could drag down the QP of a nearby complex frame and give it more
2869      * bits than intended. */
2870     for( int i = 0; i < rcc->num_entries; i++ )
2871     {
2872         ratecontrol_entry_t *rce = &rcc->entry[i];
2873         double weight_sum = 0;
2874         double cplx_sum = 0;
2875         double weight = 1.0;
2876         double gaussian_weight;
2877         /* weighted average of cplx of future frames */
2878         for( int j = 1; j < cplxblur*2 && j < rcc->num_entries-i; j++ )
2879         {
2880             ratecontrol_entry_t *rcj = &rcc->entry[i+j];
2881             double frame_duration = CLIP_DURATION(rcj->i_duration * timescale) / BASE_FRAME_DURATION;
2882             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
2883             if( weight < .0001 )
2884                 break;
2885             gaussian_weight = weight * exp( -j*j/200.0 );
2886             weight_sum += gaussian_weight;
2887             cplx_sum += gaussian_weight * (qscale2bits( rcj, 1 ) - rcj->misc_bits) / frame_duration;
2888         }
2889         /* weighted average of cplx of past frames */
2890         weight = 1.0;
2891         for( int j = 0; j <= cplxblur*2 && j <= i; j++ )
2892         {
2893             ratecontrol_entry_t *rcj = &rcc->entry[i-j];
2894             double frame_duration = CLIP_DURATION(rcj->i_duration * timescale) / BASE_FRAME_DURATION;
2895             gaussian_weight = weight * exp( -j*j/200.0 );
2896             weight_sum += gaussian_weight;
2897             cplx_sum += gaussian_weight * (qscale2bits( rcj, 1 ) - rcj->misc_bits) / frame_duration;
2898             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
2899             if( weight < .0001 )
2900                 break;
2901         }
2902         rce->blurred_complexity = cplx_sum / weight_sum;
2903     }
2904
2905     CHECKED_MALLOC( qscale, sizeof(double)*rcc->num_entries );
2906     if( filter_size > 1 )
2907         CHECKED_MALLOC( blurred_qscale, sizeof(double)*rcc->num_entries );
2908     else
2909         blurred_qscale = qscale;
2910
2911     /* Search for a factor which, when multiplied by the RCEQ values from
2912      * each frame, adds up to the desired total size.
2913      * There is no exact closed-form solution because of VBV constraints and
2914      * because qscale2bits is not invertible, but we can start with the simple
2915      * approximation of scaling the 1st pass by the ratio of bitrates.
2916      * The search range is probably overkill, but speed doesn't matter here. */
2917
2918     expected_bits = 1;
2919     for( int i = 0; i < rcc->num_entries; i++ )
2920     {
2921         double q = get_qscale(h, &rcc->entry[i], 1.0, i);
2922         expected_bits += qscale2bits(&rcc->entry[i], q);
2923         rcc->last_qscale_for[rcc->entry[i].pict_type] = q;
2924     }
2925     step_mult = all_available_bits / expected_bits;
2926
2927     rate_factor = 0;
2928     for( double step = 1E4 * step_mult; step > 1E-7 * step_mult; step *= 0.5)
2929     {
2930         expected_bits = 0;
2931         rate_factor += step;
2932
2933         rcc->last_non_b_pict_type = -1;
2934         rcc->last_accum_p_norm = 1;
2935         rcc->accum_p_norm = 0;
2936
2937         rcc->last_qscale_for[0] =
2938         rcc->last_qscale_for[1] =
2939         rcc->last_qscale_for[2] = pow( base_cplx, 1 - rcc->qcompress ) / rate_factor;
2940
2941         /* find qscale */
2942         for( int i = 0; i < rcc->num_entries; i++ )
2943         {
2944             qscale[i] = get_qscale( h, &rcc->entry[i], rate_factor, -1 );
2945             rcc->last_qscale_for[rcc->entry[i].pict_type] = qscale[i];
2946         }
2947
2948         /* fixed I/B qscale relative to P */
2949         for( int i = rcc->num_entries-1; i >= 0; i-- )
2950         {
2951             qscale[i] = get_diff_limited_q( h, &rcc->entry[i], qscale[i], i );
2952             assert(qscale[i] >= 0);
2953         }
2954
2955         /* smooth curve */
2956         if( filter_size > 1 )
2957         {
2958             assert( filter_size%2 == 1 );
2959             for( int i = 0; i < rcc->num_entries; i++ )
2960             {
2961                 ratecontrol_entry_t *rce = &rcc->entry[i];
2962                 double q = 0.0, sum = 0.0;
2963
2964                 for( int j = 0; j < filter_size; j++ )
2965                 {
2966                     int idx = i+j-filter_size/2;
2967                     double d = idx-i;
2968                     double coeff = qblur==0 ? 1.0 : exp( -d*d/(qblur*qblur) );
2969                     if( idx < 0 || idx >= rcc->num_entries )
2970                         continue;
2971                     if( rce->pict_type != rcc->entry[idx].pict_type )
2972                         continue;
2973                     q += qscale[idx] * coeff;
2974                     sum += coeff;
2975                 }
2976                 blurred_qscale[i] = q/sum;
2977             }
2978         }
2979
2980         /* find expected bits */
2981         for( int i = 0; i < rcc->num_entries; i++ )
2982         {
2983             ratecontrol_entry_t *rce = &rcc->entry[i];
2984             rce->new_qscale = clip_qscale( h, rce->pict_type, blurred_qscale[i] );
2985             assert(rce->new_qscale >= 0);
2986             expected_bits += qscale2bits( rce, rce->new_qscale );
2987         }
2988
2989         if( expected_bits > all_available_bits )
2990             rate_factor -= step;
2991     }
2992
2993     x264_free( qscale );
2994     if( filter_size > 1 )
2995         x264_free( blurred_qscale );
2996
2997     if( rcc->b_vbv )
2998         if( vbv_pass2( h, all_available_bits ) )
2999             return -1;
3000     expected_bits = count_expected_bits( h );
3001
3002     if( fabs( expected_bits/all_available_bits - 1.0 ) > 0.01 )
3003     {
3004         double avgq = 0;
3005         for( int i = 0; i < rcc->num_entries; i++ )
3006             avgq += rcc->entry[i].new_qscale;
3007         avgq = qscale2qp( avgq / rcc->num_entries );
3008
3009         if( expected_bits > all_available_bits || !rcc->b_vbv )
3010             x264_log( h, X264_LOG_WARNING, "Error: 2pass curve failed to converge\n" );
3011         x264_log( h, X264_LOG_WARNING, "target: %.2f kbit/s, expected: %.2f kbit/s, avg QP: %.4f\n",
3012                   (float)h->param.rc.i_bitrate,
3013                   expected_bits * rcc->fps / (rcc->num_entries * 1000.),
3014                   avgq );
3015         if( expected_bits < all_available_bits && avgq < h->param.rc.i_qp_min + 2 )
3016         {
3017             if( h->param.rc.i_qp_min > 0 )
3018                 x264_log( h, X264_LOG_WARNING, "try reducing target bitrate or reducing qp_min (currently %d)\n", h->param.rc.i_qp_min );
3019             else
3020                 x264_log( h, X264_LOG_WARNING, "try reducing target bitrate\n" );
3021         }
3022         else if( expected_bits > all_available_bits && avgq > h->param.rc.i_qp_max - 2 )
3023         {
3024             if( h->param.rc.i_qp_max < QP_MAX )
3025                 x264_log( h, X264_LOG_WARNING, "try increasing target bitrate or increasing qp_max (currently %d)\n", h->param.rc.i_qp_max );
3026             else
3027                 x264_log( h, X264_LOG_WARNING, "try increasing target bitrate\n");
3028         }
3029         else if( !(rcc->b_2pass && rcc->b_vbv) )
3030             x264_log( h, X264_LOG_WARNING, "internal error\n" );
3031     }
3032
3033     return 0;
3034 fail:
3035     return -1;
3036 }