2002-04-21 21:18:17 +00:00
|
|
|
/*
|
2002-05-25 22:42:45 +00:00
|
|
|
* Rate control for video encoders
|
|
|
|
*
|
2004-01-10 16:04:55 +00:00
|
|
|
* Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
|
2002-05-25 22:42:45 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-25 22:42:45 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-05-25 22:42:45 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-05-25 22:42:45 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-05-25 22:42:45 +00:00
|
|
|
*/
|
2003-03-06 11:32:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file ratecontrol.c
|
|
|
|
* Rate control for video encoders.
|
2005-12-17 18:14:38 +00:00
|
|
|
*/
|
2003-03-06 11:32:04 +00:00
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
#include "avcodec.h"
|
2002-05-25 22:42:45 +00:00
|
|
|
#include "dsputil.h"
|
2006-09-29 19:39:19 +00:00
|
|
|
#include "ratecontrol.h"
|
2002-04-21 21:18:17 +00:00
|
|
|
#include "mpegvideo.h"
|
2006-09-29 19:33:04 +00:00
|
|
|
#include "eval.h"
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
#undef NDEBUG // allways check asserts, the speed effect is far too small to disable them
|
|
|
|
#include <assert.h>
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-30 16:16:30 +00:00
|
|
|
#ifndef M_E
|
|
|
|
#define M_E 2.718281828
|
|
|
|
#endif
|
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
static int init_pass2(MpegEncContext *s);
|
2002-08-25 21:19:50 +00:00
|
|
|
static double get_qscale(MpegEncContext *s, RateControlEntry *rce, double rate_factor, int frame_num);
|
2002-04-21 21:18:17 +00:00
|
|
|
|
|
|
|
void ff_write_pass1_stats(MpegEncContext *s){
|
2006-01-24 21:57:26 +00:00
|
|
|
snprintf(s->avctx->stats_out, 256, "in:%d out:%d type:%d q:%d itex:%d ptex:%d mv:%d misc:%d fcode:%d bcode:%d mc-var:%d var:%d icount:%d skipcount:%d hbits:%d;\n",
|
2005-12-17 18:14:38 +00:00
|
|
|
s->current_picture_ptr->display_picture_number, s->current_picture_ptr->coded_picture_number, s->pict_type,
|
|
|
|
s->current_picture.quality, s->i_tex_bits, s->p_tex_bits, s->mv_bits, s->misc_bits,
|
2006-01-24 21:57:26 +00:00
|
|
|
s->f_code, s->b_code, s->current_picture.mc_mb_var_sum, s->current_picture.mb_var_sum, s->i_count, s->skip_count, s->header_bits);
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
|
|
|
|
2006-10-27 20:16:26 +00:00
|
|
|
static inline double qp2bits(RateControlEntry *rce, double qp){
|
|
|
|
if(qp<=0.0){
|
|
|
|
av_log(NULL, AV_LOG_ERROR, "qp<=0.0\n");
|
|
|
|
}
|
|
|
|
return rce->qscale * (double)(rce->i_tex_bits + rce->p_tex_bits+1)/ qp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline double bits2qp(RateControlEntry *rce, double bits){
|
|
|
|
if(bits<0.9){
|
|
|
|
av_log(NULL, AV_LOG_ERROR, "bits<0.9\n");
|
|
|
|
}
|
|
|
|
return rce->qscale * (double)(rce->i_tex_bits + rce->p_tex_bits+1)/ bits;
|
|
|
|
}
|
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
int ff_rate_control_init(MpegEncContext *s)
|
|
|
|
{
|
|
|
|
RateControlContext *rcc= &s->rc_context;
|
2002-08-25 21:19:50 +00:00
|
|
|
int i;
|
2006-10-27 20:16:26 +00:00
|
|
|
char *error = NULL;
|
|
|
|
static const char *const_names[]={
|
|
|
|
"PI",
|
|
|
|
"E",
|
|
|
|
"iTex",
|
|
|
|
"pTex",
|
|
|
|
"tex",
|
|
|
|
"mv",
|
|
|
|
"fCode",
|
|
|
|
"iCount",
|
|
|
|
"mcVar",
|
|
|
|
"var",
|
|
|
|
"isI",
|
|
|
|
"isP",
|
|
|
|
"isB",
|
|
|
|
"avgQP",
|
|
|
|
"qComp",
|
|
|
|
/* "lastIQP",
|
|
|
|
"lastPQP",
|
|
|
|
"lastBQP",
|
|
|
|
"nextNonBQP",*/
|
|
|
|
"avgIITex",
|
|
|
|
"avgPITex",
|
|
|
|
"avgPPTex",
|
|
|
|
"avgBPTex",
|
|
|
|
"avgTex",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
static double (*func1[])(void *, double)={
|
|
|
|
(void *)bits2qp,
|
|
|
|
(void *)qp2bits,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
static const char *func1_names[]={
|
|
|
|
"bits2qp",
|
|
|
|
"qp2bits",
|
|
|
|
NULL
|
|
|
|
};
|
2002-04-21 21:18:17 +00:00
|
|
|
emms_c();
|
|
|
|
|
2006-10-27 20:16:26 +00:00
|
|
|
rcc->rc_eq_eval = ff_parse(s->avctx->rc_eq, const_names, func1, func1_names, NULL, NULL, &error);
|
|
|
|
if (!rcc->rc_eq_eval) {
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "Error parsing rc_eq \"%s\": %s\n", s->avctx->rc_eq, error? error : "");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
for(i=0; i<5; i++){
|
2003-10-07 11:32:40 +00:00
|
|
|
rcc->pred[i].coeff= FF_QP2LAMBDA * 7.0;
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->pred[i].count= 1.0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->pred[i].decay= 0.4;
|
|
|
|
rcc->i_cplx_sum [i]=
|
|
|
|
rcc->p_cplx_sum [i]=
|
|
|
|
rcc->mv_bits_sum[i]=
|
|
|
|
rcc->qscale_sum [i]=
|
|
|
|
rcc->frame_count[i]= 1; // 1 is better cuz of 1/0 and such
|
2003-10-07 11:32:40 +00:00
|
|
|
rcc->last_qscale_for[i]=FF_QP2LAMBDA * 5;
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
2003-12-12 19:26:55 +00:00
|
|
|
rcc->buffer_index= s->avctx->rc_initial_buffer_occupancy;
|
2002-08-25 21:19:50 +00:00
|
|
|
|
|
|
|
if(s->flags&CODEC_FLAG_PASS2){
|
2002-04-21 21:18:17 +00:00
|
|
|
int i;
|
2002-08-25 21:19:50 +00:00
|
|
|
char *p;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
/* find number of pics */
|
|
|
|
p= s->avctx->stats_in;
|
|
|
|
for(i=-1; p; i++){
|
|
|
|
p= strchr(p+1, ';');
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
i+= s->max_b_frames;
|
2005-01-12 00:16:25 +00:00
|
|
|
if(i<=0 || i>=INT_MAX / sizeof(RateControlEntry))
|
|
|
|
return -1;
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->entry = (RateControlEntry*)av_mallocz(i*sizeof(RateControlEntry));
|
|
|
|
rcc->num_entries= i;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-04-24 17:21:11 +00:00
|
|
|
/* init all to skipped p frames (with b frames we might have a not encoded frame at the end FIXME) */
|
2002-08-25 21:19:50 +00:00
|
|
|
for(i=0; i<rcc->num_entries; i++){
|
|
|
|
RateControlEntry *rce= &rcc->entry[i];
|
|
|
|
rce->pict_type= rce->new_pict_type=P_TYPE;
|
2003-10-07 11:32:40 +00:00
|
|
|
rce->qscale= rce->new_qscale=FF_QP2LAMBDA * 2;
|
2002-08-25 21:19:50 +00:00
|
|
|
rce->misc_bits= s->mb_num + 10;
|
|
|
|
rce->mb_var_sum= s->mb_num*100;
|
2005-12-17 18:14:38 +00:00
|
|
|
}
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
/* read stats */
|
|
|
|
p= s->avctx->stats_in;
|
|
|
|
for(i=0; i<rcc->num_entries - s->max_b_frames; i++){
|
2002-04-21 21:18:17 +00:00
|
|
|
RateControlEntry *rce;
|
|
|
|
int picture_number;
|
|
|
|
int e;
|
2002-08-25 21:19:50 +00:00
|
|
|
char *next;
|
|
|
|
|
|
|
|
next= strchr(p, ';');
|
|
|
|
if(next){
|
|
|
|
(*next)=0; //sscanf in unbelieavle slow on looong strings //FIXME copy / dont write
|
|
|
|
next++;
|
|
|
|
}
|
|
|
|
e= sscanf(p, " in:%d ", &picture_number);
|
|
|
|
|
|
|
|
assert(picture_number >= 0);
|
|
|
|
assert(picture_number < rcc->num_entries);
|
2002-04-21 21:18:17 +00:00
|
|
|
rce= &rcc->entry[picture_number];
|
2002-08-25 21:19:50 +00:00
|
|
|
|
2006-01-24 21:57:26 +00:00
|
|
|
e+=sscanf(p, " in:%*d out:%*d type:%d q:%f itex:%d ptex:%d mv:%d misc:%d fcode:%d bcode:%d mc-var:%d var:%d icount:%d skipcount:%d hbits:%d",
|
2005-12-17 18:14:38 +00:00
|
|
|
&rce->pict_type, &rce->qscale, &rce->i_tex_bits, &rce->p_tex_bits, &rce->mv_bits, &rce->misc_bits,
|
2006-01-24 21:57:26 +00:00
|
|
|
&rce->f_code, &rce->b_code, &rce->mc_mb_var_sum, &rce->mb_var_sum, &rce->i_count, &rce->skip_count, &rce->header_bits);
|
|
|
|
if(e!=14){
|
2003-11-03 13:26:22 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "statistics are damaged at line %d, parser out=%d\n", i, e);
|
2002-04-21 21:18:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2006-01-24 21:57:26 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
p= next;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2006-03-18 20:43:48 +00:00
|
|
|
|
|
|
|
if(init_pass2(s) < 0) return -1;
|
|
|
|
|
2006-01-24 21:57:26 +00:00
|
|
|
//FIXME maybe move to end
|
2006-03-17 16:40:10 +00:00
|
|
|
if((s->flags&CODEC_FLAG_PASS2) && s->avctx->rc_strategy == FF_RC_STRATEGY_XVID) {
|
|
|
|
#ifdef CONFIG_XVID
|
2006-01-24 21:57:26 +00:00
|
|
|
return ff_xvid_rate_control_init(s);
|
2006-03-17 16:40:10 +00:00
|
|
|
#else
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "XviD ratecontrol requires libavcodec compiled with XviD support\n");
|
|
|
|
return -1;
|
2006-01-25 02:16:27 +00:00
|
|
|
#endif
|
2006-03-17 16:40:10 +00:00
|
|
|
}
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
if(!(s->flags&CODEC_FLAG_PASS2)){
|
|
|
|
|
|
|
|
rcc->short_term_qsum=0.001;
|
|
|
|
rcc->short_term_qcount=0.001;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-29 23:21:13 +00:00
|
|
|
rcc->pass1_rc_eq_output_sum= 0.001;
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->pass1_wanted_bits=0.001;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
/* init stuff with the user specified complexity */
|
|
|
|
if(s->avctx->rc_initial_cplx){
|
|
|
|
for(i=0; i<60*30; i++){
|
|
|
|
double bits= s->avctx->rc_initial_cplx * (i/10000.0 + 1.0)*s->mb_num;
|
|
|
|
RateControlEntry rce;
|
|
|
|
double q;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
if (i%((s->gop_size+3)/4)==0) rce.pict_type= I_TYPE;
|
|
|
|
else if(i%(s->max_b_frames+1)) rce.pict_type= B_TYPE;
|
|
|
|
else rce.pict_type= P_TYPE;
|
|
|
|
|
|
|
|
rce.new_pict_type= rce.pict_type;
|
|
|
|
rce.mc_mb_var_sum= bits*s->mb_num/100000;
|
|
|
|
rce.mb_var_sum = s->mb_num;
|
2003-10-07 11:32:40 +00:00
|
|
|
rce.qscale = FF_QP2LAMBDA * 2;
|
2002-08-25 21:19:50 +00:00
|
|
|
rce.f_code = 2;
|
|
|
|
rce.b_code = 1;
|
|
|
|
rce.misc_bits= 1;
|
|
|
|
|
|
|
|
if(s->pict_type== I_TYPE){
|
|
|
|
rce.i_count = s->mb_num;
|
|
|
|
rce.i_tex_bits= bits;
|
|
|
|
rce.p_tex_bits= 0;
|
|
|
|
rce.mv_bits= 0;
|
|
|
|
}else{
|
|
|
|
rce.i_count = 0; //FIXME we do know this approx
|
|
|
|
rce.i_tex_bits= 0;
|
|
|
|
rce.p_tex_bits= bits*0.9;
|
|
|
|
rce.mv_bits= bits*0.1;
|
|
|
|
}
|
|
|
|
rcc->i_cplx_sum [rce.pict_type] += rce.i_tex_bits*rce.qscale;
|
|
|
|
rcc->p_cplx_sum [rce.pict_type] += rce.p_tex_bits*rce.qscale;
|
|
|
|
rcc->mv_bits_sum[rce.pict_type] += rce.mv_bits;
|
|
|
|
rcc->frame_count[rce.pict_type] ++;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
bits= rce.i_tex_bits + rce.p_tex_bits;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-09-29 23:21:13 +00:00
|
|
|
q= get_qscale(s, &rce, rcc->pass1_wanted_bits/rcc->pass1_rc_eq_output_sum, i);
|
2005-04-30 21:43:59 +00:00
|
|
|
rcc->pass1_wanted_bits+= s->bit_rate/(1/av_q2d(s->avctx->time_base)); //FIXME missbehaves a little for variable fps
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ff_rate_control_uninit(MpegEncContext *s)
|
|
|
|
{
|
|
|
|
RateControlContext *rcc= &s->rc_context;
|
|
|
|
emms_c();
|
|
|
|
|
2006-10-27 20:16:26 +00:00
|
|
|
ff_eval_free(rcc->rc_eq_eval);
|
2002-05-18 23:03:29 +00:00
|
|
|
av_freep(&rcc->entry);
|
2006-01-24 21:57:26 +00:00
|
|
|
|
2006-01-25 02:16:27 +00:00
|
|
|
#ifdef CONFIG_XVID
|
2006-01-24 21:57:26 +00:00
|
|
|
if((s->flags&CODEC_FLAG_PASS2) && s->avctx->rc_strategy == FF_RC_STRATEGY_XVID)
|
|
|
|
ff_xvid_rate_control_uninit(s);
|
2006-01-25 02:16:27 +00:00
|
|
|
#endif
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
|
|
|
|
2003-12-12 21:30:47 +00:00
|
|
|
int ff_vbv_update(MpegEncContext *s, int frame_size){
|
2002-08-25 21:19:50 +00:00
|
|
|
RateControlContext *rcc= &s->rc_context;
|
2005-04-30 21:43:59 +00:00
|
|
|
const double fps= 1/av_q2d(s->avctx->time_base);
|
2003-12-17 19:53:05 +00:00
|
|
|
const int buffer_size= s->avctx->rc_buffer_size;
|
2002-08-25 21:19:50 +00:00
|
|
|
const double min_rate= s->avctx->rc_min_rate/fps;
|
|
|
|
const double max_rate= s->avctx->rc_max_rate/fps;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-12-17 19:53:05 +00:00
|
|
|
//printf("%d %f %d %f %f\n", buffer_size, rcc->buffer_index, frame_size, min_rate, max_rate);
|
2002-08-25 21:19:50 +00:00
|
|
|
if(buffer_size){
|
2003-12-12 19:26:55 +00:00
|
|
|
int left;
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->buffer_index-= frame_size;
|
2003-12-12 19:26:55 +00:00
|
|
|
if(rcc->buffer_index < 0){
|
2003-11-03 13:26:22 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "rc buffer underflow\n");
|
2003-12-12 19:26:55 +00:00
|
|
|
rcc->buffer_index= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
left= buffer_size - rcc->buffer_index - 1;
|
|
|
|
rcc->buffer_index += clip(left, min_rate, max_rate);
|
|
|
|
|
2003-12-17 19:53:05 +00:00
|
|
|
if(rcc->buffer_index > buffer_size){
|
|
|
|
int stuffing= ceil((rcc->buffer_index - buffer_size)/8);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-12-12 21:30:47 +00:00
|
|
|
if(stuffing < 4 && s->codec_id == CODEC_ID_MPEG4)
|
|
|
|
stuffing=4;
|
|
|
|
rcc->buffer_index -= 8*stuffing;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-12-12 21:30:47 +00:00
|
|
|
if(s->avctx->debug & FF_DEBUG_RC)
|
|
|
|
av_log(s->avctx, AV_LOG_DEBUG, "stuffing %d bytes\n", stuffing);
|
|
|
|
|
|
|
|
return stuffing;
|
2003-12-12 19:26:55 +00:00
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
2003-12-12 21:30:47 +00:00
|
|
|
return 0;
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* modifies the bitrate curve from pass1 for one frame
|
|
|
|
*/
|
|
|
|
static double get_qscale(MpegEncContext *s, RateControlEntry *rce, double rate_factor, int frame_num){
|
|
|
|
RateControlContext *rcc= &s->rc_context;
|
2003-12-13 20:41:33 +00:00
|
|
|
AVCodecContext *a= s->avctx;
|
2002-08-25 21:19:50 +00:00
|
|
|
double q, bits;
|
|
|
|
const int pict_type= rce->new_pict_type;
|
2005-12-17 18:14:38 +00:00
|
|
|
const double mb_num= s->mb_num;
|
2002-08-25 21:19:50 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
double const_values[]={
|
|
|
|
M_PI,
|
|
|
|
M_E,
|
|
|
|
rce->i_tex_bits*rce->qscale,
|
|
|
|
rce->p_tex_bits*rce->qscale,
|
|
|
|
(rce->i_tex_bits + rce->p_tex_bits)*(double)rce->qscale,
|
|
|
|
rce->mv_bits/mb_num,
|
|
|
|
rce->pict_type == B_TYPE ? (rce->f_code + rce->b_code)*0.5 : rce->f_code,
|
|
|
|
rce->i_count/mb_num,
|
|
|
|
rce->mc_mb_var_sum/mb_num,
|
|
|
|
rce->mb_var_sum/mb_num,
|
|
|
|
rce->pict_type == I_TYPE,
|
|
|
|
rce->pict_type == P_TYPE,
|
|
|
|
rce->pict_type == B_TYPE,
|
|
|
|
rcc->qscale_sum[pict_type] / (double)rcc->frame_count[pict_type],
|
2003-12-13 20:41:33 +00:00
|
|
|
a->qcompress,
|
2002-08-25 21:19:50 +00:00
|
|
|
/* rcc->last_qscale_for[I_TYPE],
|
|
|
|
rcc->last_qscale_for[P_TYPE],
|
|
|
|
rcc->last_qscale_for[B_TYPE],
|
|
|
|
rcc->next_non_b_qscale,*/
|
|
|
|
rcc->i_cplx_sum[I_TYPE] / (double)rcc->frame_count[I_TYPE],
|
|
|
|
rcc->i_cplx_sum[P_TYPE] / (double)rcc->frame_count[P_TYPE],
|
|
|
|
rcc->p_cplx_sum[P_TYPE] / (double)rcc->frame_count[P_TYPE],
|
|
|
|
rcc->p_cplx_sum[B_TYPE] / (double)rcc->frame_count[B_TYPE],
|
|
|
|
(rcc->i_cplx_sum[pict_type] + rcc->p_cplx_sum[pict_type]) / (double)rcc->frame_count[pict_type],
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2006-10-27 20:16:26 +00:00
|
|
|
bits= ff_parse_eval(rcc->rc_eq_eval, const_values, rce);
|
2006-09-26 14:04:36 +00:00
|
|
|
if (isnan(bits)) {
|
2006-10-27 20:16:26 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "Error evaluating rc_eq \"%s\"\n", s->avctx->rc_eq);
|
2006-09-26 14:04:36 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-29 23:21:13 +00:00
|
|
|
rcc->pass1_rc_eq_output_sum+= bits;
|
2002-08-25 21:19:50 +00:00
|
|
|
bits*=rate_factor;
|
|
|
|
if(bits<0.0) bits=0.0;
|
|
|
|
bits+= 1.0; //avoid 1/0 issues
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
/* user override */
|
|
|
|
for(i=0; i<s->avctx->rc_override_count; i++){
|
|
|
|
RcOverride *rco= s->avctx->rc_override;
|
|
|
|
if(rco[i].start_frame > frame_num) continue;
|
|
|
|
if(rco[i].end_frame < frame_num) continue;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
|
|
|
if(rco[i].qscale)
|
2002-08-25 21:19:50 +00:00
|
|
|
bits= qp2bits(rce, rco[i].qscale); //FIXME move at end to really force it?
|
|
|
|
else
|
|
|
|
bits*= rco[i].quality_factor;
|
|
|
|
}
|
|
|
|
|
|
|
|
q= bits2qp(rce, bits);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
/* I/B difference */
|
|
|
|
if (pict_type==I_TYPE && s->avctx->i_quant_factor<0.0)
|
|
|
|
q= -q*s->avctx->i_quant_factor + s->avctx->i_quant_offset;
|
|
|
|
else if(pict_type==B_TYPE && s->avctx->b_quant_factor<0.0)
|
|
|
|
q= -q*s->avctx->b_quant_factor + s->avctx->b_quant_offset;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-18 18:28:11 +00:00
|
|
|
return q;
|
|
|
|
}
|
|
|
|
|
|
|
|
static double get_diff_limited_q(MpegEncContext *s, RateControlEntry *rce, double q){
|
|
|
|
RateControlContext *rcc= &s->rc_context;
|
|
|
|
AVCodecContext *a= s->avctx;
|
|
|
|
const int pict_type= rce->new_pict_type;
|
|
|
|
const double last_p_q = rcc->last_qscale_for[P_TYPE];
|
|
|
|
const double last_non_b_q= rcc->last_qscale_for[rcc->last_non_b_pict_type];
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-18 18:28:11 +00:00
|
|
|
if (pict_type==I_TYPE && (a->i_quant_factor>0.0 || rcc->last_non_b_pict_type==P_TYPE))
|
2006-10-11 23:17:58 +00:00
|
|
|
q= last_p_q *FFABS(a->i_quant_factor) + a->i_quant_offset;
|
2002-09-18 18:28:11 +00:00
|
|
|
else if(pict_type==B_TYPE && a->b_quant_factor>0.0)
|
|
|
|
q= last_non_b_q* a->b_quant_factor + a->b_quant_offset;
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
/* last qscale / qdiff stuff */
|
2002-09-18 18:28:11 +00:00
|
|
|
if(rcc->last_non_b_pict_type==pict_type || pict_type!=I_TYPE){
|
|
|
|
double last_q= rcc->last_qscale_for[pict_type];
|
2003-10-07 11:32:40 +00:00
|
|
|
const int maxdiff= FF_QP2LAMBDA * a->max_qdiff;
|
2002-12-17 11:25:29 +00:00
|
|
|
|
2003-10-07 11:32:40 +00:00
|
|
|
if (q > last_q + maxdiff) q= last_q + maxdiff;
|
|
|
|
else if(q < last_q - maxdiff) q= last_q - maxdiff;
|
2002-09-18 18:28:11 +00:00
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
|
|
|
|
rcc->last_qscale_for[pict_type]= q; //Note we cant do that after blurring
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-18 18:28:11 +00:00
|
|
|
if(pict_type!=B_TYPE)
|
|
|
|
rcc->last_non_b_pict_type= pict_type;
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
return q;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gets the qmin & qmax for pict_type
|
|
|
|
*/
|
|
|
|
static void get_qminmax(int *qmin_ret, int *qmax_ret, MpegEncContext *s, int pict_type){
|
2005-12-17 18:14:38 +00:00
|
|
|
int qmin= s->avctx->lmin;
|
2003-10-07 11:32:40 +00:00
|
|
|
int qmax= s->avctx->lmax;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-07-16 11:48:59 +00:00
|
|
|
assert(qmin <= qmax);
|
2002-08-25 21:19:50 +00:00
|
|
|
|
|
|
|
if(pict_type==B_TYPE){
|
2006-10-11 23:17:58 +00:00
|
|
|
qmin= (int)(qmin*FFABS(s->avctx->b_quant_factor)+s->avctx->b_quant_offset + 0.5);
|
|
|
|
qmax= (int)(qmax*FFABS(s->avctx->b_quant_factor)+s->avctx->b_quant_offset + 0.5);
|
2002-08-25 21:19:50 +00:00
|
|
|
}else if(pict_type==I_TYPE){
|
2006-10-11 23:17:58 +00:00
|
|
|
qmin= (int)(qmin*FFABS(s->avctx->i_quant_factor)+s->avctx->i_quant_offset + 0.5);
|
|
|
|
qmax= (int)(qmax*FFABS(s->avctx->i_quant_factor)+s->avctx->i_quant_offset + 0.5);
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
|
|
|
|
2003-10-07 11:32:40 +00:00
|
|
|
qmin= clip(qmin, 1, FF_LAMBDA_MAX);
|
|
|
|
qmax= clip(qmax, 1, FF_LAMBDA_MAX);
|
2002-08-25 21:19:50 +00:00
|
|
|
|
2003-07-16 11:48:59 +00:00
|
|
|
if(qmax<qmin) qmax= qmin;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
*qmin_ret= qmin;
|
|
|
|
*qmax_ret= qmax;
|
|
|
|
}
|
|
|
|
|
|
|
|
static double modify_qscale(MpegEncContext *s, RateControlEntry *rce, double q, int frame_num){
|
|
|
|
RateControlContext *rcc= &s->rc_context;
|
|
|
|
int qmin, qmax;
|
|
|
|
double bits;
|
|
|
|
const int pict_type= rce->new_pict_type;
|
|
|
|
const double buffer_size= s->avctx->rc_buffer_size;
|
2005-04-30 21:43:59 +00:00
|
|
|
const double fps= 1/av_q2d(s->avctx->time_base);
|
2003-12-12 19:26:55 +00:00
|
|
|
const double min_rate= s->avctx->rc_min_rate / fps;
|
|
|
|
const double max_rate= s->avctx->rc_max_rate / fps;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
get_qminmax(&qmin, &qmax, s, pict_type);
|
|
|
|
|
|
|
|
/* modulation */
|
|
|
|
if(s->avctx->rc_qmod_freq && frame_num%s->avctx->rc_qmod_freq==0 && pict_type==P_TYPE)
|
|
|
|
q*= s->avctx->rc_qmod_amp;
|
|
|
|
|
|
|
|
bits= qp2bits(rce, q);
|
2002-09-18 09:08:03 +00:00
|
|
|
//printf("q:%f\n", q);
|
2002-08-25 21:19:50 +00:00
|
|
|
/* buffer overflow/underflow protection */
|
|
|
|
if(buffer_size){
|
2002-09-18 18:28:11 +00:00
|
|
|
double expected_size= rcc->buffer_index;
|
2003-12-17 19:53:05 +00:00
|
|
|
double q_limit;
|
2002-08-25 21:19:50 +00:00
|
|
|
|
|
|
|
if(min_rate){
|
2002-09-18 18:28:11 +00:00
|
|
|
double d= 2*(buffer_size - expected_size)/buffer_size;
|
2002-08-25 21:19:50 +00:00
|
|
|
if(d>1.0) d=1.0;
|
2002-09-18 09:08:03 +00:00
|
|
|
else if(d<0.0001) d=0.0001;
|
|
|
|
q*= pow(d, 1.0/s->avctx->rc_buffer_aggressivity);
|
2002-09-18 18:28:11 +00:00
|
|
|
|
2003-12-17 19:53:05 +00:00
|
|
|
q_limit= bits2qp(rce, FFMAX((min_rate - buffer_size + rcc->buffer_index)*3, 1));
|
|
|
|
if(q > q_limit){
|
|
|
|
if(s->avctx->debug&FF_DEBUG_RC){
|
|
|
|
av_log(s->avctx, AV_LOG_DEBUG, "limiting QP %f -> %f\n", q, q_limit);
|
|
|
|
}
|
|
|
|
q= q_limit;
|
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(max_rate){
|
|
|
|
double d= 2*expected_size/buffer_size;
|
|
|
|
if(d>1.0) d=1.0;
|
2002-09-18 09:08:03 +00:00
|
|
|
else if(d<0.0001) d=0.0001;
|
|
|
|
q/= pow(d, 1.0/s->avctx->rc_buffer_aggressivity);
|
2002-09-18 18:28:11 +00:00
|
|
|
|
2003-12-17 19:53:05 +00:00
|
|
|
q_limit= bits2qp(rce, FFMAX(rcc->buffer_index/3, 1));
|
|
|
|
if(q < q_limit){
|
|
|
|
if(s->avctx->debug&FF_DEBUG_RC){
|
|
|
|
av_log(s->avctx, AV_LOG_DEBUG, "limiting QP %f -> %f\n", q, q_limit);
|
|
|
|
}
|
|
|
|
q= q_limit;
|
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
|
|
|
}
|
2002-09-18 09:08:03 +00:00
|
|
|
//printf("q:%f max:%f min:%f size:%f index:%d bits:%f agr:%f\n", q,max_rate, min_rate, buffer_size, rcc->buffer_index, bits, s->avctx->rc_buffer_aggressivity);
|
2002-08-25 23:49:50 +00:00
|
|
|
if(s->avctx->rc_qsquish==0.0 || qmin==qmax){
|
2002-08-25 21:19:50 +00:00
|
|
|
if (q<qmin) q=qmin;
|
|
|
|
else if(q>qmax) q=qmax;
|
|
|
|
}else{
|
|
|
|
double min2= log(qmin);
|
|
|
|
double max2= log(qmax);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
q= log(q);
|
|
|
|
q= (q - min2)/(max2-min2) - 0.5;
|
|
|
|
q*= -4.0;
|
|
|
|
q= 1.0/(1.0 + exp(q));
|
|
|
|
q= q*(max2-min2) + min2;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
q= exp(q);
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
return q;
|
|
|
|
}
|
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
//----------------------------------
|
|
|
|
// 1 Pass Code
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
static double predict_size(Predictor *p, double q, double var)
|
2002-04-21 21:18:17 +00:00
|
|
|
{
|
|
|
|
return p->coeff*var / (q*p->count);
|
|
|
|
}
|
|
|
|
|
2003-01-01 15:10:45 +00:00
|
|
|
/*
|
2002-08-25 21:19:50 +00:00
|
|
|
static double predict_qp(Predictor *p, double size, double var)
|
|
|
|
{
|
|
|
|
//printf("coeff:%f, count:%f, var:%f, size:%f//\n", p->coeff, p->count, var, size);
|
|
|
|
return p->coeff*var / (size*p->count);
|
|
|
|
}
|
2003-01-01 15:10:45 +00:00
|
|
|
*/
|
2002-08-25 21:19:50 +00:00
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
static void update_predictor(Predictor *p, double q, double var, double size)
|
|
|
|
{
|
|
|
|
double new_coeff= size*q / (var + 1);
|
2002-08-25 21:19:50 +00:00
|
|
|
if(var<10) return;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
|
|
|
p->count*= p->decay;
|
|
|
|
p->coeff*= p->decay;
|
|
|
|
p->count++;
|
|
|
|
p->coeff+= new_coeff;
|
|
|
|
}
|
|
|
|
|
2002-09-23 14:56:11 +00:00
|
|
|
static void adaptive_quantization(MpegEncContext *s, double q){
|
|
|
|
int i;
|
|
|
|
const float lumi_masking= s->avctx->lumi_masking / (128.0*128.0);
|
2002-09-24 10:53:59 +00:00
|
|
|
const float dark_masking= s->avctx->dark_masking / (128.0*128.0);
|
2002-09-23 14:56:11 +00:00
|
|
|
const float temp_cplx_masking= s->avctx->temporal_cplx_masking;
|
|
|
|
const float spatial_cplx_masking = s->avctx->spatial_cplx_masking;
|
|
|
|
const float p_masking = s->avctx->p_masking;
|
2005-02-02 18:49:04 +00:00
|
|
|
const float border_masking = s->avctx->border_masking;
|
2002-09-23 14:56:11 +00:00
|
|
|
float bits_sum= 0.0;
|
|
|
|
float cplx_sum= 0.0;
|
|
|
|
float cplx_tab[s->mb_num];
|
|
|
|
float bits_tab[s->mb_num];
|
2005-02-02 19:33:48 +00:00
|
|
|
const int qmin= s->avctx->mb_lmin;
|
|
|
|
const int qmax= s->avctx->mb_lmax;
|
2002-12-04 10:04:03 +00:00
|
|
|
Picture * const pic= &s->current_picture;
|
2005-02-02 18:49:04 +00:00
|
|
|
const int mb_width = s->mb_width;
|
|
|
|
const int mb_height = s->mb_height;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-23 14:56:11 +00:00
|
|
|
for(i=0; i<s->mb_num; i++){
|
2003-04-11 09:20:45 +00:00
|
|
|
const int mb_xy= s->mb_index2xy[i];
|
2003-10-07 11:32:40 +00:00
|
|
|
float temp_cplx= sqrt(pic->mc_mb_var[mb_xy]); //FIXME merge in pow()
|
2003-04-11 09:20:45 +00:00
|
|
|
float spat_cplx= sqrt(pic->mb_var[mb_xy]);
|
|
|
|
const int lumi= pic->mb_mean[mb_xy];
|
2002-09-23 14:56:11 +00:00
|
|
|
float bits, cplx, factor;
|
2005-02-02 18:49:04 +00:00
|
|
|
int mb_x = mb_xy % s->mb_stride;
|
|
|
|
int mb_y = mb_xy / s->mb_stride;
|
|
|
|
int mb_distance;
|
|
|
|
float mb_factor = 0.0;
|
2005-12-17 18:14:38 +00:00
|
|
|
#if 0
|
2002-09-23 14:56:11 +00:00
|
|
|
if(spat_cplx < q/3) spat_cplx= q/3; //FIXME finetune
|
|
|
|
if(temp_cplx < q/3) temp_cplx= q/3; //FIXME finetune
|
2005-12-17 18:14:38 +00:00
|
|
|
#endif
|
2003-10-07 11:32:40 +00:00
|
|
|
if(spat_cplx < 4) spat_cplx= 4; //FIXME finetune
|
|
|
|
if(temp_cplx < 4) temp_cplx= 4; //FIXME finetune
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
if((s->mb_type[mb_xy]&CANDIDATE_MB_TYPE_INTRA)){//FIXME hq mode
|
2002-09-23 14:56:11 +00:00
|
|
|
cplx= spat_cplx;
|
|
|
|
factor= 1.0 + p_masking;
|
|
|
|
}else{
|
|
|
|
cplx= temp_cplx;
|
|
|
|
factor= pow(temp_cplx, - temp_cplx_masking);
|
|
|
|
}
|
|
|
|
factor*=pow(spat_cplx, - spatial_cplx_masking);
|
2002-09-24 10:53:59 +00:00
|
|
|
|
|
|
|
if(lumi>127)
|
|
|
|
factor*= (1.0 - (lumi-128)*(lumi-128)*lumi_masking);
|
|
|
|
else
|
|
|
|
factor*= (1.0 - (lumi-128)*(lumi-128)*dark_masking);
|
2005-02-02 18:49:04 +00:00
|
|
|
|
|
|
|
if(mb_x < mb_width/5){
|
|
|
|
mb_distance = mb_width/5 - mb_x;
|
|
|
|
mb_factor = (float)mb_distance / (float)(mb_width/5);
|
|
|
|
}else if(mb_x > 4*mb_width/5){
|
|
|
|
mb_distance = mb_x - 4*mb_width/5;
|
|
|
|
mb_factor = (float)mb_distance / (float)(mb_width/5);
|
|
|
|
}
|
|
|
|
if(mb_y < mb_height/5){
|
|
|
|
mb_distance = mb_height/5 - mb_y;
|
|
|
|
mb_factor = FFMAX(mb_factor, (float)mb_distance / (float)(mb_height/5));
|
|
|
|
}else if(mb_y > 4*mb_height/5){
|
|
|
|
mb_distance = mb_y - 4*mb_height/5;
|
|
|
|
mb_factor = FFMAX(mb_factor, (float)mb_distance / (float)(mb_height/5));
|
|
|
|
}
|
|
|
|
|
|
|
|
factor*= 1.0 - border_masking*mb_factor;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-23 14:56:11 +00:00
|
|
|
if(factor<0.00001) factor= 0.00001;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-23 14:56:11 +00:00
|
|
|
bits= cplx*factor;
|
|
|
|
cplx_sum+= cplx;
|
|
|
|
bits_sum+= bits;
|
|
|
|
cplx_tab[i]= cplx;
|
|
|
|
bits_tab[i]= bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* handle qmin/qmax cliping */
|
|
|
|
if(s->flags&CODEC_FLAG_NORMALIZE_AQP){
|
2004-02-14 13:37:58 +00:00
|
|
|
float factor= bits_sum/cplx_sum;
|
2002-09-23 14:56:11 +00:00
|
|
|
for(i=0; i<s->mb_num; i++){
|
|
|
|
float newq= q*cplx_tab[i]/bits_tab[i];
|
2004-02-14 13:37:58 +00:00
|
|
|
newq*= factor;
|
2002-09-23 14:56:11 +00:00
|
|
|
|
|
|
|
if (newq > qmax){
|
|
|
|
bits_sum -= bits_tab[i];
|
|
|
|
cplx_sum -= cplx_tab[i]*q/qmax;
|
|
|
|
}
|
|
|
|
else if(newq < qmin){
|
|
|
|
bits_sum -= bits_tab[i];
|
|
|
|
cplx_sum -= cplx_tab[i]*q/qmin;
|
|
|
|
}
|
|
|
|
}
|
2004-02-14 13:37:58 +00:00
|
|
|
if(bits_sum < 0.001) bits_sum= 0.001;
|
|
|
|
if(cplx_sum < 0.001) cplx_sum= 0.001;
|
2002-09-23 14:56:11 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-23 14:56:11 +00:00
|
|
|
for(i=0; i<s->mb_num; i++){
|
2003-04-11 09:20:45 +00:00
|
|
|
const int mb_xy= s->mb_index2xy[i];
|
2002-09-23 14:56:11 +00:00
|
|
|
float newq= q*cplx_tab[i]/bits_tab[i];
|
|
|
|
int intq;
|
|
|
|
|
|
|
|
if(s->flags&CODEC_FLAG_NORMALIZE_AQP){
|
|
|
|
newq*= bits_sum/cplx_sum;
|
|
|
|
}
|
|
|
|
|
2003-10-07 11:32:40 +00:00
|
|
|
intq= (int)(newq + 0.5);
|
2002-09-23 14:56:11 +00:00
|
|
|
|
|
|
|
if (intq > qmax) intq= qmax;
|
|
|
|
else if(intq < qmin) intq= qmin;
|
|
|
|
//if(i%s->mb_width==0) printf("\n");
|
|
|
|
//printf("%2d%3d ", intq, ff_sqrt(s->mc_mb_var[i]));
|
2003-10-07 11:32:40 +00:00
|
|
|
s->lambda_table[mb_xy]= intq;
|
2002-09-23 14:56:11 +00:00
|
|
|
}
|
|
|
|
}
|
2005-12-22 22:48:09 +00:00
|
|
|
|
|
|
|
void ff_get_2pass_fcode(MpegEncContext *s){
|
|
|
|
RateControlContext *rcc= &s->rc_context;
|
|
|
|
int picture_number= s->picture_number;
|
|
|
|
RateControlEntry *rce;
|
|
|
|
|
|
|
|
rce= &rcc->entry[picture_number];
|
|
|
|
s->f_code= rce->f_code;
|
|
|
|
s->b_code= rce->b_code;
|
|
|
|
}
|
|
|
|
|
2003-10-07 11:32:40 +00:00
|
|
|
//FIXME rd or at least approx for dquant
|
2002-09-23 14:56:11 +00:00
|
|
|
|
2005-12-19 13:41:27 +00:00
|
|
|
float ff_rate_estimate_qscale(MpegEncContext *s, int dry_run)
|
2002-04-21 21:18:17 +00:00
|
|
|
{
|
|
|
|
float q;
|
2002-09-23 14:56:11 +00:00
|
|
|
int qmin, qmax;
|
2002-04-21 21:18:17 +00:00
|
|
|
float br_compensation;
|
|
|
|
double diff;
|
|
|
|
double short_term_q;
|
|
|
|
double fps;
|
2002-08-25 21:19:50 +00:00
|
|
|
int picture_number= s->picture_number;
|
2002-04-21 21:18:17 +00:00
|
|
|
int64_t wanted_bits;
|
2002-08-25 21:19:50 +00:00
|
|
|
RateControlContext *rcc= &s->rc_context;
|
2003-12-13 20:41:33 +00:00
|
|
|
AVCodecContext *a= s->avctx;
|
2002-08-25 21:19:50 +00:00
|
|
|
RateControlEntry local_rce, *rce;
|
|
|
|
double bits;
|
|
|
|
double rate_factor;
|
|
|
|
int var;
|
|
|
|
const int pict_type= s->pict_type;
|
2002-12-04 10:04:03 +00:00
|
|
|
Picture * const pic= &s->current_picture;
|
2002-04-21 21:18:17 +00:00
|
|
|
emms_c();
|
|
|
|
|
2006-01-25 02:16:27 +00:00
|
|
|
#ifdef CONFIG_XVID
|
2006-01-24 21:57:26 +00:00
|
|
|
if((s->flags&CODEC_FLAG_PASS2) && s->avctx->rc_strategy == FF_RC_STRATEGY_XVID)
|
|
|
|
return ff_xvid_rate_estimate_qscale(s, dry_run);
|
2006-01-25 02:16:27 +00:00
|
|
|
#endif
|
2006-01-24 21:57:26 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
get_qminmax(&qmin, &qmax, s, pict_type);
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2005-04-30 21:43:59 +00:00
|
|
|
fps= 1/av_q2d(s->avctx->time_base);
|
2002-09-18 09:08:03 +00:00
|
|
|
//printf("input_pic_num:%d pic_num:%d frame_rate:%d\n", s->input_picture_number, s->picture_number, s->frame_rate);
|
2002-04-21 21:18:17 +00:00
|
|
|
/* update predictors */
|
2005-12-19 13:41:27 +00:00
|
|
|
if(picture_number>2 && !dry_run){
|
2002-08-25 21:19:50 +00:00
|
|
|
const int last_var= s->last_pict_type == I_TYPE ? rcc->last_mb_var_sum : rcc->last_mc_mb_var_sum;
|
|
|
|
update_predictor(&rcc->pred[s->last_pict_type], rcc->last_qscale, sqrt(last_var), s->frame_bits);
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
if(s->flags&CODEC_FLAG_PASS2){
|
|
|
|
assert(picture_number>=0);
|
|
|
|
assert(picture_number<rcc->num_entries);
|
|
|
|
rce= &rcc->entry[picture_number];
|
|
|
|
wanted_bits= rce->expected_bits;
|
|
|
|
}else{
|
|
|
|
rce= &local_rce;
|
|
|
|
wanted_bits= (uint64_t)(s->bit_rate*(double)picture_number/fps);
|
|
|
|
}
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
diff= s->total_bits - wanted_bits;
|
2003-12-13 20:41:33 +00:00
|
|
|
br_compensation= (a->bit_rate_tolerance - diff)/a->bit_rate_tolerance;
|
2002-08-25 21:19:50 +00:00
|
|
|
if(br_compensation<=0.0) br_compensation=0.001;
|
|
|
|
|
2002-12-04 10:04:03 +00:00
|
|
|
var= pict_type == I_TYPE ? pic->mb_var_sum : pic->mc_mb_var_sum;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-09-09 22:59:16 +00:00
|
|
|
short_term_q = 0; /* avoid warning */
|
2002-08-25 21:19:50 +00:00
|
|
|
if(s->flags&CODEC_FLAG_PASS2){
|
|
|
|
if(pict_type!=I_TYPE)
|
|
|
|
assert(pict_type == rce->new_pict_type);
|
|
|
|
|
|
|
|
q= rce->new_qscale / br_compensation;
|
|
|
|
//printf("%f %f %f last:%d var:%d type:%d//\n", q, rce->new_qscale, br_compensation, s->frame_bits, var, pict_type);
|
|
|
|
}else{
|
2005-12-17 18:14:38 +00:00
|
|
|
rce->pict_type=
|
2002-08-25 21:19:50 +00:00
|
|
|
rce->new_pict_type= pict_type;
|
2002-12-04 10:04:03 +00:00
|
|
|
rce->mc_mb_var_sum= pic->mc_mb_var_sum;
|
|
|
|
rce->mb_var_sum = pic-> mb_var_sum;
|
2003-10-07 11:32:40 +00:00
|
|
|
rce->qscale = FF_QP2LAMBDA * 2;
|
2002-08-25 21:19:50 +00:00
|
|
|
rce->f_code = s->f_code;
|
|
|
|
rce->b_code = s->b_code;
|
|
|
|
rce->misc_bits= 1;
|
|
|
|
|
|
|
|
bits= predict_size(&rcc->pred[pict_type], rce->qscale, sqrt(var));
|
|
|
|
if(pict_type== I_TYPE){
|
|
|
|
rce->i_count = s->mb_num;
|
|
|
|
rce->i_tex_bits= bits;
|
|
|
|
rce->p_tex_bits= 0;
|
|
|
|
rce->mv_bits= 0;
|
|
|
|
}else{
|
|
|
|
rce->i_count = 0; //FIXME we do know this approx
|
|
|
|
rce->i_tex_bits= 0;
|
|
|
|
rce->p_tex_bits= bits*0.9;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
rce->mv_bits= bits*0.1;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->i_cplx_sum [pict_type] += rce->i_tex_bits*rce->qscale;
|
|
|
|
rcc->p_cplx_sum [pict_type] += rce->p_tex_bits*rce->qscale;
|
|
|
|
rcc->mv_bits_sum[pict_type] += rce->mv_bits;
|
|
|
|
rcc->frame_count[pict_type] ++;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
bits= rce->i_tex_bits + rce->p_tex_bits;
|
2002-09-29 23:21:13 +00:00
|
|
|
rate_factor= rcc->pass1_wanted_bits/rcc->pass1_rc_eq_output_sum * br_compensation;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
q= get_qscale(s, rce, rate_factor, picture_number);
|
2006-09-26 14:04:36 +00:00
|
|
|
if (q < 0)
|
|
|
|
return -1;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-25 23:49:50 +00:00
|
|
|
assert(q>0.0);
|
2002-08-25 21:19:50 +00:00
|
|
|
//printf("%f ", q);
|
2002-09-18 18:28:11 +00:00
|
|
|
q= get_diff_limited_q(s, rce, q);
|
2002-08-25 21:19:50 +00:00
|
|
|
//printf("%f ", q);
|
|
|
|
assert(q>0.0);
|
|
|
|
|
|
|
|
if(pict_type==P_TYPE || s->intra_only){ //FIXME type dependant blur like in 2-pass
|
2003-12-13 20:41:33 +00:00
|
|
|
rcc->short_term_qsum*=a->qblur;
|
|
|
|
rcc->short_term_qcount*=a->qblur;
|
2002-08-25 21:19:50 +00:00
|
|
|
|
|
|
|
rcc->short_term_qsum+= q;
|
|
|
|
rcc->short_term_qcount++;
|
|
|
|
//printf("%f ", q);
|
|
|
|
q= short_term_q= rcc->short_term_qsum/rcc->short_term_qcount;
|
|
|
|
//printf("%f ", q);
|
|
|
|
}
|
2002-09-18 09:08:03 +00:00
|
|
|
assert(q>0.0);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
q= modify_qscale(s, rce, q, picture_number);
|
|
|
|
|
|
|
|
rcc->pass1_wanted_bits+= s->bit_rate/fps;
|
|
|
|
|
2002-08-25 23:49:50 +00:00
|
|
|
assert(q>0.0);
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2002-12-17 11:25:29 +00:00
|
|
|
|
|
|
|
if(s->avctx->debug&FF_DEBUG_RC){
|
2003-11-03 13:26:22 +00:00
|
|
|
av_log(s->avctx, AV_LOG_DEBUG, "%c qp:%d<%2.1f<%d %d want:%d total:%d comp:%f st_q:%2.2f size:%d var:%d/%d br:%d fps:%d\n",
|
2003-05-14 23:08:01 +00:00
|
|
|
av_get_pict_type_char(pict_type), qmin, q, qmax, picture_number, (int)wanted_bits/1000, (int)s->total_bits/1000,
|
2002-12-17 11:25:29 +00:00
|
|
|
br_compensation, short_term_q, s->frame_bits, pic->mb_var_sum, pic->mc_mb_var_sum, s->bit_rate/1000, (int)fps
|
|
|
|
);
|
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
if (q<qmin) q=qmin;
|
2002-08-25 21:19:50 +00:00
|
|
|
else if(q>qmax) q=qmax;
|
|
|
|
|
2002-09-23 14:56:11 +00:00
|
|
|
if(s->adaptive_quant)
|
|
|
|
adaptive_quantization(s, q);
|
|
|
|
else
|
|
|
|
q= (int)(q + 0.5);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2005-12-19 13:41:27 +00:00
|
|
|
if(!dry_run){
|
|
|
|
rcc->last_qscale= q;
|
|
|
|
rcc->last_mc_mb_var_sum= pic->mc_mb_var_sum;
|
|
|
|
rcc->last_mb_var_sum= pic->mb_var_sum;
|
|
|
|
}
|
2002-12-04 10:04:03 +00:00
|
|
|
#if 0
|
|
|
|
{
|
|
|
|
static int mvsum=0, texsum=0;
|
|
|
|
mvsum += s->mv_bits;
|
|
|
|
texsum += s->i_tex_bits + s->p_tex_bits;
|
|
|
|
printf("%d %d//\n\n", mvsum, texsum);
|
|
|
|
}
|
|
|
|
#endif
|
2002-09-23 14:56:11 +00:00
|
|
|
return q;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------
|
|
|
|
// 2-Pass code
|
|
|
|
|
|
|
|
static int init_pass2(MpegEncContext *s)
|
|
|
|
{
|
|
|
|
RateControlContext *rcc= &s->rc_context;
|
2003-12-13 20:41:33 +00:00
|
|
|
AVCodecContext *a= s->avctx;
|
2006-09-05 15:46:06 +00:00
|
|
|
int i, toobig;
|
2005-04-30 21:43:59 +00:00
|
|
|
double fps= 1/av_q2d(s->avctx->time_base);
|
2002-04-21 21:18:17 +00:00
|
|
|
double complexity[5]={0,0,0,0,0}; // aproximate bits at quant=1
|
|
|
|
uint64_t const_bits[5]={0,0,0,0,0}; // quantizer idependant bits
|
|
|
|
uint64_t all_const_bits;
|
|
|
|
uint64_t all_available_bits= (uint64_t)(s->bit_rate*(double)rcc->num_entries/fps);
|
|
|
|
double rate_factor=0;
|
|
|
|
double step;
|
2003-01-01 15:10:45 +00:00
|
|
|
//int last_i_frame=-10000000;
|
2005-12-17 18:14:38 +00:00
|
|
|
const int filter_size= (int)(a->qblur*4) | 1;
|
2002-08-25 21:19:50 +00:00
|
|
|
double expected_bits;
|
2006-09-05 15:46:06 +00:00
|
|
|
double *qscale, *blured_qscale, qscale_sum;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
|
|
|
/* find complexity & const_bits & decide the pict_types */
|
|
|
|
for(i=0; i<rcc->num_entries; i++){
|
|
|
|
RateControlEntry *rce= &rcc->entry[i];
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-12-06 13:30:13 +00:00
|
|
|
rce->new_pict_type= rce->pict_type;
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->i_cplx_sum [rce->pict_type] += rce->i_tex_bits*rce->qscale;
|
|
|
|
rcc->p_cplx_sum [rce->pict_type] += rce->p_tex_bits*rce->qscale;
|
|
|
|
rcc->mv_bits_sum[rce->pict_type] += rce->mv_bits;
|
|
|
|
rcc->frame_count[rce->pict_type] ++;
|
2002-04-21 21:18:17 +00:00
|
|
|
|
|
|
|
complexity[rce->new_pict_type]+= (rce->i_tex_bits+ rce->p_tex_bits)*(double)rce->qscale;
|
|
|
|
const_bits[rce->new_pict_type]+= rce->mv_bits + rce->misc_bits;
|
|
|
|
}
|
|
|
|
all_const_bits= const_bits[I_TYPE] + const_bits[P_TYPE] + const_bits[B_TYPE];
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
if(all_available_bits < all_const_bits){
|
2006-09-04 17:08:20 +00:00
|
|
|
av_log(s->avctx, AV_LOG_ERROR, "requested bitrate is too low\n");
|
2002-04-21 21:18:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2003-01-23 23:03:09 +00:00
|
|
|
qscale= av_malloc(sizeof(double)*rcc->num_entries);
|
|
|
|
blured_qscale= av_malloc(sizeof(double)*rcc->num_entries);
|
2006-09-05 15:46:06 +00:00
|
|
|
toobig = 0;
|
2002-08-25 21:19:50 +00:00
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
for(step=256*256; step>0.0000001; step*=0.5){
|
2002-08-25 21:19:50 +00:00
|
|
|
expected_bits=0;
|
2002-04-21 21:18:17 +00:00
|
|
|
rate_factor+= step;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
rcc->buffer_index= s->avctx->rc_buffer_size/2;
|
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
/* find qscale */
|
|
|
|
for(i=0; i<rcc->num_entries; i++){
|
2002-08-25 21:19:50 +00:00
|
|
|
qscale[i]= get_qscale(s, &rcc->entry[i], rate_factor, i);
|
|
|
|
}
|
|
|
|
assert(filter_size%2==1);
|
|
|
|
|
|
|
|
/* fixed I/B QP relative to P mode */
|
|
|
|
for(i=rcc->num_entries-1; i>=0; i--){
|
2002-04-21 21:18:17 +00:00
|
|
|
RateControlEntry *rce= &rcc->entry[i];
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-09-18 18:28:11 +00:00
|
|
|
qscale[i]= get_diff_limited_q(s, rce, qscale[i]);
|
2002-08-25 21:19:50 +00:00
|
|
|
}
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
/* smooth curve */
|
|
|
|
for(i=0; i<rcc->num_entries; i++){
|
|
|
|
RateControlEntry *rce= &rcc->entry[i];
|
|
|
|
const int pict_type= rce->new_pict_type;
|
|
|
|
int j;
|
|
|
|
double q=0.0, sum=0.0;
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
for(j=0; j<filter_size; j++){
|
|
|
|
int index= i+j-filter_size/2;
|
|
|
|
double d= index-i;
|
2003-12-13 20:41:33 +00:00
|
|
|
double coeff= a->qblur==0 ? 1.0 : exp(-d*d/(a->qblur * a->qblur));
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
if(index < 0 || index >= rcc->num_entries) continue;
|
|
|
|
if(pict_type != rcc->entry[index].new_pict_type) continue;
|
|
|
|
q+= qscale[index] * coeff;
|
|
|
|
sum+= coeff;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2002-08-25 21:19:50 +00:00
|
|
|
blured_qscale[i]= q/sum;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
/* find expected bits */
|
|
|
|
for(i=0; i<rcc->num_entries; i++){
|
|
|
|
RateControlEntry *rce= &rcc->entry[i];
|
2002-08-25 21:19:50 +00:00
|
|
|
double bits;
|
|
|
|
rce->new_qscale= modify_qscale(s, rce, blured_qscale[i], i);
|
2002-08-26 08:14:36 +00:00
|
|
|
bits= qp2bits(rce, rce->new_qscale) + rce->mv_bits + rce->misc_bits;
|
2002-08-25 21:19:50 +00:00
|
|
|
//printf("%d %f\n", rce->new_bits, blured_qscale[i]);
|
2003-12-12 21:30:47 +00:00
|
|
|
bits += 8*ff_vbv_update(s, bits);
|
2002-08-25 21:19:50 +00:00
|
|
|
|
2002-04-21 21:18:17 +00:00
|
|
|
rce->expected_bits= expected_bits;
|
2002-08-25 21:19:50 +00:00
|
|
|
expected_bits += bits;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
|
|
|
|
2006-09-05 15:46:06 +00:00
|
|
|
/*
|
|
|
|
av_log(s->avctx, AV_LOG_INFO,
|
|
|
|
"expected_bits: %f all_available_bits: %d rate_factor: %f\n",
|
|
|
|
expected_bits, (int)all_available_bits, rate_factor);
|
|
|
|
*/
|
|
|
|
if(expected_bits > all_available_bits) {
|
|
|
|
rate_factor-= step;
|
|
|
|
++toobig;
|
|
|
|
}
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
2003-01-23 23:03:09 +00:00
|
|
|
av_free(qscale);
|
|
|
|
av_free(blured_qscale);
|
2002-04-21 21:18:17 +00:00
|
|
|
|
2006-09-05 15:46:06 +00:00
|
|
|
/* check bitrate calculations and print info */
|
|
|
|
qscale_sum = 0.0;
|
|
|
|
for(i=0; i<rcc->num_entries; i++){
|
|
|
|
/* av_log(s->avctx, AV_LOG_DEBUG, "[lavc rc] entry[%d].new_qscale = %.3f qp = %.3f\n",
|
|
|
|
i, rcc->entry[i].new_qscale, rcc->entry[i].new_qscale / FF_QP2LAMBDA); */
|
|
|
|
qscale_sum += clip(rcc->entry[i].new_qscale / FF_QP2LAMBDA, s->avctx->qmin, s->avctx->qmax);
|
|
|
|
}
|
|
|
|
assert(toobig <= 40);
|
|
|
|
av_log(s->avctx, AV_LOG_DEBUG,
|
|
|
|
"[lavc rc] requested bitrate: %d bps expected bitrate: %d bps\n",
|
|
|
|
s->bit_rate,
|
|
|
|
(int)(expected_bits / ((double)all_available_bits/s->bit_rate)));
|
|
|
|
av_log(s->avctx, AV_LOG_DEBUG,
|
|
|
|
"[lavc rc] estimated target average qp: %.3f\n",
|
|
|
|
(float)qscale_sum / rcc->num_entries);
|
|
|
|
if (toobig == 0) {
|
|
|
|
av_log(s->avctx, AV_LOG_INFO,
|
|
|
|
"[lavc rc] Using all of requested bitrate is not "
|
|
|
|
"necessary for this video with these parameters.\n");
|
|
|
|
} else if (toobig == 40) {
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR,
|
|
|
|
"[lavc rc] Error: bitrate too low for this video "
|
|
|
|
"with these parameters.\n");
|
|
|
|
return -1;
|
|
|
|
} else if (fabs(expected_bits/all_available_bits - 1.0) > 0.01) {
|
|
|
|
av_log(s->avctx, AV_LOG_ERROR,
|
|
|
|
"[lavc rc] Error: 2pass curve failed to converge\n");
|
2002-08-25 21:19:50 +00:00
|
|
|
return -1;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|
|
|
|
|
2002-08-25 21:19:50 +00:00
|
|
|
return 0;
|
2002-04-21 21:18:17 +00:00
|
|
|
}
|