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