annotate ratecontrol.c @ 1505:010f76d07a27 libavcodec

use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken quality which was 1..31 float is now a 1..FF_LAMBDA_MAX int, and FF_QP2LAMBDA * qp can be used to convert to the new range
author michaelni
date Tue, 07 Oct 2003 11:32:40 +0000
parents c4539ef4d8cb
children 932d306bf1dc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
1 /*
428
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
2 * Rate control for video encoders
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
3 *
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
4 * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at>
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
5 *
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
6 * This library is free software; you can redistribute it and/or
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
8 * License as published by the Free Software Foundation; either
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
9 * version 2 of the License, or (at your option) any later version.
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
10 *
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
11 * This library is distributed in the hope that it will be useful,
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
14 * Lesser General Public License for more details.
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
15 *
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
17 * License along with this library; if not, write to the Free Software
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
19 */
1106
1e39f273ecd6 per file doxy
michaelni
parents: 1057
diff changeset
20
1e39f273ecd6 per file doxy
michaelni
parents: 1057
diff changeset
21 /**
1e39f273ecd6 per file doxy
michaelni
parents: 1057
diff changeset
22 * @file ratecontrol.c
1e39f273ecd6 per file doxy
michaelni
parents: 1057
diff changeset
23 * Rate control for video encoders.
1e39f273ecd6 per file doxy
michaelni
parents: 1057
diff changeset
24 */
1e39f273ecd6 per file doxy
michaelni
parents: 1057
diff changeset
25
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
26 #include "avcodec.h"
428
dd4f4c3d7171 consistent include usage
glantau
parents: 396
diff changeset
27 #include "dsputil.h"
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
28 #include "mpegvideo.h"
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
29
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
30 #undef NDEBUG // allways check asserts, the speed effect is far too small to disable them
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
31 #include <assert.h>
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
32
627
79c43f519d02 undefined M_PI / M_E fix
michaelni
parents: 620
diff changeset
33 #ifndef M_E
79c43f519d02 undefined M_PI / M_E fix
michaelni
parents: 620
diff changeset
34 #define M_E 2.718281828
79c43f519d02 undefined M_PI / M_E fix
michaelni
parents: 620
diff changeset
35 #endif
79c43f519d02 undefined M_PI / M_E fix
michaelni
parents: 620
diff changeset
36
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
37 static int init_pass2(MpegEncContext *s);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
38 static double get_qscale(MpegEncContext *s, RateControlEntry *rce, double rate_factor, int frame_num);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
39
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
40 void ff_write_pass1_stats(MpegEncContext *s){
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
41 sprintf(s->avctx->stats_out, "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;\n",
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
42 s->picture_number, s->input_picture_number - s->max_b_frames, s->pict_type,
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
43 s->current_picture.quality, s->i_tex_bits, s->p_tex_bits, s->mv_bits, s->misc_bits,
903
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
44 s->f_code, s->b_code, s->current_picture.mc_mb_var_sum, s->current_picture.mb_var_sum, s->i_count);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
45 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
46
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
47 int ff_rate_control_init(MpegEncContext *s)
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
48 {
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
49 RateControlContext *rcc= &s->rc_context;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
50 int i;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
51 emms_c();
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
52
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
53 for(i=0; i<5; i++){
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
54 rcc->pred[i].coeff= FF_QP2LAMBDA * 7.0;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
55 rcc->pred[i].count= 1.0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
56
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
57 rcc->pred[i].decay= 0.4;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
58 rcc->i_cplx_sum [i]=
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
59 rcc->p_cplx_sum [i]=
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
60 rcc->mv_bits_sum[i]=
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
61 rcc->qscale_sum [i]=
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
62 rcc->frame_count[i]= 1; // 1 is better cuz of 1/0 and such
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
63 rcc->last_qscale_for[i]=FF_QP2LAMBDA * 5;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
64 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
65 rcc->buffer_index= s->avctx->rc_buffer_size/2;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
66
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
67 if(s->flags&CODEC_FLAG_PASS2){
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
68 int i;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
69 char *p;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
70
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
71 /* find number of pics */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
72 p= s->avctx->stats_in;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
73 for(i=-1; p; i++){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
74 p= strchr(p+1, ';');
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
75 }
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
76 i+= s->max_b_frames;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
77 rcc->entry = (RateControlEntry*)av_mallocz(i*sizeof(RateControlEntry));
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
78 rcc->num_entries= i;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
79
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
80 /* init all to skiped p frames (with b frames we might have a not encoded frame at the end FIXME) */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
81 for(i=0; i<rcc->num_entries; i++){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
82 RateControlEntry *rce= &rcc->entry[i];
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
83 rce->pict_type= rce->new_pict_type=P_TYPE;
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
84 rce->qscale= rce->new_qscale=FF_QP2LAMBDA * 2;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
85 rce->misc_bits= s->mb_num + 10;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
86 rce->mb_var_sum= s->mb_num*100;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
87 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
88
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
89 /* read stats */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
90 p= s->avctx->stats_in;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
91 for(i=0; i<rcc->num_entries - s->max_b_frames; i++){
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
92 RateControlEntry *rce;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
93 int picture_number;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
94 int e;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
95 char *next;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
96
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
97 next= strchr(p, ';');
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
98 if(next){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
99 (*next)=0; //sscanf in unbelieavle slow on looong strings //FIXME copy / dont write
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
100 next++;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
101 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
102 e= sscanf(p, " in:%d ", &picture_number);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
103
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
104 assert(picture_number >= 0);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
105 assert(picture_number < rcc->num_entries);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
106 rce= &rcc->entry[picture_number];
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
107
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
108 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",
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
109 &rce->pict_type, &rce->qscale, &rce->i_tex_bits, &rce->p_tex_bits, &rce->mv_bits, &rce->misc_bits,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
110 &rce->f_code, &rce->b_code, &rce->mc_mb_var_sum, &rce->mb_var_sum, &rce->i_count);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
111 if(e!=12){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
112 fprintf(stderr, "statistics are damaged at line %d, parser out=%d\n", i, e);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
113 return -1;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
114 }
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
115 p= next;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
116 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
117
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
118 if(init_pass2(s) < 0) return -1;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
119 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
120
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
121 if(!(s->flags&CODEC_FLAG_PASS2)){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
122
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
123 rcc->short_term_qsum=0.001;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
124 rcc->short_term_qcount=0.001;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
125
707
c0a914cc90c0 renaming variable
michaelni
parents: 693
diff changeset
126 rcc->pass1_rc_eq_output_sum= 0.001;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
127 rcc->pass1_wanted_bits=0.001;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
128
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
129 /* init stuff with the user specified complexity */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
130 if(s->avctx->rc_initial_cplx){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
131 for(i=0; i<60*30; i++){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
132 double bits= s->avctx->rc_initial_cplx * (i/10000.0 + 1.0)*s->mb_num;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
133 RateControlEntry rce;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
134 double q;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
135
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
136 if (i%((s->gop_size+3)/4)==0) rce.pict_type= I_TYPE;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
137 else if(i%(s->max_b_frames+1)) rce.pict_type= B_TYPE;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
138 else rce.pict_type= P_TYPE;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
139
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
140 rce.new_pict_type= rce.pict_type;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
141 rce.mc_mb_var_sum= bits*s->mb_num/100000;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
142 rce.mb_var_sum = s->mb_num;
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
143 rce.qscale = FF_QP2LAMBDA * 2;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
144 rce.f_code = 2;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
145 rce.b_code = 1;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
146 rce.misc_bits= 1;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
147
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
148 if(s->pict_type== I_TYPE){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
149 rce.i_count = s->mb_num;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
150 rce.i_tex_bits= bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
151 rce.p_tex_bits= 0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
152 rce.mv_bits= 0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
153 }else{
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
154 rce.i_count = 0; //FIXME we do know this approx
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
155 rce.i_tex_bits= 0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
156 rce.p_tex_bits= bits*0.9;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
157 rce.mv_bits= bits*0.1;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
158 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
159 rcc->i_cplx_sum [rce.pict_type] += rce.i_tex_bits*rce.qscale;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
160 rcc->p_cplx_sum [rce.pict_type] += rce.p_tex_bits*rce.qscale;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
161 rcc->mv_bits_sum[rce.pict_type] += rce.mv_bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
162 rcc->frame_count[rce.pict_type] ++;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
163
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
164 bits= rce.i_tex_bits + rce.p_tex_bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
165
707
c0a914cc90c0 renaming variable
michaelni
parents: 693
diff changeset
166 q= get_qscale(s, &rce, rcc->pass1_wanted_bits/rcc->pass1_rc_eq_output_sum, i);
1126
77ccf7fe3bd0 per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents: 1106
diff changeset
167 rcc->pass1_wanted_bits+= s->bit_rate/(s->avctx->frame_rate / (double)s->avctx->frame_rate_base);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
168 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
169 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
170
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
171 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
172
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
173 return 0;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
174 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
175
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
176 void ff_rate_control_uninit(MpegEncContext *s)
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
177 {
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
178 RateControlContext *rcc= &s->rc_context;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
179 emms_c();
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
180
396
fce0a2520551 removed useless header includes - use av memory functions
glantau
parents: 388
diff changeset
181 av_freep(&rcc->entry);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
182 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
183
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
184 static inline double qp2bits(RateControlEntry *rce, double qp){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
185 if(qp<=0.0){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
186 fprintf(stderr, "qp<=0.0\n");
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
187 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
188 return rce->qscale * (double)(rce->i_tex_bits + rce->p_tex_bits+1)/ qp;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
189 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
190
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
191 static inline double bits2qp(RateControlEntry *rce, double bits){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
192 if(bits<0.9){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
193 fprintf(stderr, "bits<0.9\n");
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
194 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
195 return rce->qscale * (double)(rce->i_tex_bits + rce->p_tex_bits+1)/ bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
196 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
197
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
198 static void update_rc_buffer(MpegEncContext *s, int frame_size){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
199 RateControlContext *rcc= &s->rc_context;
1126
77ccf7fe3bd0 per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents: 1106
diff changeset
200 const double fps= (double)s->avctx->frame_rate / (double)s->avctx->frame_rate_base;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
201 const double buffer_size= s->avctx->rc_buffer_size;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
202 const double min_rate= s->avctx->rc_min_rate/fps;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
203 const double max_rate= s->avctx->rc_max_rate/fps;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
204
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
205 if(buffer_size){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
206 rcc->buffer_index-= frame_size;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
207 if(rcc->buffer_index < buffer_size/2 /*FIXME /2 */ || min_rate==0){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
208 rcc->buffer_index+= max_rate;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
209 if(rcc->buffer_index >= buffer_size)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
210 rcc->buffer_index= buffer_size-1;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
211 }else{
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
212 rcc->buffer_index+= min_rate;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
213 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
214
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
215 if(rcc->buffer_index < 0)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
216 fprintf(stderr, "rc buffer underflow\n");
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
217 if(rcc->buffer_index >= s->avctx->rc_buffer_size)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
218 fprintf(stderr, "rc buffer overflow\n");
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
219 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
220 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
221
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
222 /**
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
223 * modifies the bitrate curve from pass1 for one frame
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
224 */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
225 static double get_qscale(MpegEncContext *s, RateControlEntry *rce, double rate_factor, int frame_num){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
226 RateControlContext *rcc= &s->rc_context;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
227 double q, bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
228 const int pict_type= rce->new_pict_type;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
229 const double mb_num= s->mb_num;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
230 int i;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
231
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
232 double const_values[]={
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
233 M_PI,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
234 M_E,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
235 rce->i_tex_bits*rce->qscale,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
236 rce->p_tex_bits*rce->qscale,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
237 (rce->i_tex_bits + rce->p_tex_bits)*(double)rce->qscale,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
238 rce->mv_bits/mb_num,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
239 rce->pict_type == B_TYPE ? (rce->f_code + rce->b_code)*0.5 : rce->f_code,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
240 rce->i_count/mb_num,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
241 rce->mc_mb_var_sum/mb_num,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
242 rce->mb_var_sum/mb_num,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
243 rce->pict_type == I_TYPE,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
244 rce->pict_type == P_TYPE,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
245 rce->pict_type == B_TYPE,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
246 rcc->qscale_sum[pict_type] / (double)rcc->frame_count[pict_type],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
247 s->qcompress,
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
248 /* rcc->last_qscale_for[I_TYPE],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
249 rcc->last_qscale_for[P_TYPE],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
250 rcc->last_qscale_for[B_TYPE],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
251 rcc->next_non_b_qscale,*/
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
252 rcc->i_cplx_sum[I_TYPE] / (double)rcc->frame_count[I_TYPE],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
253 rcc->i_cplx_sum[P_TYPE] / (double)rcc->frame_count[P_TYPE],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
254 rcc->p_cplx_sum[P_TYPE] / (double)rcc->frame_count[P_TYPE],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
255 rcc->p_cplx_sum[B_TYPE] / (double)rcc->frame_count[B_TYPE],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
256 (rcc->i_cplx_sum[pict_type] + rcc->p_cplx_sum[pict_type]) / (double)rcc->frame_count[pict_type],
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
257 0
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
258 };
1057
bb5de8a59da8 * static,const,compiler warning cleanup
kabi
parents: 1031
diff changeset
259 static const char *const_names[]={
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
260 "PI",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
261 "E",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
262 "iTex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
263 "pTex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
264 "tex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
265 "mv",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
266 "fCode",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
267 "iCount",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
268 "mcVar",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
269 "var",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
270 "isI",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
271 "isP",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
272 "isB",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
273 "avgQP",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
274 "qComp",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
275 /* "lastIQP",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
276 "lastPQP",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
277 "lastBQP",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
278 "nextNonBQP",*/
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
279 "avgIITex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
280 "avgPITex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
281 "avgPPTex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
282 "avgBPTex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
283 "avgTex",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
284 NULL
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
285 };
620
a5aa53b6e648 warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
michaelni
parents: 616
diff changeset
286 static double (*func1[])(void *, double)={
749
07e58dc635a5 removed warnings
bellard
parents: 707
diff changeset
287 (void *)bits2qp,
07e58dc635a5 removed warnings
bellard
parents: 707
diff changeset
288 (void *)qp2bits,
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
289 NULL
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
290 };
1057
bb5de8a59da8 * static,const,compiler warning cleanup
kabi
parents: 1031
diff changeset
291 static const char *func1_names[]={
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
292 "bits2qp",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
293 "qp2bits",
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
294 NULL
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
295 };
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
296
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
297 bits= ff_eval(s->avctx->rc_eq, const_values, const_names, func1, func1_names, NULL, NULL, rce);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
298
707
c0a914cc90c0 renaming variable
michaelni
parents: 693
diff changeset
299 rcc->pass1_rc_eq_output_sum+= bits;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
300 bits*=rate_factor;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
301 if(bits<0.0) bits=0.0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
302 bits+= 1.0; //avoid 1/0 issues
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
303
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
304 /* user override */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
305 for(i=0; i<s->avctx->rc_override_count; i++){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
306 RcOverride *rco= s->avctx->rc_override;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
307 if(rco[i].start_frame > frame_num) continue;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
308 if(rco[i].end_frame < frame_num) continue;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
309
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
310 if(rco[i].qscale)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
311 bits= qp2bits(rce, rco[i].qscale); //FIXME move at end to really force it?
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
312 else
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
313 bits*= rco[i].quality_factor;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
314 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
315
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
316 q= bits2qp(rce, bits);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
317
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
318 /* I/B difference */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
319 if (pict_type==I_TYPE && s->avctx->i_quant_factor<0.0)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
320 q= -q*s->avctx->i_quant_factor + s->avctx->i_quant_offset;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
321 else if(pict_type==B_TYPE && s->avctx->b_quant_factor<0.0)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
322 q= -q*s->avctx->b_quant_factor + s->avctx->b_quant_offset;
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
323
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
324 return q;
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
325 }
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
326
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
327 static double get_diff_limited_q(MpegEncContext *s, RateControlEntry *rce, double q){
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
328 RateControlContext *rcc= &s->rc_context;
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
329 AVCodecContext *a= s->avctx;
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
330 const int pict_type= rce->new_pict_type;
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
331 const double last_p_q = rcc->last_qscale_for[P_TYPE];
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
332 const double last_non_b_q= rcc->last_qscale_for[rcc->last_non_b_pict_type];
930
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
333
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
334 if (pict_type==I_TYPE && (a->i_quant_factor>0.0 || rcc->last_non_b_pict_type==P_TYPE))
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
335 q= last_p_q *ABS(a->i_quant_factor) + a->i_quant_offset;
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
336 else if(pict_type==B_TYPE && a->b_quant_factor>0.0)
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
337 q= last_non_b_q* a->b_quant_factor + a->b_quant_offset;
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
338
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
339 /* last qscale / qdiff stuff */
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
340 if(rcc->last_non_b_pict_type==pict_type || pict_type!=I_TYPE){
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
341 double last_q= rcc->last_qscale_for[pict_type];
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
342 const int maxdiff= FF_QP2LAMBDA * a->max_qdiff;
930
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
343
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
344 if (q > last_q + maxdiff) q= last_q + maxdiff;
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
345 else if(q < last_q - maxdiff) q= last_q - maxdiff;
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
346 }
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
347
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
348 rcc->last_qscale_for[pict_type]= q; //Note we cant do that after blurring
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
349
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
350 if(pict_type!=B_TYPE)
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
351 rcc->last_non_b_pict_type= pict_type;
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
352
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
353 return q;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
354 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
355
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
356 /**
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
357 * gets the qmin & qmax for pict_type
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
358 */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
359 static void get_qminmax(int *qmin_ret, int *qmax_ret, MpegEncContext *s, int pict_type){
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
360 int qmin= s->avctx->lmin;
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
361 int qmax= s->avctx->lmax;
1365
d58fa7cc6008 fix qmin==qmax==1 && msmpeg4 && intra bug
michaelni
parents: 1264
diff changeset
362
d58fa7cc6008 fix qmin==qmax==1 && msmpeg4 && intra bug
michaelni
parents: 1264
diff changeset
363 assert(qmin <= qmax);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
364
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
365 if(pict_type==B_TYPE){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
366 qmin= (int)(qmin*ABS(s->avctx->b_quant_factor)+s->avctx->b_quant_offset + 0.5);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
367 qmax= (int)(qmax*ABS(s->avctx->b_quant_factor)+s->avctx->b_quant_offset + 0.5);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
368 }else if(pict_type==I_TYPE){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
369 qmin= (int)(qmin*ABS(s->avctx->i_quant_factor)+s->avctx->i_quant_offset + 0.5);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
370 qmax= (int)(qmax*ABS(s->avctx->i_quant_factor)+s->avctx->i_quant_offset + 0.5);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
371 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
372
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
373 qmin= clip(qmin, 1, FF_LAMBDA_MAX);
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
374 qmax= clip(qmax, 1, FF_LAMBDA_MAX);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
375
1365
d58fa7cc6008 fix qmin==qmax==1 && msmpeg4 && intra bug
michaelni
parents: 1264
diff changeset
376 if(qmax<qmin) qmax= qmin;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
377
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
378 *qmin_ret= qmin;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
379 *qmax_ret= qmax;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
380 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
381
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
382 static double modify_qscale(MpegEncContext *s, RateControlEntry *rce, double q, int frame_num){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
383 RateControlContext *rcc= &s->rc_context;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
384 int qmin, qmax;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
385 double bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
386 const int pict_type= rce->new_pict_type;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
387 const double buffer_size= s->avctx->rc_buffer_size;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
388 const double min_rate= s->avctx->rc_min_rate;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
389 const double max_rate= s->avctx->rc_max_rate;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
390
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
391 get_qminmax(&qmin, &qmax, s, pict_type);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
392
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
393 /* modulation */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
394 if(s->avctx->rc_qmod_freq && frame_num%s->avctx->rc_qmod_freq==0 && pict_type==P_TYPE)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
395 q*= s->avctx->rc_qmod_amp;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
396
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
397 bits= qp2bits(rce, q);
678
michaelni
parents: 627
diff changeset
398 //printf("q:%f\n", q);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
399 /* buffer overflow/underflow protection */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
400 if(buffer_size){
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
401 double expected_size= rcc->buffer_index;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
402
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
403 if(min_rate){
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
404 double d= 2*(buffer_size - expected_size)/buffer_size;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
405 if(d>1.0) d=1.0;
678
michaelni
parents: 627
diff changeset
406 else if(d<0.0001) d=0.0001;
michaelni
parents: 627
diff changeset
407 q*= pow(d, 1.0/s->avctx->rc_buffer_aggressivity);
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
408
847
f3c369b8ddca reversing header game
michaelni
parents: 749
diff changeset
409 q= FFMIN(q, bits2qp(rce, FFMAX((min_rate - buffer_size + rcc->buffer_index)*2, 1)));
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
410 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
411
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
412 if(max_rate){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
413 double d= 2*expected_size/buffer_size;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
414 if(d>1.0) d=1.0;
678
michaelni
parents: 627
diff changeset
415 else if(d<0.0001) d=0.0001;
michaelni
parents: 627
diff changeset
416 q/= pow(d, 1.0/s->avctx->rc_buffer_aggressivity);
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
417
847
f3c369b8ddca reversing header game
michaelni
parents: 749
diff changeset
418 q= FFMAX(q, bits2qp(rce, FFMAX(rcc->buffer_index/2, 1)));
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
419 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
420 }
678
michaelni
parents: 627
diff changeset
421 //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);
615
459a715f0661 fixing qmin==qmax && qsquish==1
michaelni
parents: 612
diff changeset
422 if(s->avctx->rc_qsquish==0.0 || qmin==qmax){
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
423 if (q<qmin) q=qmin;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
424 else if(q>qmax) q=qmax;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
425 }else{
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
426 double min2= log(qmin);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
427 double max2= log(qmax);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
428
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
429 q= log(q);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
430 q= (q - min2)/(max2-min2) - 0.5;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
431 q*= -4.0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
432 q= 1.0/(1.0 + exp(q));
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
433 q= q*(max2-min2) + min2;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
434
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
435 q= exp(q);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
436 }
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
437
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
438 return q;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
439 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
440
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
441 //----------------------------------
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
442 // 1 Pass Code
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
443
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
444 static double predict_size(Predictor *p, double q, double var)
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
445 {
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
446 return p->coeff*var / (q*p->count);
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
447 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
448
949
693a0797398f warnings patch by (bubu <bubu at bubu dot net>)
michaelni
parents: 932
diff changeset
449 /*
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
450 static double predict_qp(Predictor *p, double size, double var)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
451 {
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
452 //printf("coeff:%f, count:%f, var:%f, size:%f//\n", p->coeff, p->count, var, size);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
453 return p->coeff*var / (size*p->count);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
454 }
949
693a0797398f warnings patch by (bubu <bubu at bubu dot net>)
michaelni
parents: 932
diff changeset
455 */
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
456
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
457 static void update_predictor(Predictor *p, double q, double var, double size)
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
458 {
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
459 double new_coeff= size*q / (var + 1);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
460 if(var<10) return;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
461
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
462 p->count*= p->decay;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
463 p->coeff*= p->decay;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
464 p->count++;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
465 p->coeff+= new_coeff;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
466 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
467
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
468 static void adaptive_quantization(MpegEncContext *s, double q){
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
469 int i;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
470 const float lumi_masking= s->avctx->lumi_masking / (128.0*128.0);
693
b6a7ff92df57 darkness masking (lumi masking does only bright stuff now)
michaelni
parents: 690
diff changeset
471 const float dark_masking= s->avctx->dark_masking / (128.0*128.0);
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
472 const float temp_cplx_masking= s->avctx->temporal_cplx_masking;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
473 const float spatial_cplx_masking = s->avctx->spatial_cplx_masking;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
474 const float p_masking = s->avctx->p_masking;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
475 float bits_sum= 0.0;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
476 float cplx_sum= 0.0;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
477 float cplx_tab[s->mb_num];
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
478 float bits_tab[s->mb_num];
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
479 const int qmin= s->avctx->lmin;
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
480 const int qmax= s->avctx->lmax;
903
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
481 Picture * const pic= &s->current_picture;
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
482
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
483 for(i=0; i<s->mb_num; i++){
1180
ea015319b9e8 10l (adaptve quant fix)
michaelni
parents: 1141
diff changeset
484 const int mb_xy= s->mb_index2xy[i];
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
485 float temp_cplx= sqrt(pic->mc_mb_var[mb_xy]); //FIXME merge in pow()
1180
ea015319b9e8 10l (adaptve quant fix)
michaelni
parents: 1141
diff changeset
486 float spat_cplx= sqrt(pic->mb_var[mb_xy]);
ea015319b9e8 10l (adaptve quant fix)
michaelni
parents: 1141
diff changeset
487 const int lumi= pic->mb_mean[mb_xy];
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
488 float bits, cplx, factor;
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
489 #if 0
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
490 if(spat_cplx < q/3) spat_cplx= q/3; //FIXME finetune
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
491 if(temp_cplx < q/3) temp_cplx= q/3; //FIXME finetune
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
492 #endif
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
493 if(spat_cplx < 4) spat_cplx= 4; //FIXME finetune
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
494 if(temp_cplx < 4) temp_cplx= 4; //FIXME finetune
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
495
1180
ea015319b9e8 10l (adaptve quant fix)
michaelni
parents: 1141
diff changeset
496 if((s->mb_type[mb_xy]&MB_TYPE_INTRA)){//FIXME hq mode
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
497 cplx= spat_cplx;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
498 factor= 1.0 + p_masking;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
499 }else{
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
500 cplx= temp_cplx;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
501 factor= pow(temp_cplx, - temp_cplx_masking);
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
502 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
503 factor*=pow(spat_cplx, - spatial_cplx_masking);
693
b6a7ff92df57 darkness masking (lumi masking does only bright stuff now)
michaelni
parents: 690
diff changeset
504
b6a7ff92df57 darkness masking (lumi masking does only bright stuff now)
michaelni
parents: 690
diff changeset
505 if(lumi>127)
b6a7ff92df57 darkness masking (lumi masking does only bright stuff now)
michaelni
parents: 690
diff changeset
506 factor*= (1.0 - (lumi-128)*(lumi-128)*lumi_masking);
b6a7ff92df57 darkness masking (lumi masking does only bright stuff now)
michaelni
parents: 690
diff changeset
507 else
b6a7ff92df57 darkness masking (lumi masking does only bright stuff now)
michaelni
parents: 690
diff changeset
508 factor*= (1.0 - (lumi-128)*(lumi-128)*dark_masking);
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
509
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
510 if(factor<0.00001) factor= 0.00001;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
511
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
512 bits= cplx*factor;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
513 cplx_sum+= cplx;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
514 bits_sum+= bits;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
515 cplx_tab[i]= cplx;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
516 bits_tab[i]= bits;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
517 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
518
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
519 /* handle qmin/qmax cliping */
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
520 if(s->flags&CODEC_FLAG_NORMALIZE_AQP){
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
521 for(i=0; i<s->mb_num; i++){
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
522 float newq= q*cplx_tab[i]/bits_tab[i];
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
523 newq*= bits_sum/cplx_sum;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
524
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
525 if (newq > qmax){
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
526 bits_sum -= bits_tab[i];
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
527 cplx_sum -= cplx_tab[i]*q/qmax;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
528 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
529 else if(newq < qmin){
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
530 bits_sum -= bits_tab[i];
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
531 cplx_sum -= cplx_tab[i]*q/qmin;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
532 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
533 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
534 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
535
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
536 for(i=0; i<s->mb_num; i++){
1180
ea015319b9e8 10l (adaptve quant fix)
michaelni
parents: 1141
diff changeset
537 const int mb_xy= s->mb_index2xy[i];
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
538 float newq= q*cplx_tab[i]/bits_tab[i];
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
539 int intq;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
540
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
541 if(s->flags&CODEC_FLAG_NORMALIZE_AQP){
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
542 newq*= bits_sum/cplx_sum;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
543 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
544
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
545 intq= (int)(newq + 0.5);
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
546
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
547 if (intq > qmax) intq= qmax;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
548 else if(intq < qmin) intq= qmin;
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
549 //if(i%s->mb_width==0) printf("\n");
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
550 //printf("%2d%3d ", intq, ff_sqrt(s->mc_mb_var[i]));
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
551 s->lambda_table[mb_xy]= intq;
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
552 }
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
553 }
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
554 //FIXME rd or at least approx for dquant
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
555
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
556 float ff_rate_estimate_qscale(MpegEncContext *s)
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
557 {
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
558 float q;
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
559 int qmin, qmax;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
560 float br_compensation;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
561 double diff;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
562 double short_term_q;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
563 double fps;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
564 int picture_number= s->picture_number;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
565 int64_t wanted_bits;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
566 RateControlContext *rcc= &s->rc_context;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
567 RateControlEntry local_rce, *rce;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
568 double bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
569 double rate_factor;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
570 int var;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
571 const int pict_type= s->pict_type;
903
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
572 Picture * const pic= &s->current_picture;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
573 emms_c();
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
574
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
575 get_qminmax(&qmin, &qmax, s, pict_type);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
576
1126
77ccf7fe3bd0 per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents: 1106
diff changeset
577 fps= (double)s->avctx->frame_rate / (double)s->avctx->frame_rate_base;
678
michaelni
parents: 627
diff changeset
578 //printf("input_pic_num:%d pic_num:%d frame_rate:%d\n", s->input_picture_number, s->picture_number, s->frame_rate);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
579 /* update predictors */
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
580 if(picture_number>2){
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
581 const int last_var= s->last_pict_type == I_TYPE ? rcc->last_mb_var_sum : rcc->last_mc_mb_var_sum;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
582 update_predictor(&rcc->pred[s->last_pict_type], rcc->last_qscale, sqrt(last_var), s->frame_bits);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
583 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
584
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
585 if(s->flags&CODEC_FLAG_PASS2){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
586 assert(picture_number>=0);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
587 assert(picture_number<rcc->num_entries);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
588 rce= &rcc->entry[picture_number];
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
589 wanted_bits= rce->expected_bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
590 }else{
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
591 rce= &local_rce;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
592 wanted_bits= (uint64_t)(s->bit_rate*(double)picture_number/fps);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
593 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
594
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
595 diff= s->total_bits - wanted_bits;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
596 br_compensation= (s->bit_rate_tolerance - diff)/s->bit_rate_tolerance;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
597 if(br_compensation<=0.0) br_compensation=0.001;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
598
903
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
599 var= pict_type == I_TYPE ? pic->mb_var_sum : pic->mc_mb_var_sum;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
600
1455
c4539ef4d8cb removed warnings
bellard
parents: 1365
diff changeset
601 short_term_q = 0; /* avoid warning */
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
602 if(s->flags&CODEC_FLAG_PASS2){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
603 if(pict_type!=I_TYPE)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
604 assert(pict_type == rce->new_pict_type);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
605
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
606 q= rce->new_qscale / br_compensation;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
607 //printf("%f %f %f last:%d var:%d type:%d//\n", q, rce->new_qscale, br_compensation, s->frame_bits, var, pict_type);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
608 }else{
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
609 rce->pict_type=
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
610 rce->new_pict_type= pict_type;
903
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
611 rce->mc_mb_var_sum= pic->mc_mb_var_sum;
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
612 rce->mb_var_sum = pic-> mb_var_sum;
1505
010f76d07a27 use lagrange multipler instead of qp for ratecontrol, this may break some things, tell me ASAP if u notice anything broken
michaelni
parents: 1455
diff changeset
613 rce->qscale = FF_QP2LAMBDA * 2;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
614 rce->f_code = s->f_code;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
615 rce->b_code = s->b_code;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
616 rce->misc_bits= 1;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
617
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
618 if(picture_number>0)
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
619 update_rc_buffer(s, s->frame_bits);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
620
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
621 bits= predict_size(&rcc->pred[pict_type], rce->qscale, sqrt(var));
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
622 if(pict_type== I_TYPE){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
623 rce->i_count = s->mb_num;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
624 rce->i_tex_bits= bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
625 rce->p_tex_bits= 0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
626 rce->mv_bits= 0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
627 }else{
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
628 rce->i_count = 0; //FIXME we do know this approx
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
629 rce->i_tex_bits= 0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
630 rce->p_tex_bits= bits*0.9;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
631
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
632 rce->mv_bits= bits*0.1;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
633 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
634 rcc->i_cplx_sum [pict_type] += rce->i_tex_bits*rce->qscale;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
635 rcc->p_cplx_sum [pict_type] += rce->p_tex_bits*rce->qscale;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
636 rcc->mv_bits_sum[pict_type] += rce->mv_bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
637 rcc->frame_count[pict_type] ++;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
638
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
639 bits= rce->i_tex_bits + rce->p_tex_bits;
707
c0a914cc90c0 renaming variable
michaelni
parents: 693
diff changeset
640 rate_factor= rcc->pass1_wanted_bits/rcc->pass1_rc_eq_output_sum * br_compensation;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
641
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
642 q= get_qscale(s, rce, rate_factor, picture_number);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
643
615
459a715f0661 fixing qmin==qmax && qsquish==1
michaelni
parents: 612
diff changeset
644 assert(q>0.0);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
645 //printf("%f ", q);
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
646 q= get_diff_limited_q(s, rce, q);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
647 //printf("%f ", q);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
648 assert(q>0.0);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
649
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
650 if(pict_type==P_TYPE || s->intra_only){ //FIXME type dependant blur like in 2-pass
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
651 rcc->short_term_qsum*=s->qblur;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
652 rcc->short_term_qcount*=s->qblur;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
653
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
654 rcc->short_term_qsum+= q;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
655 rcc->short_term_qcount++;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
656 //printf("%f ", q);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
657 q= short_term_q= rcc->short_term_qsum/rcc->short_term_qcount;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
658 //printf("%f ", q);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
659 }
678
michaelni
parents: 627
diff changeset
660 assert(q>0.0);
michaelni
parents: 627
diff changeset
661
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
662 q= modify_qscale(s, rce, q, picture_number);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
663
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
664 rcc->pass1_wanted_bits+= s->bit_rate/fps;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
665
615
459a715f0661 fixing qmin==qmax && qsquish==1
michaelni
parents: 612
diff changeset
666 assert(q>0.0);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
667 }
930
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
668
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
669 if(s->avctx->debug&FF_DEBUG_RC){
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
670 printf("%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",
1264
2fa34e615c76 cleanup
michaelni
parents: 1180
diff changeset
671 av_get_pict_type_char(pict_type), qmin, q, qmax, picture_number, (int)wanted_bits/1000, (int)s->total_bits/1000,
930
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
672 br_compensation, short_term_q, s->frame_bits, pic->mb_var_sum, pic->mc_mb_var_sum, s->bit_rate/1000, (int)fps
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
673 );
6bcb214d6a17 more debug output
michaelni
parents: 915
diff changeset
674 }
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
675
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
676 if (q<qmin) q=qmin;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
677 else if(q>qmax) q=qmax;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
678
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
679 if(s->adaptive_quant)
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
680 adaptive_quantization(s, q);
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
681 else
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
682 q= (int)(q + 0.5);
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
683
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
684 rcc->last_qscale= q;
903
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
685 rcc->last_mc_mb_var_sum= pic->mc_mb_var_sum;
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
686 rcc->last_mb_var_sum= pic->mb_var_sum;
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
687 #if 0
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
688 {
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
689 static int mvsum=0, texsum=0;
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
690 mvsum += s->mv_bits;
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
691 texsum += s->i_tex_bits + s->p_tex_bits;
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
692 printf("%d %d//\n\n", mvsum, texsum);
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
693 }
22ee74da2cd3 cleanup
michaelni
parents: 847
diff changeset
694 #endif
690
a1c69cb685b3 adaptive quantization (lumi/temporal & spatial complexity masking)
michaelni
parents: 679
diff changeset
695 return q;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
696 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
697
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
698 //----------------------------------------------
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
699 // 2-Pass code
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
700
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
701 static int init_pass2(MpegEncContext *s)
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
702 {
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
703 RateControlContext *rcc= &s->rc_context;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
704 int i;
1126
77ccf7fe3bd0 per context frame_rate_base, this should finally fix frame_rate related av sync issues
michaelni
parents: 1106
diff changeset
705 double fps= (double)s->avctx->frame_rate / (double)s->avctx->frame_rate_base;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
706 double complexity[5]={0,0,0,0,0}; // aproximate bits at quant=1
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
707 double avg_quantizer[5];
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
708 uint64_t const_bits[5]={0,0,0,0,0}; // quantizer idependant bits
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
709 uint64_t available_bits[5];
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
710 uint64_t all_const_bits;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
711 uint64_t all_available_bits= (uint64_t)(s->bit_rate*(double)rcc->num_entries/fps);
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
712 double rate_factor=0;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
713 double step;
949
693a0797398f warnings patch by (bubu <bubu at bubu dot net>)
michaelni
parents: 932
diff changeset
714 //int last_i_frame=-10000000;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
715 const int filter_size= (int)(s->qblur*4) | 1;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
716 double expected_bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
717 double *qscale, *blured_qscale;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
718
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
719 /* find complexity & const_bits & decide the pict_types */
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
720 for(i=0; i<rcc->num_entries; i++){
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
721 RateControlEntry *rce= &rcc->entry[i];
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
722
915
75ee49a4a516 fixing 2pass assert failure
michaelni
parents: 903
diff changeset
723 rce->new_pict_type= rce->pict_type;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
724 rcc->i_cplx_sum [rce->pict_type] += rce->i_tex_bits*rce->qscale;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
725 rcc->p_cplx_sum [rce->pict_type] += rce->p_tex_bits*rce->qscale;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
726 rcc->mv_bits_sum[rce->pict_type] += rce->mv_bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
727 rcc->frame_count[rce->pict_type] ++;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
728
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
729 complexity[rce->new_pict_type]+= (rce->i_tex_bits+ rce->p_tex_bits)*(double)rce->qscale;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
730 const_bits[rce->new_pict_type]+= rce->mv_bits + rce->misc_bits;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
731 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
732 all_const_bits= const_bits[I_TYPE] + const_bits[P_TYPE] + const_bits[B_TYPE];
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
733
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
734 if(all_available_bits < all_const_bits){
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
735 fprintf(stderr, "requested bitrate is to low\n");
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
736 return -1;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
737 }
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
738
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
739 /* find average quantizers */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
740 avg_quantizer[P_TYPE]=0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
741 for(step=256*256; step>0.0000001; step*=0.5){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
742 double expected_bits=0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
743 avg_quantizer[P_TYPE]+= step;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
744
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
745 avg_quantizer[I_TYPE]= avg_quantizer[P_TYPE]*ABS(s->avctx->i_quant_factor) + s->avctx->i_quant_offset;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
746 avg_quantizer[B_TYPE]= avg_quantizer[P_TYPE]*ABS(s->avctx->b_quant_factor) + s->avctx->b_quant_offset;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
747
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
748 expected_bits=
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
749 + all_const_bits
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
750 + complexity[I_TYPE]/avg_quantizer[I_TYPE]
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
751 + complexity[P_TYPE]/avg_quantizer[P_TYPE]
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
752 + complexity[B_TYPE]/avg_quantizer[B_TYPE];
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
753
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
754 if(expected_bits < all_available_bits) avg_quantizer[P_TYPE]-= step;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
755 //printf("%f %lld %f\n", expected_bits, all_available_bits, avg_quantizer[P_TYPE]);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
756 }
616
0fe52ab8042c forgot the const bits in 2pass curve matching (patch (with rounding removed) by Rmi Guyomarch <rguyom at pobox dot com>)
michaelni
parents: 615
diff changeset
757 //printf("qp_i:%f, qp_p:%f, qp_b:%f\n", avg_quantizer[I_TYPE],avg_quantizer[P_TYPE],avg_quantizer[B_TYPE]);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
758
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
759 for(i=0; i<5; i++){
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
760 available_bits[i]= const_bits[i] + complexity[i]/avg_quantizer[i];
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
761 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
762 //printf("%lld %lld %lld %lld\n", available_bits[I_TYPE], available_bits[P_TYPE], available_bits[B_TYPE], all_available_bits);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
763
1031
19de1445beb2 use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents: 977
diff changeset
764 qscale= av_malloc(sizeof(double)*rcc->num_entries);
19de1445beb2 use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents: 977
diff changeset
765 blured_qscale= av_malloc(sizeof(double)*rcc->num_entries);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
766
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
767 for(step=256*256; step>0.0000001; step*=0.5){
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
768 expected_bits=0;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
769 rate_factor+= step;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
770
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
771 rcc->buffer_index= s->avctx->rc_buffer_size/2;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
772
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
773 /* find qscale */
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
774 for(i=0; i<rcc->num_entries; i++){
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
775 qscale[i]= get_qscale(s, &rcc->entry[i], rate_factor, i);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
776 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
777 assert(filter_size%2==1);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
778
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
779 /* fixed I/B QP relative to P mode */
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
780 for(i=rcc->num_entries-1; i>=0; i--){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
781 RateControlEntry *rce= &rcc->entry[i];
679
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
782
3d2da9b44cd8 better min/max rate handling
michaelni
parents: 678
diff changeset
783 qscale[i]= get_diff_limited_q(s, rce, qscale[i]);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
784 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
785
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
786 /* smooth curve */
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
787 for(i=0; i<rcc->num_entries; i++){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
788 RateControlEntry *rce= &rcc->entry[i];
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
789 const int pict_type= rce->new_pict_type;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
790 int j;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
791 double q=0.0, sum=0.0;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
792
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
793 for(j=0; j<filter_size; j++){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
794 int index= i+j-filter_size/2;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
795 double d= index-i;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
796 double coeff= s->qblur==0 ? 1.0 : exp(-d*d/(s->qblur * s->qblur));
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
797
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
798 if(index < 0 || index >= rcc->num_entries) continue;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
799 if(pict_type != rcc->entry[index].new_pict_type) continue;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
800 q+= qscale[index] * coeff;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
801 sum+= coeff;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
802 }
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
803 blured_qscale[i]= q/sum;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
804 }
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
805
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
806 /* find expected bits */
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
807 for(i=0; i<rcc->num_entries; i++){
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
808 RateControlEntry *rce= &rcc->entry[i];
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
809 double bits;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
810 rce->new_qscale= modify_qscale(s, rce, blured_qscale[i], i);
616
0fe52ab8042c forgot the const bits in 2pass curve matching (patch (with rounding removed) by Rmi Guyomarch <rguyom at pobox dot com>)
michaelni
parents: 615
diff changeset
811 bits= qp2bits(rce, rce->new_qscale) + rce->mv_bits + rce->misc_bits;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
812 //printf("%d %f\n", rce->new_bits, blured_qscale[i]);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
813 update_rc_buffer(s, bits);
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
814
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
815 rce->expected_bits= expected_bits;
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
816 expected_bits += bits;
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
817 }
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
818
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
819 // printf("%f %d %f\n", expected_bits, (int)all_available_bits, rate_factor);
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
820 if(expected_bits > all_available_bits) rate_factor-= step;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
821 }
1031
19de1445beb2 use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents: 977
diff changeset
822 av_free(qscale);
19de1445beb2 use av_malloc() functions - added av_strdup and av_realloc()
bellard
parents: 977
diff changeset
823 av_free(blured_qscale);
612
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
824
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
825 if(abs(expected_bits/all_available_bits - 1.0) > 0.01 ){
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
826 fprintf(stderr, "Error: 2pass curve failed to converge\n");
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
827 return -1;
c0005de2be59 new ratecontrol code
michaelni
parents: 463
diff changeset
828 }
329
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
829
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
830 return 0;
5cc47d0ba53e fixed ratecontrol & b-frames
michaelni
parents:
diff changeset
831 }