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

Audio

开发平台:

Visual C++

  1. /***************************************************-*- coding: iso-8859-1 -*-
  2.  * ratecontrol.c: h264 encoder library (Rate Control)
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 x264 project
  5.  * $Id: ratecontrol.c,v 1.1 2004/06/03 19:27:08 fenrir Exp $
  6.  *
  7.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  8.  *          Michael Niedermayer <michaelni@gmx.at>
  9.  *          M錸s Rullg錼d <mru@mru.ath.cx>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  24.  *****************************************************************************/
  25. #define _ISOC99_SOURCE
  26. #undef NDEBUG // always check asserts, the speed effect is far too small to disable them
  27. #include <stdio.h>
  28. #include <string.h>
  29. #include <math.h>
  30. #include <limits.h>
  31. #include <assert.h>
  32. #include "common/common.h"
  33. #include "common/cpu.h"
  34. #include "ratecontrol.h"
  35. #if defined(SYS_FREEBSD) || defined(SYS_BEOS) || defined(SYS_NETBSD)
  36. #define exp2f(x) powf( 2, (x) )
  37. #endif
  38. #if defined(SYS_MACOSX)
  39. #define exp2f(x) (float)pow( 2, (x) )
  40. #define sqrtf sqrt
  41. #endif
  42. #if defined(_MSC_VER)
  43. #define isfinite _finite
  44. #endif
  45. #if defined(_MSC_VER) || defined(SYS_SunOS)
  46. #define exp2f(x) pow( 2, (x) )
  47. //#define sqrtf sqrt
  48. #endif
  49. #ifdef WIN32 // POSIX says that rename() removes the destination, but win32 doesn't.
  50. #define rename(src,dst) (unlink(dst), rename(src,dst))
  51. #endif
  52. typedef struct
  53. {
  54.     int pict_type;
  55.     int kept_as_ref;
  56.     float qscale;
  57.     int mv_bits;
  58.     int i_tex_bits;
  59.     int p_tex_bits;
  60.     int misc_bits;
  61.     uint64_t expected_bits;
  62.     float new_qscale;
  63.     int new_qp;
  64.     int i_count;
  65.     int p_count;
  66.     int s_count;
  67.     float blurred_complexity;
  68.     char direct_mode;
  69. } ratecontrol_entry_t;
  70. typedef struct
  71. {
  72.     double coeff;
  73.     double count;
  74.     double decay;
  75. } predictor_t;
  76. struct x264_ratecontrol_t
  77. {
  78.     /* constants */
  79.     int b_abr;
  80.     int b_2pass;
  81.     double fps;
  82.     double bitrate;
  83.     double rate_tolerance;
  84.     int nmb;                    /* number of macroblocks in a frame */
  85.     int qp_constant[5];
  86.     /* current frame */
  87.     ratecontrol_entry_t *rce;
  88.     int qp;                     /* qp for current frame */
  89.     float qpa;                  /* average of macroblocks' qp (same as qp if no adaptive quant) */
  90.     int slice_type;
  91.     int qp_force;
  92.     /* VBV stuff */
  93.     double buffer_size;
  94.     double buffer_fill;
  95.     double buffer_rate;         /* # of bits added to buffer_fill after each frame */
  96.     predictor_t pred[5];        /* predict frame size from satd */
  97.     /* ABR stuff */
  98.     int    last_satd;
  99.     double last_rceq;
  100.     double cplxr_sum;           /* sum of bits*qscale/rceq */
  101.     double expected_bits_sum;   /* sum of qscale2bits after rceq, ratefactor, and overflow */
  102.     double wanted_bits_window;  /* target bitrate * window */
  103.     double cbr_decay;
  104.     double short_term_cplxsum;
  105.     double short_term_cplxcount;
  106.     double rate_factor_constant;
  107.     /* 2pass stuff */
  108.     FILE *p_stat_file_out;
  109.     char *psz_stat_file_tmpname;
  110.     int num_entries;            /* number of ratecontrol_entry_ts */
  111.     ratecontrol_entry_t *entry; /* FIXME: copy needed data and free this once init is done */
  112.     double last_qscale;
  113.     double last_qscale_for[5];  /* last qscale for a specific pict type, used for max_diff & ipb factor stuff  */
  114.     int last_non_b_pict_type;
  115.     double accum_p_qp;          /* for determining I-frame quant */
  116.     double accum_p_norm;
  117.     double last_accum_p_norm;
  118.     double lmin[5];             /* min qscale by frame type */
  119.     double lmax[5];
  120.     double lstep;               /* max change (multiply) in qscale per frame */
  121.     double i_cplx_sum[5];       /* estimated total texture bits in intra MBs at qscale=1 */
  122.     double p_cplx_sum[5];
  123.     double mv_bits_sum[5];
  124.     int frame_count[5];         /* number of frames of each type */
  125.     int i_zones;
  126.     x264_zone_t *zones;
  127. };
  128. static int parse_zones( x264_t *h );
  129. static int init_pass2(x264_t *);
  130. static float rate_estimate_qscale( x264_t *h, int pict_type );
  131. static void update_vbv( x264_t *h, int bits );
  132. int  x264_rc_analyse_slice( x264_t *h );
  133. /* Terminology:
  134.  * qp = h.264's quantizer
  135.  * qscale = linearized quantizer = Lagrange multiplier
  136.  */
  137. static inline double qp2qscale(double qp)
  138. {
  139.     return 0.85 * pow(2.0, ( qp - 12.0 ) / 6.0);
  140. }
  141. static inline double qscale2qp(double qscale)
  142. {
  143.     return 12.0 + 6.0 * log(qscale/0.85) / log(2.0);
  144. }
  145. /* Texture bitrate is not quite inversely proportional to qscale,
  146.  * probably due the the changing number of SKIP blocks.
  147.  * MV bits level off at about qp<=12, because the lambda used
  148.  * for motion estimation is constant there. */
  149. static inline double qscale2bits(ratecontrol_entry_t *rce, double qscale)
  150. {
  151.     if(qscale<0.1)
  152.         qscale = 0.1;
  153.     return (rce->i_tex_bits + rce->p_tex_bits + .1) * pow( rce->qscale / qscale, 1.1 )
  154.            + rce->mv_bits * pow( X264_MAX(rce->qscale, 12) / X264_MAX(qscale, 12), 0.5 )
  155.            + rce->misc_bits;
  156. }
  157. int x264_ratecontrol_new( x264_t *h )
  158. {
  159.     x264_ratecontrol_t *rc;
  160.     int i;
  161.     x264_cpu_restore( h->param.cpu );
  162.     h->rc = rc = x264_malloc( sizeof( x264_ratecontrol_t ) );
  163.     memset(rc, 0, sizeof(*rc));
  164.     rc->b_abr = ( h->param.rc.b_cbr || h->param.rc.i_rf_constant ) && !h->param.rc.b_stat_read;
  165.     rc->b_2pass = h->param.rc.b_cbr && h->param.rc.b_stat_read;
  166.     h->mb.b_variable_qp = 0;
  167.     
  168.     /* FIXME: use integers */
  169.     if(h->param.i_fps_num > 0 && h->param.i_fps_den > 0)
  170.         rc->fps = (float) h->param.i_fps_num / h->param.i_fps_den;
  171.     else
  172.         rc->fps = 25.0;
  173.     rc->bitrate = h->param.rc.i_bitrate * 1000;
  174.     rc->rate_tolerance = h->param.rc.f_rate_tolerance;
  175.     rc->nmb = h->mb.i_mb_count;
  176.     rc->last_non_b_pict_type = -1;
  177.     rc->cbr_decay = 1.0;
  178.     if( h->param.rc.i_rf_constant && h->param.rc.b_stat_read )
  179.     {
  180.         x264_log(h, X264_LOG_ERROR, "constant rate-factor is incompatible with 2pass.n");
  181.         return -1;
  182.     }
  183.     if( h->param.rc.i_vbv_buffer_size && !h->param.rc.b_cbr && !h->param.rc.i_rf_constant )
  184.         x264_log(h, X264_LOG_ERROR, "VBV is incompatible with constant QP.n");
  185.     if( h->param.rc.i_vbv_buffer_size && h->param.rc.b_cbr
  186.         && h->param.rc.i_vbv_max_bitrate == 0 )
  187.     {
  188.         x264_log( h, X264_LOG_DEBUG, "VBV maxrate unspecified, assuming CBRn" );
  189.         h->param.rc.i_vbv_max_bitrate = h->param.rc.i_bitrate;
  190.     }
  191.     if( h->param.rc.i_vbv_max_bitrate < h->param.rc.i_bitrate &&
  192.         h->param.rc.i_vbv_max_bitrate > 0)
  193.         x264_log(h, X264_LOG_ERROR, "max bitrate less than average bitrate, ignored.n");
  194.     else if( h->param.rc.i_vbv_max_bitrate > 0 &&
  195.              h->param.rc.i_vbv_buffer_size > 0 )
  196.     {
  197.         if( h->param.rc.i_vbv_buffer_size < 10 * h->param.rc.i_vbv_max_bitrate / rc->fps ) {
  198.             h->param.rc.i_vbv_buffer_size = 10 * h->param.rc.i_vbv_max_bitrate / rc->fps;
  199.             x264_log( h, X264_LOG_ERROR, "VBV buffer size too small, using %d kbitn",
  200.                       h->param.rc.i_vbv_buffer_size );
  201.         }
  202.         rc->buffer_rate = h->param.rc.i_vbv_max_bitrate * 1000 / rc->fps;
  203.         rc->buffer_size = h->param.rc.i_vbv_buffer_size * 1000;
  204.         rc->buffer_fill = rc->buffer_size * h->param.rc.f_vbv_buffer_init;
  205.         rc->cbr_decay = 1.0 - rc->buffer_rate / rc->buffer_size
  206.                       * 0.5 * X264_MAX(0, 1.5 - rc->buffer_rate * rc->fps / rc->bitrate);
  207.     }
  208.     else if( h->param.rc.i_vbv_max_bitrate )
  209.         x264_log(h, X264_LOG_ERROR, "VBV maxrate specified, but no bufsize.n");
  210.     if(rc->rate_tolerance < 0.01) {
  211.         x264_log(h, X264_LOG_ERROR, "bitrate tolerance too small, using .01n");
  212.         rc->rate_tolerance = 0.01;
  213.     }
  214.     if( rc->b_abr )
  215.     {
  216.         /* FIXME shouldn't need to arbitrarily specify a QP,
  217.          * but this is more robust than BPP measures */
  218. #define ABR_INIT_QP ( h->param.rc.i_rf_constant > 0 ? h->param.rc.i_rf_constant : 24 )
  219.         rc->accum_p_norm = .01;
  220.         rc->accum_p_qp = ABR_INIT_QP * rc->accum_p_norm;
  221.         rc->cplxr_sum = .01;
  222.         rc->wanted_bits_window = .01;
  223.     }
  224.     if( h->param.rc.i_rf_constant )
  225.     {
  226.         /* arbitrary rescaling to make CRF somewhat similar to QP */
  227.         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
  228.         rc->rate_factor_constant = pow( base_cplx, 1 - h->param.rc.f_qcompress )
  229.                                  / qp2qscale( h->param.rc.i_rf_constant );
  230.     }
  231.     rc->qp_constant[SLICE_TYPE_P] = h->param.rc.i_qp_constant;
  232.     rc->qp_constant[SLICE_TYPE_I] = x264_clip3( (int)( qscale2qp( qp2qscale( h->param.rc.i_qp_constant ) / fabs( h->param.rc.f_ip_factor )) + 0.5 ), 0, 51 );
  233.     rc->qp_constant[SLICE_TYPE_B] = x264_clip3( (int)( qscale2qp( qp2qscale( h->param.rc.i_qp_constant ) * fabs( h->param.rc.f_pb_factor )) + 0.5 ), 0, 51 );
  234.     rc->lstep = exp2f(h->param.rc.i_qp_step / 6.0);
  235.     rc->last_qscale = qp2qscale(26);
  236.     for( i = 0; i < 5; i++ )
  237.     {
  238.         rc->last_qscale_for[i] = qp2qscale(26);
  239.         rc->lmin[i] = qp2qscale( h->param.rc.i_qp_min );
  240.         rc->lmax[i] = qp2qscale( h->param.rc.i_qp_max );
  241.         rc->pred[i].coeff= 2.0;
  242.         rc->pred[i].count= 1.0;
  243.         rc->pred[i].decay= 0.5;
  244.     }
  245.     if( parse_zones( h ) < 0 )
  246.         return -1;
  247.     /* Load stat file and init 2pass algo */
  248.     if( h->param.rc.b_stat_read )
  249.     {
  250.         char *p, *stats_in, *stats_buf;
  251.         /* read 1st pass stats */
  252.         assert( h->param.rc.psz_stat_in );
  253.         stats_buf = stats_in = x264_slurp_file( h->param.rc.psz_stat_in );
  254.         if( !stats_buf )
  255.         {
  256.             x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open stats filen");
  257.             return -1;
  258.         }
  259.         /* check whether 1st pass options were compatible with current options */
  260.         if( !strncmp( stats_buf, "#options:", 9 ) )
  261.         {
  262.             int i;
  263.             char *opts = stats_buf;
  264.             stats_in = strchr( stats_buf, 'n' );
  265.             if( !stats_in )
  266.                 return -1;
  267.             *stats_in = '';
  268.             stats_in++;
  269.             if( ( p = strstr( opts, "bframes=" ) ) && sscanf( p, "bframes=%d", &i )
  270.                 && h->param.i_bframe != i )
  271.             {
  272.                 x264_log( h, X264_LOG_ERROR, "different number of B-frames than 1st pass (%d vs %d)n",
  273.                           h->param.i_bframe, i );
  274.                 return -1;
  275.             }
  276.             /* since B-adapt doesn't (yet) take into account B-pyramid,
  277.              * the converse is not a problem */
  278.             if( strstr( opts, "b_pyramid=1" ) && !h->param.b_bframe_pyramid )
  279.                 x264_log( h, X264_LOG_WARNING, "1st pass used B-pyramid, 2nd doesn'tn" );
  280.             if( ( p = strstr( opts, "keyint=" ) ) && sscanf( p, "keyint=%d", &i )
  281.                 && h->param.i_keyint_max != i )
  282.                 x264_log( h, X264_LOG_WARNING, "different keyint than 1st pass (%d vs %d)n",
  283.                           h->param.i_keyint_max, i );
  284.             if( strstr( opts, "qp=0" ) && h->param.rc.b_cbr )
  285.                 x264_log( h, X264_LOG_WARNING, "1st pass was lossless, bitrate prediction will be inaccuraten" );
  286.         }
  287.         /* find number of pics */
  288.         p = stats_in;
  289.         for(i=-1; p; i++)
  290.             p = strchr(p+1, ';');
  291.         if(i==0)
  292.         {
  293.             x264_log(h, X264_LOG_ERROR, "empty stats filen");
  294.             return -1;
  295.         }
  296.         rc->num_entries = i;
  297.         if( h->param.i_frame_total < rc->num_entries && h->param.i_frame_total > 0 )
  298.         {
  299.             x264_log( h, X264_LOG_WARNING, "2nd pass has fewer frames than 1st pass (%d vs %d)n",
  300.                       h->param.i_frame_total, rc->num_entries );
  301.         }
  302.         if( h->param.i_frame_total > rc->num_entries + h->param.i_bframe )
  303.         {
  304.             x264_log( h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d vs %d)n",
  305.                       h->param.i_frame_total, rc->num_entries );
  306.             return -1;
  307.         }
  308.         /* FIXME: ugly padding because VfW drops delayed B-frames */
  309.         rc->num_entries += h->param.i_bframe;
  310.         rc->entry = (ratecontrol_entry_t*) x264_malloc(rc->num_entries * sizeof(ratecontrol_entry_t));
  311.         memset(rc->entry, 0, rc->num_entries * sizeof(ratecontrol_entry_t));
  312.         /* init all to skipped p frames */
  313.         for(i=0; i<rc->num_entries; i++){
  314.             ratecontrol_entry_t *rce = &rc->entry[i];
  315.             rce->pict_type = SLICE_TYPE_P;
  316.             rce->qscale = rce->new_qscale = qp2qscale(20);
  317.             rce->misc_bits = rc->nmb + 10;
  318.             rce->new_qp = 0;
  319.         }
  320.         /* read stats */
  321.         p = stats_in;
  322.         for(i=0; i < rc->num_entries - h->param.i_bframe; i++){
  323.             ratecontrol_entry_t *rce;
  324.             int frame_number;
  325.             char pict_type;
  326.             int e;
  327.             char *next;
  328.             float qp;
  329.             next= strchr(p, ';');
  330.             if(next){
  331.                 (*next)=0; //sscanf is unbelievably slow on looong strings
  332.                 next++;
  333.             }
  334.             e = sscanf(p, " in:%d ", &frame_number);
  335.             if(frame_number < 0 || frame_number >= rc->num_entries)
  336.             {
  337.                 x264_log(h, X264_LOG_ERROR, "bad frame number (%d) at stats line %dn", frame_number, i);
  338.                 return -1;
  339.             }
  340.             rce = &rc->entry[frame_number];
  341.             rce->direct_mode = 0;
  342.             e += sscanf(p, " in:%*d out:%*d type:%c q:%f itex:%d ptex:%d mv:%d misc:%d imb:%d pmb:%d smb:%d d:%c",
  343.                    &pict_type, &qp, &rce->i_tex_bits, &rce->p_tex_bits,
  344.                    &rce->mv_bits, &rce->misc_bits, &rce->i_count, &rce->p_count,
  345.                    &rce->s_count, &rce->direct_mode);
  346.             switch(pict_type){
  347.                 case 'I': rce->kept_as_ref = 1;
  348.                 case 'i': rce->pict_type = SLICE_TYPE_I; break;
  349.                 case 'P': rce->pict_type = SLICE_TYPE_P; break;
  350.                 case 'B': rce->kept_as_ref = 1;
  351.                 case 'b': rce->pict_type = SLICE_TYPE_B; break;
  352.                 default:  e = -1; break;
  353.             }
  354.             if(e < 10){
  355.                 x264_log(h, X264_LOG_ERROR, "statistics are damaged at line %d, parser out=%dn", i, e);
  356.                 return -1;
  357.             }
  358.             rce->qscale = qp2qscale(qp);
  359.             p = next;
  360.         }
  361.         x264_free(stats_buf);
  362.         if(h->param.rc.b_cbr)
  363.         {
  364.             if(init_pass2(h) < 0) return -1;
  365.         } /* else we're using constant quant, so no need to run the bitrate allocation */
  366.     }
  367.     /* Open output file */
  368.     /* If input and output files are the same, output to a temp file
  369.      * and move it to the real name only when it's complete */
  370.     if( h->param.rc.b_stat_write )
  371.     {
  372.         char *p;
  373.         rc->psz_stat_file_tmpname = x264_malloc( strlen(h->param.rc.psz_stat_out) + 6 );
  374.         strcpy( rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out );
  375.         strcat( rc->psz_stat_file_tmpname, ".temp" );
  376.         rc->p_stat_file_out = fopen( rc->psz_stat_file_tmpname, "wb" );
  377.         if( rc->p_stat_file_out == NULL )
  378.         {
  379.             x264_log(h, X264_LOG_ERROR, "ratecontrol_init: can't open stats filen");
  380.             return -1;
  381.         }
  382.         p = x264_param2string( &h->param, 1 );
  383.         fprintf( rc->p_stat_file_out, "#options: %sn", p );
  384.         x264_free( p );
  385.     }
  386.     return 0;
  387. }
  388. static int parse_zones( x264_t *h )
  389. {
  390.     x264_ratecontrol_t *rc = h->rc;
  391.     int i;
  392.     if( h->param.rc.psz_zones && !h->param.rc.i_zones )
  393.     {
  394.         char *p;
  395.         h->param.rc.i_zones = 1;
  396.         for( p = h->param.rc.psz_zones; *p; p++ )
  397.             h->param.rc.i_zones += (*p == '/');
  398.         h->param.rc.zones = x264_malloc( h->param.rc.i_zones * sizeof(x264_zone_t) );
  399.         p = h->param.rc.psz_zones;
  400.         for( i = 0; i < h->param.rc.i_zones; i++)
  401.         {
  402.             x264_zone_t *z = &h->param.rc.zones[i];
  403.             if( 3 == sscanf(p, "%u,%u,q=%u", &z->i_start, &z->i_end, &z->i_qp) )
  404.                 z->b_force_qp = 1;
  405.             else if( 3 == sscanf(p, "%u,%u,b=%f", &z->i_start, &z->i_end, &z->f_bitrate_factor) )
  406.                 z->b_force_qp = 0;
  407.             else
  408.             {
  409.                 char *slash = strchr(p, '/');
  410.                 if(slash) *slash = '';
  411.                 x264_log( h, X264_LOG_ERROR, "invalid zone: "%s"n", p );
  412.                 return -1;
  413.             }
  414.             p = strchr(p, '/') + 1;
  415.         }
  416.     }
  417.     if( h->param.rc.i_zones > 0 )
  418.     {
  419.         for( i = 0; i < h->param.rc.i_zones; i++ )
  420.         {
  421.             x264_zone_t z = h->param.rc.zones[i];
  422.             if( z.i_start < 0 || z.i_start > z.i_end )
  423.             {
  424.                 x264_log( h, X264_LOG_ERROR, "invalid zone: start=%d end=%dn",
  425.                           z.i_start, z.i_end );
  426.                 return -1;
  427.             }
  428.             else if( !z.b_force_qp && z.f_bitrate_factor <= 0 )
  429.             {
  430.                 x264_log( h, X264_LOG_ERROR, "invalid zone: bitrate_factor=%fn",
  431.                           z.f_bitrate_factor );
  432.                 return -1;
  433.             }
  434.         }
  435.         rc->i_zones = h->param.rc.i_zones;
  436.         rc->zones = x264_malloc( rc->i_zones * sizeof(x264_zone_t) );
  437.         memcpy( rc->zones, h->param.rc.zones, rc->i_zones * sizeof(x264_zone_t) );
  438.     }
  439.     return 0;
  440. }
  441. void x264_ratecontrol_summary( x264_t *h )
  442. {
  443.     x264_ratecontrol_t *rc = h->rc;
  444.     if( rc->b_abr && !h->param.rc.i_rf_constant && !h->param.rc.i_vbv_max_bitrate )
  445.     {
  446.         double base_cplx = h->mb.i_mb_count * (h->param.i_bframe ? 120 : 80);
  447.         x264_log( h, X264_LOG_INFO, "final ratefactor: %.2fn", 
  448.                   qscale2qp( pow( base_cplx, 1 - h->param.rc.f_qcompress )
  449.                              * rc->cplxr_sum / rc->wanted_bits_window ) );
  450.     }
  451. }
  452. void x264_ratecontrol_delete( x264_t *h )
  453. {
  454.     x264_ratecontrol_t *rc = h->rc;
  455.     if( rc->p_stat_file_out )
  456.     {
  457.         fclose( rc->p_stat_file_out );
  458.         if( h->i_frame >= rc->num_entries - h->param.i_bframe )
  459.             if( rename( rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out ) != 0 )
  460.             {
  461.                 x264_log( h, X264_LOG_ERROR, "failed to rename "%s" to "%s"n",
  462.                           rc->psz_stat_file_tmpname, h->param.rc.psz_stat_out );
  463.             }
  464.         x264_free( rc->psz_stat_file_tmpname );
  465.     }
  466.     x264_free( rc->entry );
  467.     x264_free( rc->zones );
  468.     x264_free( rc );
  469. }
  470. /* Before encoding a frame, choose a QP for it */
  471. void x264_ratecontrol_start( x264_t *h, int i_slice_type, int i_force_qp )
  472. {
  473.     x264_ratecontrol_t *rc = h->rc;
  474.     ratecontrol_entry_t *rce = NULL;
  475.     x264_cpu_restore( h->param.cpu );
  476.     rc->qp_force = i_force_qp;
  477.     rc->slice_type = i_slice_type;
  478.     if( h->param.rc.b_stat_read )
  479.     {
  480.         int frame = h->fenc->i_frame;
  481.         assert( frame >= 0 && frame < rc->num_entries );
  482.         rce = h->rc->rce = &h->rc->entry[frame];
  483.         if( i_slice_type == SLICE_TYPE_B
  484.             && h->param.analyse.i_direct_mv_pred == X264_DIRECT_PRED_AUTO )
  485.         {
  486.             h->sh.b_direct_spatial_mv_pred = ( rce->direct_mode == 's' );
  487.             h->mb.b_direct_auto_read = ( rce->direct_mode == 's' || rce->direct_mode == 't' );
  488.         }
  489.     }
  490.     if( i_force_qp )
  491.     {
  492.         rc->qpa = rc->qp = i_force_qp - 1;
  493.     }
  494.     else if( rc->b_abr )
  495.     {
  496.         rc->qpa = rc->qp =
  497.             x264_clip3( (int)(qscale2qp( rate_estimate_qscale( h, i_slice_type ) ) + .5), 0, 51 );
  498.     }
  499.     else if( rc->b_2pass )
  500.     {
  501.         rce->new_qscale = rate_estimate_qscale( h, i_slice_type );
  502.         rc->qpa = rc->qp = rce->new_qp =
  503.             x264_clip3( (int)(qscale2qp(rce->new_qscale) + 0.5), 0, 51 );
  504.     }
  505.     else /* CQP */
  506.     {
  507.         int q;
  508.         if( i_slice_type == SLICE_TYPE_B && h->fdec->b_kept_as_ref )
  509.             q = ( rc->qp_constant[ SLICE_TYPE_B ] + rc->qp_constant[ SLICE_TYPE_P ] ) / 2;
  510.         else
  511.             q = rc->qp_constant[ i_slice_type ];
  512.         rc->qpa = rc->qp = q;
  513.     }
  514. }
  515. void x264_ratecontrol_mb( x264_t *h, int bits )
  516. {
  517.     /* currently no adaptive quant */
  518. }
  519. int x264_ratecontrol_qp( x264_t *h )
  520. {
  521.     return h->rc->qp;
  522. }
  523. /* In 2pass, force the same frame types as in the 1st pass */
  524. int x264_ratecontrol_slice_type( x264_t *h, int frame_num )
  525. {
  526.     x264_ratecontrol_t *rc = h->rc;
  527.     if( h->param.rc.b_stat_read )
  528.     {
  529.         if( frame_num >= rc->num_entries )
  530.         {
  531.             /* We could try to initialize everything required for ABR and
  532.              * adaptive B-frames, but that would be complicated.
  533.              * So just calculate the average QP used so far. */
  534.             h->param.rc.i_qp_constant = (h->stat.i_slice_count[SLICE_TYPE_P] == 0) ? 24
  535.                                       : 1 + h->stat.i_slice_qp[SLICE_TYPE_P] / h->stat.i_slice_count[SLICE_TYPE_P];
  536.             rc->qp_constant[SLICE_TYPE_P] = x264_clip3( h->param.rc.i_qp_constant, 0, 51 );
  537.             rc->qp_constant[SLICE_TYPE_I] = x264_clip3( (int)( qscale2qp( qp2qscale( h->param.rc.i_qp_constant ) / fabs( h->param.rc.f_ip_factor )) + 0.5 ), 0, 51 );
  538.             rc->qp_constant[SLICE_TYPE_B] = x264_clip3( (int)( qscale2qp( qp2qscale( h->param.rc.i_qp_constant ) * fabs( h->param.rc.f_pb_factor )) + 0.5 ), 0, 51 );
  539.             x264_log(h, X264_LOG_ERROR, "2nd pass has more frames than 1st pass (%d)n", rc->num_entries);
  540.             x264_log(h, X264_LOG_ERROR, "continuing anyway, at constant QP=%dn", h->param.rc.i_qp_constant);
  541.             if( h->param.b_bframe_adaptive )
  542.                 x264_log(h, X264_LOG_ERROR, "disabling adaptive B-framesn");
  543.             rc->b_abr = 0;
  544.             rc->b_2pass = 0;
  545.             h->param.rc.b_cbr = 0;
  546.             h->param.rc.b_stat_read = 0;
  547.             h->param.b_bframe_adaptive = 0;
  548.             if( h->param.i_bframe > 1 )
  549.                 h->param.i_bframe = 1;
  550.             return X264_TYPE_P;
  551.         }
  552.         switch( rc->entry[frame_num].pict_type )
  553.         {
  554.             case SLICE_TYPE_I:
  555.                 return rc->entry[frame_num].kept_as_ref ? X264_TYPE_IDR : X264_TYPE_I;
  556.             case SLICE_TYPE_B:
  557.                 return rc->entry[frame_num].kept_as_ref ? X264_TYPE_BREF : X264_TYPE_B;
  558.             case SLICE_TYPE_P:
  559.             default:
  560.                 return X264_TYPE_P;
  561.         }
  562.     }
  563.     else
  564.     {
  565.         return X264_TYPE_AUTO;
  566.     }
  567. }
  568. /* After encoding one frame, save stats and update ratecontrol state */
  569. void x264_ratecontrol_end( x264_t *h, int bits )
  570. {
  571.     x264_ratecontrol_t *rc = h->rc;
  572.     const int *mbs = h->stat.frame.i_mb_count;
  573.     int i;
  574.     x264_cpu_restore( h->param.cpu );
  575.     h->stat.frame.i_mb_count_skip = mbs[P_SKIP] + mbs[B_SKIP];
  576.     h->stat.frame.i_mb_count_i = mbs[I_16x16] + mbs[I_8x8] + mbs[I_4x4];
  577.     h->stat.frame.i_mb_count_p = mbs[P_L0] + mbs[P_8x8];
  578.     for( i = B_DIRECT; i < B_8x8; i++ )
  579.         h->stat.frame.i_mb_count_p += mbs[i];
  580.     if( h->param.rc.b_stat_write )
  581.     {
  582.         char c_type = rc->slice_type==SLICE_TYPE_I ? (h->fenc->i_poc==0 ? 'I' : 'i')
  583.                     : rc->slice_type==SLICE_TYPE_P ? 'P'
  584.                     : h->fenc->b_kept_as_ref ? 'B' : 'b';
  585.         int dir_frame = h->stat.frame.i_direct_score[1] - h->stat.frame.i_direct_score[0];
  586.         int dir_avg = h->stat.i_direct_score[1] - h->stat.i_direct_score[0];
  587.         char c_direct = h->mb.b_direct_auto_write ?
  588.                         ( dir_frame>0 ? 's' : dir_frame<0 ? 't' : 
  589.                           dir_avg>0 ? 's' : dir_avg<0 ? 't' : '-' )
  590.                         : '-';
  591.         fprintf( rc->p_stat_file_out,
  592.                  "in:%d out:%d type:%c q:%.2f itex:%d ptex:%d mv:%d misc:%d imb:%d pmb:%d smb:%d d:%c;n",
  593.                  h->fenc->i_frame, h->i_frame-1,
  594.                  c_type, rc->qpa,
  595.                  h->stat.frame.i_itex_bits, h->stat.frame.i_ptex_bits,
  596.                  h->stat.frame.i_hdr_bits, h->stat.frame.i_misc_bits,
  597.                  h->stat.frame.i_mb_count_i,
  598.                  h->stat.frame.i_mb_count_p,
  599.                  h->stat.frame.i_mb_count_skip,
  600.                  c_direct);
  601.     }
  602.     if( rc->b_abr )
  603.     {
  604.         if( rc->slice_type != SLICE_TYPE_B )
  605.             rc->cplxr_sum += bits * qp2qscale(rc->qpa) / rc->last_rceq;
  606.         else
  607.         {
  608.             /* Depends on the fact that B-frame's QP is an offset from the following P-frame's.
  609.              * Not perfectly accurate with B-refs, but good enough. */
  610.             rc->cplxr_sum += bits * qp2qscale(rc->qpa) / (rc->last_rceq * fabs(h->param.rc.f_pb_factor));
  611.         }
  612.         rc->cplxr_sum *= rc->cbr_decay;
  613.         rc->wanted_bits_window += rc->bitrate / rc->fps;
  614.         rc->wanted_bits_window *= rc->cbr_decay;
  615.         rc->accum_p_qp   *= .95;
  616.         rc->accum_p_norm *= .95;
  617.         rc->accum_p_norm += 1;
  618.         if( rc->slice_type == SLICE_TYPE_I )
  619.             rc->accum_p_qp += rc->qpa * fabs(h->param.rc.f_ip_factor);
  620.         else
  621.             rc->accum_p_qp += rc->qpa;
  622.     }
  623.     if( rc->b_2pass )
  624.     {
  625.         rc->expected_bits_sum += qscale2bits( rc->rce, qp2qscale(rc->rce->new_qp) );
  626.     }
  627.     update_vbv( h, bits );
  628.     if( rc->slice_type != SLICE_TYPE_B )
  629.         rc->last_non_b_pict_type = rc->slice_type;
  630. }
  631. /****************************************************************************
  632.  * 2 pass functions
  633.  ***************************************************************************/
  634. double x264_eval( char *s, double *const_value, const char **const_name,
  635.                   double (**func1)(void *, double), const char **func1_name,
  636.                   double (**func2)(void *, double, double), char **func2_name,
  637.                   void *opaque );
  638. /**
  639.  * modify the bitrate curve from pass1 for one frame
  640.  */
  641. static double get_qscale(x264_t *h, ratecontrol_entry_t *rce, double rate_factor, int frame_num)
  642. {
  643.     x264_ratecontrol_t *rcc= h->rc;
  644.     const int pict_type = rce->pict_type;
  645.     double q;
  646.     int i;
  647.     double const_values[]={
  648.         rce->i_tex_bits * rce->qscale,
  649.         rce->p_tex_bits * rce->qscale,
  650.         (rce->i_tex_bits + rce->p_tex_bits) * rce->qscale,
  651.         rce->mv_bits * rce->qscale,
  652.         (double)rce->i_count / rcc->nmb,
  653.         (double)rce->p_count / rcc->nmb,
  654.         (double)rce->s_count / rcc->nmb,
  655.         rce->pict_type == SLICE_TYPE_I,
  656.         rce->pict_type == SLICE_TYPE_P,
  657.         rce->pict_type == SLICE_TYPE_B,
  658.         h->param.rc.f_qcompress,
  659.         rcc->i_cplx_sum[SLICE_TYPE_I] / rcc->frame_count[SLICE_TYPE_I],
  660.         rcc->i_cplx_sum[SLICE_TYPE_P] / rcc->frame_count[SLICE_TYPE_P],
  661.         rcc->p_cplx_sum[SLICE_TYPE_P] / rcc->frame_count[SLICE_TYPE_P],
  662.         rcc->p_cplx_sum[SLICE_TYPE_B] / rcc->frame_count[SLICE_TYPE_B],
  663.         (rcc->i_cplx_sum[pict_type] + rcc->p_cplx_sum[pict_type]) / rcc->frame_count[pict_type],
  664.         rce->blurred_complexity,
  665.         0
  666.     };
  667.     static const char *const_names[]={
  668.         "iTex",
  669.         "pTex",
  670.         "tex",
  671.         "mv",
  672.         "iCount",
  673.         "pCount",
  674.         "sCount",
  675.         "isI",
  676.         "isP",
  677.         "isB",
  678.         "qComp",
  679.         "avgIITex",
  680.         "avgPITex",
  681.         "avgPPTex",
  682.         "avgBPTex",
  683.         "avgTex",
  684.         "blurCplx",
  685.         NULL
  686.     };
  687.     static double (*func1[])(void *, double)={
  688. //      (void *)bits2qscale,
  689.         (void *)qscale2bits,
  690.         NULL
  691.     };
  692.     static const char *func1_names[]={
  693. //      "bits2qp",
  694.         "qp2bits",
  695.         NULL
  696.     };
  697.     q = x264_eval((char*)h->param.rc.psz_rc_eq, const_values, const_names, func1, func1_names, NULL, NULL, rce);
  698.     // avoid NaN's in the rc_eq
  699.     if(!isfinite(q) || rce->i_tex_bits + rce->p_tex_bits + rce->mv_bits == 0)
  700.         q = rcc->last_qscale;
  701.     else {
  702.         rcc->last_rceq = q;
  703.         q /= rate_factor;
  704.         rcc->last_qscale = q;
  705.     }
  706.     for( i = rcc->i_zones-1; i >= 0; i-- )
  707.     {
  708.         x264_zone_t *z = &rcc->zones[i];
  709.         if( frame_num >= z->i_start && frame_num <= z->i_end )
  710.         {
  711.             if( z->b_force_qp )
  712.                 q = qp2qscale(z->i_qp);
  713.             else
  714.                 q /= z->f_bitrate_factor;
  715.             break;
  716.         }
  717.     }
  718.     return q;
  719. }
  720. static double get_diff_limited_q(x264_t *h, ratecontrol_entry_t *rce, double q)
  721. {
  722.     x264_ratecontrol_t *rcc = h->rc;
  723.     const int pict_type = rce->pict_type;
  724.     // force I/B quants as a function of P quants
  725.     const double last_p_q    = rcc->last_qscale_for[SLICE_TYPE_P];
  726.     const double last_non_b_q= rcc->last_qscale_for[rcc->last_non_b_pict_type];
  727.     if( pict_type == SLICE_TYPE_I )
  728.     {
  729.         double iq = q;
  730.         double pq = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
  731.         double ip_factor = fabs( h->param.rc.f_ip_factor );
  732.         /* don't apply ip_factor if the following frame is also I */
  733.         if( rcc->accum_p_norm <= 0 )
  734.             q = iq;
  735.         else if( h->param.rc.f_ip_factor < 0 )
  736.             q = iq / ip_factor;
  737.         else if( rcc->accum_p_norm >= 1 )
  738.             q = pq / ip_factor;
  739.         else
  740.             q = rcc->accum_p_norm * pq / ip_factor + (1 - rcc->accum_p_norm) * iq;
  741.     }
  742.     else if( pict_type == SLICE_TYPE_B )
  743.     {
  744.         if( h->param.rc.f_pb_factor > 0 )
  745.             q = last_non_b_q;
  746.         if( !rce->kept_as_ref )
  747.             q *= fabs( h->param.rc.f_pb_factor );
  748.     }
  749.     else if( pict_type == SLICE_TYPE_P
  750.              && rcc->last_non_b_pict_type == SLICE_TYPE_P
  751.              && rce->i_tex_bits + rce->p_tex_bits == 0 )
  752.     {
  753.         q = last_p_q;
  754.     }
  755.     /* last qscale / qdiff stuff */
  756.     if(rcc->last_non_b_pict_type==pict_type
  757.        && (pict_type!=SLICE_TYPE_I || rcc->last_accum_p_norm < 1))
  758.     {
  759.         double last_q = rcc->last_qscale_for[pict_type];
  760.         double max_qscale = last_q * rcc->lstep;
  761.         double min_qscale = last_q / rcc->lstep;
  762.         if     (q > max_qscale) q = max_qscale;
  763.         else if(q < min_qscale) q = min_qscale;
  764.     }
  765.     rcc->last_qscale_for[pict_type] = q;
  766.     if(pict_type!=SLICE_TYPE_B)
  767.         rcc->last_non_b_pict_type = pict_type;
  768.     if(pict_type==SLICE_TYPE_I)
  769.     {
  770.         rcc->last_accum_p_norm = rcc->accum_p_norm;
  771.         rcc->accum_p_norm = 0;
  772.         rcc->accum_p_qp = 0;
  773.     }
  774.     if(pict_type==SLICE_TYPE_P)
  775.     {
  776.         float mask = 1 - pow( (float)rce->i_count / rcc->nmb, 2 );
  777.         rcc->accum_p_qp   = mask * (qscale2qp(q) + rcc->accum_p_qp);
  778.         rcc->accum_p_norm = mask * (1 + rcc->accum_p_norm);
  779.     }
  780.     return q;
  781. }
  782. static double predict_size( predictor_t *p, double q, double var )
  783. {
  784.      return p->coeff*var / (q*p->count);
  785. }
  786. static void update_predictor( predictor_t *p, double q, double var, double bits )
  787. {
  788.     p->count *= p->decay;
  789.     p->coeff *= p->decay;
  790.     p->count ++;
  791.     p->coeff += bits*q / var;
  792. }
  793. static void update_vbv( x264_t *h, int bits )
  794. {
  795.     x264_ratecontrol_t *rcc = h->rc;
  796.     if( !rcc->buffer_size )
  797.         return;
  798.     rcc->buffer_fill += rcc->buffer_rate - bits;
  799.     if( rcc->buffer_fill < 0 && !rcc->b_2pass )
  800.         x264_log( h, X264_LOG_WARNING, "VBV underflow (%.0f bits)n", rcc->buffer_fill );
  801.     rcc->buffer_fill = x264_clip3( rcc->buffer_fill, 0, rcc->buffer_size );
  802.     if(rcc->last_satd > 100)
  803.         update_predictor( &rcc->pred[rcc->slice_type], qp2qscale(rcc->qpa), rcc->last_satd, bits );
  804. }
  805. // apply VBV constraints and clip qscale to between lmin and lmax
  806. static double clip_qscale( x264_t *h, int pict_type, double q )
  807. {
  808.     x264_ratecontrol_t *rcc = h->rc;
  809.     double lmin = rcc->lmin[pict_type];
  810.     double lmax = rcc->lmax[pict_type];
  811.     double q0 = q;
  812.     /* B-frames are not directly subject to VBV,
  813.      * since they are controlled by the P-frames' QPs.
  814.      * FIXME: in 2pass we could modify previous frames' QP too,
  815.      *        instead of waiting for the buffer to fill */
  816.     if( rcc->buffer_size &&
  817.         ( pict_type == SLICE_TYPE_P ||
  818.           ( pict_type == SLICE_TYPE_I && rcc->last_non_b_pict_type == SLICE_TYPE_I ) ) )
  819.     {
  820.         if( rcc->buffer_fill/rcc->buffer_size < 0.5 )
  821.             q /= x264_clip3f( 2.0*rcc->buffer_fill/rcc->buffer_size, 0.5, 1.0 );
  822.     }
  823.     /* Now a hard threshold to make sure the frame fits in VBV.
  824.      * This one is mostly for I-frames. */
  825.     if( rcc->buffer_size && rcc->last_satd > 0 )
  826.     {
  827.         double bits = predict_size( &rcc->pred[rcc->slice_type], q, rcc->last_satd );
  828.         double qf = 1.0;
  829.         if( bits > rcc->buffer_fill/2 )
  830.             qf = x264_clip3f( rcc->buffer_fill/(2*bits), 0.2, 1.0 );
  831.         q /= qf;
  832.         bits *= qf;
  833.         if( bits < rcc->buffer_rate/2 )
  834.             q *= bits*2/rcc->buffer_rate;
  835.         q = X264_MAX( q0, q );
  836.     }
  837.     if(lmin==lmax)
  838.         return lmin;
  839.     else if(rcc->b_2pass)
  840.     {
  841.         double min2 = log(lmin);
  842.         double max2 = log(lmax);
  843.         q = (log(q) - min2)/(max2-min2) - 0.5;
  844.         q = 1.0/(1.0 + exp(-4*q));
  845.         q = q*(max2-min2) + min2;
  846.         return exp(q);
  847.     }
  848.     else
  849.         return x264_clip3f(q, lmin, lmax);
  850. }
  851. // update qscale for 1 frame based on actual bits used so far
  852. static float rate_estimate_qscale(x264_t *h, int pict_type)
  853. {
  854.     float q;
  855.     x264_ratecontrol_t *rcc = h->rc;
  856.     ratecontrol_entry_t rce;
  857.     double lmin = rcc->lmin[pict_type];
  858.     double lmax = rcc->lmax[pict_type];
  859.     int64_t total_bits = 8*(h->stat.i_slice_size[SLICE_TYPE_I]
  860.                           + h->stat.i_slice_size[SLICE_TYPE_P]
  861.                           + h->stat.i_slice_size[SLICE_TYPE_B]);
  862.     if( rcc->b_2pass )
  863.     {
  864.         rce = *rcc->rce;
  865.         if(pict_type != rce.pict_type)
  866.         {
  867.             x264_log(h, X264_LOG_ERROR, "slice=%c but 2pass stats say %cn",
  868.                      slice_type_to_char[pict_type], slice_type_to_char[rce.pict_type]);
  869.         }
  870.     }
  871.     if( pict_type == SLICE_TYPE_B )
  872.     {
  873.         rcc->last_satd = 0;
  874.         if(h->fenc->b_kept_as_ref)
  875.             q = rcc->last_qscale * sqrtf(h->param.rc.f_pb_factor);
  876.         else
  877.             q = rcc->last_qscale * h->param.rc.f_pb_factor;
  878.         return x264_clip3f(q, lmin, lmax);
  879.     }
  880.     else
  881.     {
  882.         double abr_buffer = 2 * rcc->rate_tolerance * rcc->bitrate;
  883.         if( rcc->b_2pass )
  884.         {
  885.             //FIXME adjust abr_buffer based on distance to the end of the video
  886.             int64_t diff = total_bits - (int64_t)rce.expected_bits;
  887.             q = rce.new_qscale;
  888.             q /= x264_clip3f((double)(abr_buffer - diff) / abr_buffer, .5, 2);
  889.             if( h->fenc->i_frame > 30 )
  890.             {
  891.                 /* Adjust quant based on the difference between
  892.                  * achieved and expected bitrate so far */
  893.                 double time = (double)h->fenc->i_frame / rcc->num_entries;
  894.                 double w = x264_clip3f( time*100, 0.0, 1.0 );
  895.                 q *= pow( (double)total_bits / rcc->expected_bits_sum, w );
  896.             }
  897.             q = x264_clip3f( q, lmin, lmax );
  898.         }
  899.         else /* 1pass ABR */
  900.         {
  901.             /* Calculate the quantizer which would have produced the desired
  902.              * average bitrate if it had been applied to all frames so far.
  903.              * Then modulate that quant based on the current frame's complexity
  904.              * relative to the average complexity so far (using the 2pass RCEQ).
  905.              * Then bias the quant up or down if total size so far was far from
  906.              * the target.
  907.              * Result: Depending on the value of rate_tolerance, there is a
  908.              * tradeoff between quality and bitrate precision. But at large
  909.              * tolerances, the bit distribution approaches that of 2pass. */
  910.             double wanted_bits, overflow, lmin, lmax;
  911.             rcc->last_satd = x264_rc_analyse_slice( h );
  912.             rcc->short_term_cplxsum *= 0.5;
  913.             rcc->short_term_cplxcount *= 0.5;
  914.             rcc->short_term_cplxsum += rcc->last_satd;
  915.             rcc->short_term_cplxcount ++;
  916.             rce.p_tex_bits = rcc->last_satd;
  917.             rce.blurred_complexity = rcc->short_term_cplxsum / rcc->short_term_cplxcount;
  918.             rce.i_tex_bits = 0;
  919.             rce.mv_bits = 0;
  920.             rce.p_count = rcc->nmb;
  921.             rce.i_count = 0;
  922.             rce.s_count = 0;
  923.             rce.qscale = 1;
  924.             rce.pict_type = pict_type;
  925.             if( h->param.rc.i_rf_constant )
  926.             {
  927.                 q = get_qscale( h, &rce, rcc->rate_factor_constant, h->fenc->i_frame );
  928.                 overflow = 1;
  929.             }
  930.             else
  931.             {
  932.                 q = get_qscale( h, &rce, rcc->wanted_bits_window / rcc->cplxr_sum, h->fenc->i_frame );
  933.                 wanted_bits = h->fenc->i_frame * rcc->bitrate / rcc->fps;
  934.                 abr_buffer *= X264_MAX( 1, sqrt(h->fenc->i_frame/25) );
  935.                 overflow = x264_clip3f( 1.0 + (total_bits - wanted_bits) / abr_buffer, .5, 2 );
  936.                 q *= overflow;
  937.             }
  938.             if( pict_type == SLICE_TYPE_I && h->param.i_keyint_max > 1
  939.                 /* should test _next_ pict type, but that isn't decided yet */
  940.                 && rcc->last_non_b_pict_type != SLICE_TYPE_I )
  941.             {
  942.                 q = qp2qscale( rcc->accum_p_qp / rcc->accum_p_norm );
  943.                 q /= fabs( h->param.rc.f_ip_factor );
  944.                 q = clip_qscale( h, pict_type, q );
  945.             }
  946.             else
  947.             {
  948.                 if( h->stat.i_slice_count[SLICE_TYPE_P] + h->stat.i_slice_count[SLICE_TYPE_I] < 6 )
  949.                 {
  950.                     float w = h->stat.i_slice_count[SLICE_TYPE_P] / 5.;
  951.                     float q2 = qp2qscale(ABR_INIT_QP);
  952.                     q = q*w + q2*(1-w);
  953.                 }
  954.                 /* Asymmetric clipping, because symmetric would prevent
  955.                  * overflow control in areas of rapidly oscillating complexity */
  956.                 lmin = rcc->last_qscale_for[pict_type] / rcc->lstep;
  957.                 lmax = rcc->last_qscale_for[pict_type] * rcc->lstep;
  958.                 if( overflow > 1.1 )
  959.                     lmax *= rcc->lstep;
  960.                 else if( overflow < 0.9 )
  961.                     lmin /= rcc->lstep;
  962.                 q = x264_clip3f(q, lmin, lmax);
  963.                 q = clip_qscale(h, pict_type, q);
  964.                 //FIXME use get_diff_limited_q() ?
  965.             }
  966.         }
  967.         rcc->last_qscale_for[pict_type] =
  968.         rcc->last_qscale = q;
  969.         return q;
  970.     }
  971. }
  972. static int init_pass2( x264_t *h )
  973. {
  974.     x264_ratecontrol_t *rcc = h->rc;
  975.     uint64_t all_const_bits = 0;
  976.     uint64_t all_available_bits = (uint64_t)(h->param.rc.i_bitrate * 1000 * (double)rcc->num_entries / rcc->fps);
  977.     double rate_factor, step, step_mult;
  978.     double qblur = h->param.rc.f_qblur;
  979.     double cplxblur = h->param.rc.f_complexity_blur;
  980.     const int filter_size = (int)(qblur*4) | 1;
  981.     double expected_bits;
  982.     double *qscale, *blurred_qscale;
  983.     int i;
  984.     /* find total/average complexity & const_bits */
  985.     for(i=0; i<rcc->num_entries; i++){
  986.         ratecontrol_entry_t *rce = &rcc->entry[i];
  987.         all_const_bits += rce->misc_bits;
  988.         rcc->i_cplx_sum[rce->pict_type] += rce->i_tex_bits * rce->qscale;
  989.         rcc->p_cplx_sum[rce->pict_type] += rce->p_tex_bits * rce->qscale;
  990.         rcc->mv_bits_sum[rce->pict_type] += rce->mv_bits * rce->qscale;
  991.         rcc->frame_count[rce->pict_type] ++;
  992.     }
  993.     if( all_available_bits < all_const_bits)
  994.     {
  995.         x264_log(h, X264_LOG_ERROR, "requested bitrate is too low. estimated minimum is %d kbpsn",
  996.                  (int)(all_const_bits * rcc->fps / (rcc->num_entries * 1000)));
  997.         return -1;
  998.     }
  999.     /* Blur complexities, to reduce local fluctuation of QP.
  1000.      * We don't blur the QPs directly, because then one very simple frame
  1001.      * could drag down the QP of a nearby complex frame and give it more
  1002.      * bits than intended. */
  1003.     for(i=0; i<rcc->num_entries; i++){
  1004.         ratecontrol_entry_t *rce = &rcc->entry[i];
  1005.         double weight_sum = 0;
  1006.         double cplx_sum = 0;
  1007.         double weight = 1.0;
  1008.         int j;
  1009.         /* weighted average of cplx of future frames */
  1010.         for(j=1; j<cplxblur*2 && j<rcc->num_entries-i; j++){
  1011.             ratecontrol_entry_t *rcj = &rcc->entry[i+j];
  1012.             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
  1013.             if(weight < .0001)
  1014.                 break;
  1015.             weight_sum += weight;
  1016.             cplx_sum += weight * (qscale2bits(rcj, 1) - rcc->entry[j].misc_bits);
  1017.         }
  1018.         /* weighted average of cplx of past frames */
  1019.         weight = 1.0;
  1020.         for(j=0; j<=cplxblur*2 && j<=i; j++){
  1021.             ratecontrol_entry_t *rcj = &rcc->entry[i-j];
  1022.             weight_sum += weight;
  1023.             cplx_sum += weight * (qscale2bits(rcj, 1) - rcc->entry[j].misc_bits);
  1024.             weight *= 1 - pow( (float)rcj->i_count / rcc->nmb, 2 );
  1025.             if(weight < .0001)
  1026.                 break;
  1027.         }
  1028.         rce->blurred_complexity = cplx_sum / weight_sum;
  1029.     }
  1030.     qscale = x264_malloc(sizeof(double)*rcc->num_entries);
  1031.     if(filter_size > 1)
  1032.         blurred_qscale = x264_malloc(sizeof(double)*rcc->num_entries);
  1033.     else
  1034.         blurred_qscale = qscale;
  1035.     /* Search for a factor which, when multiplied by the RCEQ values from
  1036.      * each frame, adds up to the desired total size.
  1037.      * There is no exact closed-form solution because of VBV constraints and
  1038.      * because qscale2bits is not invertible, but we can start with the simple
  1039.      * approximation of scaling the 1st pass by the ratio of bitrates.
  1040.      * The search range is probably overkill, but speed doesn't matter here. */
  1041.     expected_bits = 1;
  1042.     for(i=0; i<rcc->num_entries; i++)
  1043.         expected_bits += qscale2bits(&rcc->entry[i], get_qscale(h, &rcc->entry[i], 1.0, i));
  1044.     step_mult = all_available_bits / expected_bits;
  1045.     rate_factor = 0;
  1046.     for(step = 1E4 * step_mult; step > 1E-7 * step_mult; step *= 0.5){
  1047.         expected_bits = 0;
  1048.         rate_factor += step;
  1049.         rcc->last_non_b_pict_type = -1;
  1050.         rcc->last_accum_p_norm = 1;
  1051.         rcc->accum_p_norm = 0;
  1052.         rcc->buffer_fill = rcc->buffer_size * h->param.rc.f_vbv_buffer_init;
  1053.         /* find qscale */
  1054.         for(i=0; i<rcc->num_entries; i++){
  1055.             qscale[i] = get_qscale(h, &rcc->entry[i], rate_factor, i);
  1056.         }
  1057.         /* fixed I/B qscale relative to P */
  1058.         for(i=rcc->num_entries-1; i>=0; i--){
  1059.             qscale[i] = get_diff_limited_q(h, &rcc->entry[i], qscale[i]);
  1060.             assert(qscale[i] >= 0);
  1061.         }
  1062.         /* smooth curve */
  1063.         if(filter_size > 1){
  1064.             assert(filter_size%2==1);
  1065.             for(i=0; i<rcc->num_entries; i++){
  1066.                 ratecontrol_entry_t *rce = &rcc->entry[i];
  1067.                 int j;
  1068.                 double q=0.0, sum=0.0;
  1069.                 for(j=0; j<filter_size; j++){
  1070.                     int index = i+j-filter_size/2;
  1071.                     double d = index-i;
  1072.                     double coeff = qblur==0 ? 1.0 : exp(-d*d/(qblur*qblur));
  1073.                     if(index < 0 || index >= rcc->num_entries) continue;
  1074.                     if(rce->pict_type != rcc->entry[index].pict_type) continue;
  1075.                     q += qscale[index] * coeff;
  1076.                     sum += coeff;
  1077.                 }
  1078.                 blurred_qscale[i] = q/sum;
  1079.             }
  1080.         }
  1081.         /* find expected bits */
  1082.         for(i=0; i<rcc->num_entries; i++){
  1083.             ratecontrol_entry_t *rce = &rcc->entry[i];
  1084.             double bits;
  1085.             rce->new_qscale = clip_qscale(h, rce->pict_type, blurred_qscale[i]);
  1086.             assert(rce->new_qscale >= 0);
  1087.             bits = qscale2bits(rce, rce->new_qscale);
  1088.             rce->expected_bits = expected_bits;
  1089.             expected_bits += bits;
  1090.             update_vbv(h, bits);
  1091.         }
  1092. //printf("expected:%llu available:%llu factor:%lf avgQ:%lfn", (uint64_t)expected_bits, all_available_bits, rate_factor);
  1093.         if(expected_bits > all_available_bits) rate_factor -= step;
  1094.     }
  1095.     x264_free(qscale);
  1096.     if(filter_size > 1)
  1097.         x264_free(blurred_qscale);
  1098.     if(fabs(expected_bits/all_available_bits - 1.0) > 0.01)
  1099.     {
  1100.         double avgq = 0;
  1101.         for(i=0; i<rcc->num_entries; i++)
  1102.             avgq += rcc->entry[i].new_qscale;
  1103.         avgq = qscale2qp(avgq / rcc->num_entries);
  1104.         x264_log(h, X264_LOG_ERROR, "Error: 2pass curve failed to convergen");
  1105.         x264_log(h, X264_LOG_ERROR, "target: %.2f kbit/s, expected: %.2f kbit/s, avg QP: %.4fn",
  1106.                  (float)h->param.rc.i_bitrate,
  1107.                  expected_bits * rcc->fps / (rcc->num_entries * 1000.),
  1108.                  avgq);
  1109.         if(expected_bits < all_available_bits && avgq < h->param.rc.i_qp_min + 2)
  1110.         {
  1111.             if(h->param.rc.i_qp_min > 0)
  1112.                 x264_log(h, X264_LOG_ERROR, "try reducing target bitrate or reducing qp_min (currently %d)n", h->param.rc.i_qp_min);
  1113.             else
  1114.                 x264_log(h, X264_LOG_ERROR, "try reducing target bitraten");
  1115.         }
  1116.         else if(expected_bits > all_available_bits && avgq > h->param.rc.i_qp_max - 2)
  1117.         {
  1118.             if(h->param.rc.i_qp_max < 51)
  1119.                 x264_log(h, X264_LOG_ERROR, "try increasing target bitrate or increasing qp_max (currently %d)n", h->param.rc.i_qp_max);
  1120.             else
  1121.                 x264_log(h, X264_LOG_ERROR, "try increasing target bitraten");
  1122.         }
  1123.         else
  1124.             x264_log(h, X264_LOG_ERROR, "internal errorn");
  1125.     }
  1126.     return 0;
  1127. }