John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | /* |
John Koleszar | c2140b8 | 2010-09-09 08:16:39 -0400 | [diff] [blame] | 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | * |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 7 | * in the file PATENTS. All contributing project authors may |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 8 | * be found in the AUTHORS file in the root of the source tree. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 11 | #include "math.h" |
| 12 | #include "limits.h" |
| 13 | #include "block.h" |
| 14 | #include "onyx_int.h" |
| 15 | #include "variance.h" |
| 16 | #include "encodeintra.h" |
John Koleszar | 02321de | 2011-02-10 14:41:38 -0500 | [diff] [blame] | 17 | #include "vp8/common/setupintrarecon.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 18 | #include "mcomp.h" |
| 19 | #include "vpx_scale/vpxscale.h" |
| 20 | #include "encodemb.h" |
John Koleszar | 02321de | 2011-02-10 14:41:38 -0500 | [diff] [blame] | 21 | #include "vp8/common/extend.h" |
| 22 | #include "vp8/common/systemdependent.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 23 | #include "vpx_scale/yv12extend.h" |
| 24 | #include "vpx_mem/vpx_mem.h" |
John Koleszar | 02321de | 2011-02-10 14:41:38 -0500 | [diff] [blame] | 25 | #include "vp8/common/swapyv12buffer.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 26 | #include <stdio.h> |
| 27 | #include "rdopt.h" |
John Koleszar | 02321de | 2011-02-10 14:41:38 -0500 | [diff] [blame] | 28 | #include "vp8/common/quant_common.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 29 | #include "encodemv.h" |
| 30 | |
| 31 | //#define OUTPUT_FPF 1 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 32 | |
| 33 | #if CONFIG_RUNTIME_CPU_DETECT |
| 34 | #define IF_RTCD(x) (x) |
| 35 | #else |
| 36 | #define IF_RTCD(x) NULL |
| 37 | #endif |
| 38 | |
| 39 | extern void vp8_build_block_offsets(MACROBLOCK *x); |
| 40 | extern void vp8_setup_block_ptrs(MACROBLOCK *x); |
| 41 | extern void vp8cx_frame_init_quantizer(VP8_COMP *cpi); |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 42 | extern void vp8_set_mbmode_and_mvs(MACROBLOCK *x, MB_PREDICTION_MODE mb, int_mv *mv); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 43 | extern void vp8_alloc_compressor_data(VP8_COMP *cpi); |
| 44 | |
| 45 | //#define GFQ_ADJUSTMENT (40 + ((15*Q)/10)) |
| 46 | //#define GFQ_ADJUSTMENT (80 + ((15*Q)/10)) |
| 47 | #define GFQ_ADJUSTMENT vp8_gf_boost_qadjustment[Q] |
| 48 | extern int vp8_kf_boost_qadjustment[QINDEX_RANGE]; |
| 49 | |
| 50 | extern const int vp8_gf_boost_qadjustment[QINDEX_RANGE]; |
| 51 | |
| 52 | #define IIFACTOR 1.4 |
| 53 | #define IIKFACTOR1 1.40 |
| 54 | #define IIKFACTOR2 1.5 |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 55 | #define RMAX 14.0 |
| 56 | #define GF_RMAX 48.0 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 57 | |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 58 | #define KF_MB_INTRA_MIN 300 |
| 59 | #define GF_MB_INTRA_MIN 200 |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 60 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 61 | #define DOUBLE_DIVIDE_CHECK(X) ((X)<0?(X)-.000001:(X)+.000001) |
| 62 | |
| 63 | #define POW1 (double)cpi->oxcf.two_pass_vbrbias/100.0 |
| 64 | #define POW2 (double)cpi->oxcf.two_pass_vbrbias/100.0 |
| 65 | |
| 66 | static int vscale_lookup[7] = {0, 1, 1, 2, 2, 3, 3}; |
| 67 | static int hscale_lookup[7] = {0, 0, 1, 1, 2, 2, 3}; |
| 68 | |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 69 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 70 | static const int cq_level[QINDEX_RANGE] = |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 71 | { |
| 72 | 0,0,1,1,2,3,3,4,4,5,6,6,7,8,8,9, |
| 73 | 9,10,11,11,12,13,13,14,15,15,16,17,17,18,19,20, |
| 74 | 20,21,22,22,23,24,24,25,26,27,27,28,29,30,30,31, |
| 75 | 32,33,33,34,35,36,36,37,38,39,39,40,41,42,42,43, |
| 76 | 44,45,46,46,47,48,49,50,50,51,52,53,54,55,55,56, |
| 77 | 57,58,59,60,60,61,62,63,64,65,66,67,67,68,69,70, |
| 78 | 71,72,73,74,75,75,76,77,78,79,80,81,82,83,84,85, |
| 79 | 86,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100 |
| 80 | }; |
| 81 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 82 | static void find_next_key_frame(VP8_COMP *cpi, FIRSTPASS_STATS *this_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 83 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 84 | static int encode_intra(VP8_COMP *cpi, MACROBLOCK *x, int use_dc_pred) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 85 | { |
| 86 | |
| 87 | int i; |
| 88 | int intra_pred_var = 0; |
| 89 | (void) cpi; |
| 90 | |
| 91 | if (use_dc_pred) |
| 92 | { |
Scott LaVarnway | 9c7a009 | 2010-08-12 16:25:43 -0400 | [diff] [blame] | 93 | x->e_mbd.mode_info_context->mbmi.mode = DC_PRED; |
| 94 | x->e_mbd.mode_info_context->mbmi.uv_mode = DC_PRED; |
| 95 | x->e_mbd.mode_info_context->mbmi.ref_frame = INTRA_FRAME; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 96 | |
| 97 | vp8_encode_intra16x16mby(IF_RTCD(&cpi->rtcd), x); |
| 98 | } |
| 99 | else |
| 100 | { |
| 101 | for (i = 0; i < 16; i++) |
| 102 | { |
Yaowu Xu | a4c69e9 | 2011-05-19 18:37:13 -0700 | [diff] [blame] | 103 | x->e_mbd.block[i].bmi.mode = B_DC_PRED; |
| 104 | vp8_encode_intra4x4block(IF_RTCD(&cpi->rtcd), x, i); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 105 | } |
| 106 | } |
| 107 | |
| 108 | intra_pred_var = VARIANCE_INVOKE(&cpi->rtcd.variance, getmbss)(x->src_diff); |
| 109 | |
| 110 | return intra_pred_var; |
| 111 | } |
| 112 | |
| 113 | // Resets the first pass file to the given position using a relative seek from the current position |
| 114 | static void reset_fpf_position(VP8_COMP *cpi, FIRSTPASS_STATS *Position) |
| 115 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 116 | cpi->twopass.stats_in = Position; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static int lookup_next_frame_stats(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) |
| 120 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 121 | if (cpi->twopass.stats_in >= cpi->twopass.stats_in_end) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 122 | return EOF; |
| 123 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 124 | *next_frame = *cpi->twopass.stats_in; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 125 | return 1; |
| 126 | } |
| 127 | |
| 128 | // Calculate a modified Error used in distributing bits between easier and harder frames |
| 129 | static double calculate_modified_err(VP8_COMP *cpi, FIRSTPASS_STATS *this_frame) |
| 130 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 131 | double av_err = cpi->twopass.total_stats->ssim_weighted_pred_err; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 132 | double this_err = this_frame->ssim_weighted_pred_err; |
| 133 | double modified_err; |
| 134 | |
| 135 | //double relative_next_iiratio; |
| 136 | //double next_iiratio; |
| 137 | //double sum_iiratio; |
| 138 | //int i; |
| 139 | |
| 140 | //FIRSTPASS_STATS next_frame; |
| 141 | //FIRSTPASS_STATS *start_pos; |
| 142 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 143 | /*start_pos = cpi->twopass.stats_in; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 144 | sum_iiratio = 0.0; |
| 145 | i = 0; |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 146 | while ( (i < 1) && input_stats(cpi,&next_frame) != EOF ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 147 | { |
| 148 | |
| 149 | next_iiratio = next_frame.intra_error / DOUBLE_DIVIDE_CHECK(next_frame.coded_error); |
| 150 | next_iiratio = ( next_iiratio < 1.0 ) ? 1.0 : (next_iiratio > 20.0) ? 20.0 : next_iiratio; |
| 151 | sum_iiratio += next_iiratio; |
| 152 | i++; |
| 153 | } |
| 154 | if ( i > 0 ) |
| 155 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 156 | relative_next_iiratio = sum_iiratio / DOUBLE_DIVIDE_CHECK(cpi->twopass.avg_iiratio * (double)i); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 157 | } |
| 158 | else |
| 159 | { |
| 160 | relative_next_iiratio = 1.0; |
| 161 | } |
| 162 | reset_fpf_position(cpi, start_pos);*/ |
| 163 | |
| 164 | if (this_err > av_err) |
| 165 | modified_err = av_err * pow((this_err / DOUBLE_DIVIDE_CHECK(av_err)), POW1); |
| 166 | else |
| 167 | modified_err = av_err * pow((this_err / DOUBLE_DIVIDE_CHECK(av_err)), POW2); |
| 168 | |
| 169 | /* |
| 170 | relative_next_iiratio = pow(relative_next_iiratio,0.25); |
| 171 | modified_err = modified_err * relative_next_iiratio; |
| 172 | */ |
| 173 | |
| 174 | return modified_err; |
| 175 | } |
| 176 | |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 177 | static const double weight_table[256] = { |
| 178 | 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, |
| 179 | 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, |
| 180 | 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, |
| 181 | 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, |
| 182 | 0.020000, 0.031250, 0.062500, 0.093750, 0.125000, 0.156250, 0.187500, 0.218750, |
| 183 | 0.250000, 0.281250, 0.312500, 0.343750, 0.375000, 0.406250, 0.437500, 0.468750, |
| 184 | 0.500000, 0.531250, 0.562500, 0.593750, 0.625000, 0.656250, 0.687500, 0.718750, |
| 185 | 0.750000, 0.781250, 0.812500, 0.843750, 0.875000, 0.906250, 0.937500, 0.968750, |
| 186 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 187 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 188 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 189 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 190 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 191 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 192 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 193 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 194 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 195 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 196 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 197 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 198 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 199 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 200 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 201 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 202 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 203 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 204 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 205 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 206 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 207 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 208 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, |
| 209 | 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000 |
| 210 | }; |
| 211 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 212 | static double simple_weight(YV12_BUFFER_CONFIG *source) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 213 | { |
| 214 | int i, j; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 215 | |
| 216 | unsigned char *src = source->y_buffer; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 217 | double sum_weights = 0.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 218 | |
| 219 | // Loop throught the Y plane raw examining levels and creating a weight for the image |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 220 | i = source->y_height; |
| 221 | do |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 222 | { |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 223 | j = source->y_width; |
| 224 | do |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 225 | { |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 226 | sum_weights += weight_table[ *src]; |
| 227 | src++; |
| 228 | }while(--j); |
| 229 | src -= source->y_width; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 230 | src += source->y_stride; |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 231 | }while(--i); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 232 | |
| 233 | sum_weights /= (source->y_height * source->y_width); |
| 234 | |
| 235 | return sum_weights; |
| 236 | } |
| 237 | |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 238 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 239 | // This function returns the current per frame maximum bitrate target |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 240 | static int frame_max_bits(VP8_COMP *cpi) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 241 | { |
| 242 | // Max allocation for a single frame based on the max section guidelines passed in and how many bits are left |
| 243 | int max_bits; |
| 244 | |
| 245 | // For CBR we need to also consider buffer fullness. |
| 246 | // If we are running below the optimal level then we need to gradually tighten up on max_bits. |
| 247 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 248 | { |
agrange | d4b99b8 | 2010-06-18 15:18:09 +0100 | [diff] [blame] | 249 | double buffer_fullness_ratio = (double)cpi->buffer_level / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.optimal_buffer_level); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 250 | |
| 251 | // For CBR base this on the target average bits per frame plus the maximum sedction rate passed in by the user |
| 252 | max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0)); |
| 253 | |
| 254 | // If our buffer is below the optimum level |
| 255 | if (buffer_fullness_ratio < 1.0) |
| 256 | { |
| 257 | // The lower of max_bits / 4 or cpi->av_per_frame_bandwidth / 4. |
| 258 | int min_max_bits = ((cpi->av_per_frame_bandwidth >> 2) < (max_bits >> 2)) ? cpi->av_per_frame_bandwidth >> 2 : max_bits >> 2; |
| 259 | |
| 260 | max_bits = (int)(max_bits * buffer_fullness_ratio); |
| 261 | |
| 262 | if (max_bits < min_max_bits) |
| 263 | max_bits = min_max_bits; // Lowest value we will set ... which should allow the buffer to refil. |
| 264 | } |
| 265 | } |
| 266 | // VBR |
| 267 | else |
| 268 | { |
| 269 | // For VBR base this on the bits and frames left plus the two_pass_vbrmax_section rate passed in by the user |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 270 | max_bits = (int)(((double)cpi->twopass.bits_left / (cpi->twopass.total_stats->count - (double)cpi->common.current_video_frame)) * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | // Trap case where we are out of bits |
| 274 | if (max_bits < 0) |
| 275 | max_bits = 0; |
| 276 | |
| 277 | return max_bits; |
| 278 | } |
| 279 | |
John Koleszar | bb7dd5b | 2010-10-14 16:40:12 -0400 | [diff] [blame] | 280 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 281 | static void output_stats(const VP8_COMP *cpi, |
| 282 | struct vpx_codec_pkt_list *pktlist, |
| 283 | FIRSTPASS_STATS *stats) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 284 | { |
| 285 | struct vpx_codec_cx_pkt pkt; |
| 286 | pkt.kind = VPX_CODEC_STATS_PKT; |
| 287 | pkt.data.twopass_stats.buf = stats; |
Adrian Grange | ed40ff9 | 2011-03-10 11:32:48 -0800 | [diff] [blame] | 288 | pkt.data.twopass_stats.sz = sizeof(FIRSTPASS_STATS); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 289 | vpx_codec_pkt_list_add(pktlist, &pkt); |
| 290 | |
| 291 | // TEMP debug code |
Adrian Grange | 1b2f830 | 2010-09-28 15:23:41 +0100 | [diff] [blame] | 292 | #if OUTPUT_FPF |
Adrian Grange | 6daacdb | 2011-03-10 12:43:49 -0800 | [diff] [blame] | 293 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 294 | { |
| 295 | FILE *fpfile; |
| 296 | fpfile = fopen("firstpass.stt", "a"); |
| 297 | |
Ralph Giles | e6948bf | 2011-03-08 07:14:12 -0800 | [diff] [blame] | 298 | fprintf(fpfile, "%12.0f %12.0f %12.0f %12.4f %12.4f %12.4f %12.4f" |
Adrian Grange | 6daacdb | 2011-03-10 12:43:49 -0800 | [diff] [blame] | 299 | " %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f" |
| 300 | " %12.0f %12.4f\n", |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 301 | stats->frame, |
| 302 | stats->intra_error, |
| 303 | stats->coded_error, |
| 304 | stats->ssim_weighted_pred_err, |
| 305 | stats->pcnt_inter, |
| 306 | stats->pcnt_motion, |
| 307 | stats->pcnt_second_ref, |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 308 | stats->pcnt_neutral, |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 309 | stats->MVr, |
| 310 | stats->mvr_abs, |
| 311 | stats->MVc, |
| 312 | stats->mvc_abs, |
| 313 | stats->MVrv, |
| 314 | stats->MVcv, |
| 315 | stats->mv_in_out_count, |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 316 | stats->count, |
| 317 | stats->duration); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 318 | fclose(fpfile); |
| 319 | } |
| 320 | #endif |
| 321 | } |
| 322 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 323 | static int input_stats(VP8_COMP *cpi, FIRSTPASS_STATS *fps) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 324 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 325 | if (cpi->twopass.stats_in >= cpi->twopass.stats_in_end) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 326 | return EOF; |
| 327 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 328 | *fps = *cpi->twopass.stats_in; |
| 329 | cpi->twopass.stats_in = |
| 330 | (void*)((char *)cpi->twopass.stats_in + sizeof(FIRSTPASS_STATS)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 331 | return 1; |
| 332 | } |
| 333 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 334 | static void zero_stats(FIRSTPASS_STATS *section) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 335 | { |
| 336 | section->frame = 0.0; |
| 337 | section->intra_error = 0.0; |
| 338 | section->coded_error = 0.0; |
| 339 | section->ssim_weighted_pred_err = 0.0; |
| 340 | section->pcnt_inter = 0.0; |
| 341 | section->pcnt_motion = 0.0; |
| 342 | section->pcnt_second_ref = 0.0; |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 343 | section->pcnt_neutral = 0.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 344 | section->MVr = 0.0; |
| 345 | section->mvr_abs = 0.0; |
| 346 | section->MVc = 0.0; |
| 347 | section->mvc_abs = 0.0; |
| 348 | section->MVrv = 0.0; |
| 349 | section->MVcv = 0.0; |
| 350 | section->mv_in_out_count = 0.0; |
| 351 | section->count = 0.0; |
| 352 | section->duration = 1.0; |
| 353 | } |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 354 | static void accumulate_stats(FIRSTPASS_STATS *section, FIRSTPASS_STATS *frame) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 355 | { |
| 356 | section->frame += frame->frame; |
| 357 | section->intra_error += frame->intra_error; |
| 358 | section->coded_error += frame->coded_error; |
| 359 | section->ssim_weighted_pred_err += frame->ssim_weighted_pred_err; |
| 360 | section->pcnt_inter += frame->pcnt_inter; |
| 361 | section->pcnt_motion += frame->pcnt_motion; |
| 362 | section->pcnt_second_ref += frame->pcnt_second_ref; |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 363 | section->pcnt_neutral += frame->pcnt_neutral; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 364 | section->MVr += frame->MVr; |
| 365 | section->mvr_abs += frame->mvr_abs; |
| 366 | section->MVc += frame->MVc; |
| 367 | section->mvc_abs += frame->mvc_abs; |
| 368 | section->MVrv += frame->MVrv; |
| 369 | section->MVcv += frame->MVcv; |
| 370 | section->mv_in_out_count += frame->mv_in_out_count; |
| 371 | section->count += frame->count; |
| 372 | section->duration += frame->duration; |
| 373 | } |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 374 | static void avg_stats(FIRSTPASS_STATS *section) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 375 | { |
| 376 | if (section->count < 1.0) |
| 377 | return; |
| 378 | |
| 379 | section->intra_error /= section->count; |
| 380 | section->coded_error /= section->count; |
| 381 | section->ssim_weighted_pred_err /= section->count; |
| 382 | section->pcnt_inter /= section->count; |
| 383 | section->pcnt_second_ref /= section->count; |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 384 | section->pcnt_neutral /= section->count; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 385 | section->pcnt_motion /= section->count; |
| 386 | section->MVr /= section->count; |
| 387 | section->mvr_abs /= section->count; |
| 388 | section->MVc /= section->count; |
| 389 | section->mvc_abs /= section->count; |
| 390 | section->MVrv /= section->count; |
| 391 | section->MVcv /= section->count; |
| 392 | section->mv_in_out_count /= section->count; |
| 393 | section->duration /= section->count; |
| 394 | } |
| 395 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 396 | void vp8_init_first_pass(VP8_COMP *cpi) |
| 397 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 398 | zero_stats(cpi->twopass.total_stats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | void vp8_end_first_pass(VP8_COMP *cpi) |
| 402 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 403 | output_stats(cpi, cpi->output_pkt_list, cpi->twopass.total_stats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 404 | } |
John Koleszar | bb7dd5b | 2010-10-14 16:40:12 -0400 | [diff] [blame] | 405 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 406 | static void zz_motion_search( VP8_COMP *cpi, MACROBLOCK * x, YV12_BUFFER_CONFIG * recon_buffer, int * best_motion_err, int recon_yoffset ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 407 | { |
| 408 | MACROBLOCKD * const xd = & x->e_mbd; |
| 409 | BLOCK *b = &x->block[0]; |
| 410 | BLOCKD *d = &x->e_mbd.block[0]; |
| 411 | |
| 412 | unsigned char *src_ptr = (*(b->base_src) + b->src); |
| 413 | int src_stride = b->src_stride; |
| 414 | unsigned char *ref_ptr; |
| 415 | int ref_stride=d->pre_stride; |
| 416 | |
| 417 | // Set up pointers for this macro block recon buffer |
| 418 | xd->pre.y_buffer = recon_buffer->y_buffer + recon_yoffset; |
| 419 | |
| 420 | ref_ptr = (unsigned char *)(*(d->base_pre) + d->pre ); |
| 421 | |
| 422 | VARIANCE_INVOKE(IF_RTCD(&cpi->rtcd.variance), mse16x16) ( src_ptr, src_stride, ref_ptr, ref_stride, (unsigned int *)(best_motion_err)); |
| 423 | } |
| 424 | |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 425 | static void first_pass_motion_search(VP8_COMP *cpi, MACROBLOCK *x, |
| 426 | int_mv *ref_mv, MV *best_mv, |
| 427 | YV12_BUFFER_CONFIG *recon_buffer, |
| 428 | int *best_motion_err, int recon_yoffset ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 429 | { |
| 430 | MACROBLOCKD *const xd = & x->e_mbd; |
| 431 | BLOCK *b = &x->block[0]; |
| 432 | BLOCKD *d = &x->e_mbd.block[0]; |
| 433 | int num00; |
| 434 | |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 435 | int_mv tmp_mv; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 436 | |
| 437 | int tmp_err; |
| 438 | int step_param = 3; //3; // Dont search over full range for first pass |
| 439 | int further_steps = (MAX_MVSEARCH_STEPS - 1) - step_param; //3; |
| 440 | int n; |
John Koleszar | 209d82a | 2010-10-26 15:34:16 -0400 | [diff] [blame] | 441 | vp8_variance_fn_ptr_t v_fn_ptr = cpi->fn_ptr[BLOCK_16X16]; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 442 | int new_mv_mode_penalty = 256; |
| 443 | |
John Koleszar | 209d82a | 2010-10-26 15:34:16 -0400 | [diff] [blame] | 444 | // override the default variance function to use MSE |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 445 | v_fn_ptr.vf = VARIANCE_INVOKE(IF_RTCD(&cpi->rtcd.variance), mse16x16); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 446 | |
| 447 | // Set up pointers for this macro block recon buffer |
| 448 | xd->pre.y_buffer = recon_buffer->y_buffer + recon_yoffset; |
| 449 | |
| 450 | // Initial step/diamond search centred on best mv |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 451 | tmp_mv.as_int = 0; |
Yunqing Wang | 3d68158 | 2011-04-01 16:41:58 -0400 | [diff] [blame] | 452 | tmp_err = cpi->diamond_search_sad(x, b, d, ref_mv, &tmp_mv, step_param, x->errorperbit, &num00, &v_fn_ptr, x->mvcost, ref_mv); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 453 | if ( tmp_err < INT_MAX-new_mv_mode_penalty ) |
| 454 | tmp_err += new_mv_mode_penalty; |
| 455 | |
| 456 | if (tmp_err < *best_motion_err) |
| 457 | { |
| 458 | *best_motion_err = tmp_err; |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 459 | best_mv->row = tmp_mv.as_mv.row; |
| 460 | best_mv->col = tmp_mv.as_mv.col; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | // Further step/diamond searches as necessary |
| 464 | n = num00; |
| 465 | num00 = 0; |
| 466 | |
| 467 | while (n < further_steps) |
| 468 | { |
| 469 | n++; |
| 470 | |
| 471 | if (num00) |
| 472 | num00--; |
| 473 | else |
| 474 | { |
Yunqing Wang | 3d68158 | 2011-04-01 16:41:58 -0400 | [diff] [blame] | 475 | tmp_err = cpi->diamond_search_sad(x, b, d, ref_mv, &tmp_mv, step_param + n, x->errorperbit, &num00, &v_fn_ptr, x->mvcost, ref_mv); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 476 | if ( tmp_err < INT_MAX-new_mv_mode_penalty ) |
| 477 | tmp_err += new_mv_mode_penalty; |
| 478 | |
| 479 | if (tmp_err < *best_motion_err) |
| 480 | { |
| 481 | *best_motion_err = tmp_err; |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 482 | best_mv->row = tmp_mv.as_mv.row; |
| 483 | best_mv->col = tmp_mv.as_mv.col; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 484 | } |
| 485 | } |
| 486 | } |
| 487 | } |
| 488 | |
| 489 | void vp8_first_pass(VP8_COMP *cpi) |
| 490 | { |
| 491 | int mb_row, mb_col; |
| 492 | MACROBLOCK *const x = & cpi->mb; |
| 493 | VP8_COMMON *const cm = & cpi->common; |
| 494 | MACROBLOCKD *const xd = & x->e_mbd; |
| 495 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 496 | int recon_yoffset, recon_uvoffset; |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 497 | YV12_BUFFER_CONFIG *lst_yv12 = &cm->yv12_fb[cm->lst_fb_idx]; |
| 498 | YV12_BUFFER_CONFIG *new_yv12 = &cm->yv12_fb[cm->new_fb_idx]; |
| 499 | YV12_BUFFER_CONFIG *gld_yv12 = &cm->yv12_fb[cm->gld_fb_idx]; |
| 500 | int recon_y_stride = lst_yv12->y_stride; |
| 501 | int recon_uv_stride = lst_yv12->uv_stride; |
Paul Wilkins | b862c10 | 2011-02-24 15:49:41 +0000 | [diff] [blame] | 502 | long long intra_error = 0; |
| 503 | long long coded_error = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 504 | |
| 505 | int sum_mvr = 0, sum_mvc = 0; |
| 506 | int sum_mvr_abs = 0, sum_mvc_abs = 0; |
| 507 | int sum_mvrs = 0, sum_mvcs = 0; |
| 508 | int mvcount = 0; |
| 509 | int intercount = 0; |
| 510 | int second_ref_count = 0; |
| 511 | int intrapenalty = 256; |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 512 | int neutral_count = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 513 | |
| 514 | int sum_in_vectors = 0; |
| 515 | |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 516 | int_mv zero_ref_mv; |
| 517 | |
| 518 | zero_ref_mv.as_int = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 519 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 520 | vp8_clear_system_state(); //__asm emms; |
| 521 | |
| 522 | x->src = * cpi->Source; |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 523 | xd->pre = *lst_yv12; |
| 524 | xd->dst = *new_yv12; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 525 | |
Scott LaVarnway | 0de458f | 2010-09-02 16:17:52 -0400 | [diff] [blame] | 526 | x->partition_info = x->pi; |
| 527 | |
Scott LaVarnway | 9c7a009 | 2010-08-12 16:25:43 -0400 | [diff] [blame] | 528 | xd->mode_info_context = cm->mi; |
| 529 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 530 | vp8_build_block_offsets(x); |
| 531 | |
| 532 | vp8_setup_block_dptrs(&x->e_mbd); |
| 533 | |
| 534 | vp8_setup_block_ptrs(x); |
| 535 | |
| 536 | // set up frame new frame for intra coded blocks |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 537 | vp8_setup_intra_recon(new_yv12); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 538 | vp8cx_frame_init_quantizer(cpi); |
| 539 | |
| 540 | // Initialise the MV cost table to the defaults |
| 541 | //if( cm->current_video_frame == 0) |
| 542 | //if ( 0 ) |
| 543 | { |
| 544 | int flag[2] = {1, 1}; |
| 545 | vp8_initialize_rd_consts(cpi, vp8_dc_quant(cm->base_qindex, cm->y1dc_delta_q)); |
| 546 | vpx_memcpy(cm->fc.mvc, vp8_default_mv_context, sizeof(vp8_default_mv_context)); |
Yunqing Wang | 3d68158 | 2011-04-01 16:41:58 -0400 | [diff] [blame] | 547 | vp8_build_component_cost_table(cpi->mb.mvcost, (const MV_CONTEXT *) cm->fc.mvc, flag); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | // for each macroblock row in image |
| 551 | for (mb_row = 0; mb_row < cm->mb_rows; mb_row++) |
| 552 | { |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 553 | int_mv best_ref_mv; |
| 554 | |
| 555 | best_ref_mv.as_int = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 556 | |
| 557 | // reset above block coeffs |
| 558 | xd->up_available = (mb_row != 0); |
| 559 | recon_yoffset = (mb_row * recon_y_stride * 16); |
| 560 | recon_uvoffset = (mb_row * recon_uv_stride * 8); |
| 561 | |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 562 | // Set up limit values for motion vectors to prevent them extending outside the UMV borders |
| 563 | x->mv_row_min = -((mb_row * 16) + (VP8BORDERINPIXELS - 16)); |
| 564 | x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16) + (VP8BORDERINPIXELS - 16); |
| 565 | |
| 566 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 567 | // for each macroblock col in image |
| 568 | for (mb_col = 0; mb_col < cm->mb_cols; mb_col++) |
| 569 | { |
| 570 | int this_error; |
| 571 | int gf_motion_error = INT_MAX; |
| 572 | int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row); |
| 573 | |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 574 | xd->dst.y_buffer = new_yv12->y_buffer + recon_yoffset; |
| 575 | xd->dst.u_buffer = new_yv12->u_buffer + recon_uvoffset; |
| 576 | xd->dst.v_buffer = new_yv12->v_buffer + recon_uvoffset; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 577 | xd->left_available = (mb_col != 0); |
| 578 | |
| 579 | // do intra 16x16 prediction |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 580 | this_error = encode_intra(cpi, x, use_dc_pred); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 581 | |
| 582 | // "intrapenalty" below deals with situations where the intra and inter error scores are very low (eg a plain black frame) |
| 583 | // We do not have special cases in first pass for 0,0 and nearest etc so all inter modes carry an overhead cost estimate fot the mv. |
| 584 | // When the error score is very low this causes us to pick all or lots of INTRA modes and throw lots of key frames. |
| 585 | // This penalty adds a cost matching that of a 0,0 mv to the intra case. |
| 586 | this_error += intrapenalty; |
| 587 | |
| 588 | // Cumulative intra error total |
Paul Wilkins | b862c10 | 2011-02-24 15:49:41 +0000 | [diff] [blame] | 589 | intra_error += (long long)this_error; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 590 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 591 | // Set up limit values for motion vectors to prevent them extending outside the UMV borders |
| 592 | x->mv_col_min = -((mb_col * 16) + (VP8BORDERINPIXELS - 16)); |
| 593 | x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + (VP8BORDERINPIXELS - 16); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 594 | |
| 595 | // Other than for the first frame do a motion search |
| 596 | if (cm->current_video_frame > 0) |
| 597 | { |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 598 | BLOCKD *d = &x->e_mbd.block[0]; |
| 599 | MV tmp_mv = {0, 0}; |
| 600 | int tmp_err; |
| 601 | int motion_error = INT_MAX; |
| 602 | |
| 603 | // Simple 0,0 motion with no mv overhead |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 604 | zz_motion_search( cpi, x, lst_yv12, &motion_error, recon_yoffset ); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 605 | d->bmi.mv.as_mv.row = 0; |
| 606 | d->bmi.mv.as_mv.col = 0; |
| 607 | |
Adrian Grange | 0618ff1 | 2010-07-01 14:17:04 +0100 | [diff] [blame] | 608 | // Test last reference frame using the previous best mv as the |
| 609 | // starting point (best reference) for the search |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 610 | first_pass_motion_search(cpi, x, &best_ref_mv, |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 611 | &d->bmi.mv.as_mv, lst_yv12, |
Adrian Grange | 0618ff1 | 2010-07-01 14:17:04 +0100 | [diff] [blame] | 612 | &motion_error, recon_yoffset); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 613 | |
| 614 | // If the current best reference mv is not centred on 0,0 then do a 0,0 based search as well |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 615 | if (best_ref_mv.as_int) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 616 | { |
| 617 | tmp_err = INT_MAX; |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 618 | first_pass_motion_search(cpi, x, &zero_ref_mv, &tmp_mv, |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 619 | lst_yv12, &tmp_err, recon_yoffset); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 620 | |
| 621 | if ( tmp_err < motion_error ) |
| 622 | { |
| 623 | motion_error = tmp_err; |
| 624 | d->bmi.mv.as_mv.row = tmp_mv.row; |
| 625 | d->bmi.mv.as_mv.col = tmp_mv.col; |
| 626 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | // Experimental search in a second reference frame ((0,0) based only) |
| 630 | if (cm->current_video_frame > 1) |
| 631 | { |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 632 | first_pass_motion_search(cpi, x, &zero_ref_mv, &tmp_mv, gld_yv12, &gf_motion_error, recon_yoffset); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 633 | |
| 634 | if ((gf_motion_error < motion_error) && (gf_motion_error < this_error)) |
| 635 | { |
| 636 | second_ref_count++; |
| 637 | //motion_error = gf_motion_error; |
| 638 | //d->bmi.mv.as_mv.row = tmp_mv.row; |
| 639 | //d->bmi.mv.as_mv.col = tmp_mv.col; |
| 640 | } |
| 641 | /*else |
| 642 | { |
| 643 | xd->pre.y_buffer = cm->last_frame.y_buffer + recon_yoffset; |
| 644 | xd->pre.u_buffer = cm->last_frame.u_buffer + recon_uvoffset; |
| 645 | xd->pre.v_buffer = cm->last_frame.v_buffer + recon_uvoffset; |
| 646 | }*/ |
| 647 | |
| 648 | |
| 649 | // Reset to last frame as reference buffer |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 650 | xd->pre.y_buffer = lst_yv12->y_buffer + recon_yoffset; |
| 651 | xd->pre.u_buffer = lst_yv12->u_buffer + recon_uvoffset; |
| 652 | xd->pre.v_buffer = lst_yv12->v_buffer + recon_uvoffset; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 653 | } |
| 654 | |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 655 | /* Intra assumed best */ |
| 656 | best_ref_mv.as_int = 0; |
| 657 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 658 | if (motion_error <= this_error) |
| 659 | { |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 660 | // Keep a count of cases where the inter and intra were |
| 661 | // very close and very low. This helps with scene cut |
| 662 | // detection for example in cropped clips with black bars |
| 663 | // at the sides or top and bottom. |
| 664 | if( (((this_error-intrapenalty) * 9) <= |
| 665 | (motion_error*10)) && |
| 666 | (this_error < (2*intrapenalty)) ) |
| 667 | { |
| 668 | neutral_count++; |
| 669 | } |
| 670 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 671 | d->bmi.mv.as_mv.row <<= 3; |
| 672 | d->bmi.mv.as_mv.col <<= 3; |
| 673 | this_error = motion_error; |
Scott LaVarnway | 6b25501 | 2011-05-12 10:50:16 -0400 | [diff] [blame] | 674 | vp8_set_mbmode_and_mvs(x, NEWMV, &d->bmi.mv); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 675 | vp8_encode_inter16x16y(IF_RTCD(&cpi->rtcd), x); |
| 676 | sum_mvr += d->bmi.mv.as_mv.row; |
| 677 | sum_mvr_abs += abs(d->bmi.mv.as_mv.row); |
| 678 | sum_mvc += d->bmi.mv.as_mv.col; |
| 679 | sum_mvc_abs += abs(d->bmi.mv.as_mv.col); |
| 680 | sum_mvrs += d->bmi.mv.as_mv.row * d->bmi.mv.as_mv.row; |
| 681 | sum_mvcs += d->bmi.mv.as_mv.col * d->bmi.mv.as_mv.col; |
| 682 | intercount++; |
| 683 | |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 684 | best_ref_mv.as_int = d->bmi.mv.as_int; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 685 | |
| 686 | // Was the vector non-zero |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 687 | if (d->bmi.mv.as_int) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 688 | { |
| 689 | mvcount++; |
| 690 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 691 | // Does the Row vector point inwards or outwards |
| 692 | if (mb_row < cm->mb_rows / 2) |
| 693 | { |
| 694 | if (d->bmi.mv.as_mv.row > 0) |
| 695 | sum_in_vectors--; |
| 696 | else if (d->bmi.mv.as_mv.row < 0) |
| 697 | sum_in_vectors++; |
| 698 | } |
| 699 | else if (mb_row > cm->mb_rows / 2) |
| 700 | { |
| 701 | if (d->bmi.mv.as_mv.row > 0) |
| 702 | sum_in_vectors++; |
| 703 | else if (d->bmi.mv.as_mv.row < 0) |
| 704 | sum_in_vectors--; |
| 705 | } |
| 706 | |
| 707 | // Does the Row vector point inwards or outwards |
| 708 | if (mb_col < cm->mb_cols / 2) |
| 709 | { |
| 710 | if (d->bmi.mv.as_mv.col > 0) |
| 711 | sum_in_vectors--; |
| 712 | else if (d->bmi.mv.as_mv.col < 0) |
| 713 | sum_in_vectors++; |
| 714 | } |
| 715 | else if (mb_col > cm->mb_cols / 2) |
| 716 | { |
| 717 | if (d->bmi.mv.as_mv.col > 0) |
| 718 | sum_in_vectors++; |
| 719 | else if (d->bmi.mv.as_mv.col < 0) |
| 720 | sum_in_vectors--; |
| 721 | } |
Adrian Grange | 1b2f830 | 2010-09-28 15:23:41 +0100 | [diff] [blame] | 722 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 723 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 724 | } |
| 725 | |
Paul Wilkins | b862c10 | 2011-02-24 15:49:41 +0000 | [diff] [blame] | 726 | coded_error += (long long)this_error; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 727 | |
| 728 | // adjust to the next column of macroblocks |
| 729 | x->src.y_buffer += 16; |
| 730 | x->src.u_buffer += 8; |
| 731 | x->src.v_buffer += 8; |
| 732 | |
| 733 | recon_yoffset += 16; |
| 734 | recon_uvoffset += 8; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | // adjust to the next row of mbs |
| 738 | x->src.y_buffer += 16 * x->src.y_stride - 16 * cm->mb_cols; |
| 739 | x->src.u_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols; |
| 740 | x->src.v_buffer += 8 * x->src.uv_stride - 8 * cm->mb_cols; |
| 741 | |
| 742 | //extend the recon for intra prediction |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 743 | vp8_extend_mb_row(new_yv12, xd->dst.y_buffer + 16, xd->dst.u_buffer + 8, xd->dst.v_buffer + 8); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 744 | vp8_clear_system_state(); //__asm emms; |
| 745 | } |
| 746 | |
| 747 | vp8_clear_system_state(); //__asm emms; |
| 748 | { |
| 749 | double weight = 0.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 750 | |
| 751 | FIRSTPASS_STATS fps; |
| 752 | |
| 753 | fps.frame = cm->current_video_frame ; |
| 754 | fps.intra_error = intra_error >> 8; |
| 755 | fps.coded_error = coded_error >> 8; |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 756 | weight = simple_weight(cpi->Source); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 757 | |
Scott LaVarnway | 3c18a2b | 2011-01-26 16:42:56 -0500 | [diff] [blame] | 758 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 759 | if (weight < 0.1) |
| 760 | weight = 0.1; |
| 761 | |
| 762 | fps.ssim_weighted_pred_err = fps.coded_error * weight; |
| 763 | |
| 764 | fps.pcnt_inter = 0.0; |
| 765 | fps.pcnt_motion = 0.0; |
| 766 | fps.MVr = 0.0; |
| 767 | fps.mvr_abs = 0.0; |
| 768 | fps.MVc = 0.0; |
| 769 | fps.mvc_abs = 0.0; |
| 770 | fps.MVrv = 0.0; |
| 771 | fps.MVcv = 0.0; |
| 772 | fps.mv_in_out_count = 0.0; |
| 773 | fps.count = 1.0; |
| 774 | |
| 775 | fps.pcnt_inter = 1.0 * (double)intercount / cm->MBs; |
| 776 | fps.pcnt_second_ref = 1.0 * (double)second_ref_count / cm->MBs; |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 777 | fps.pcnt_neutral = 1.0 * (double)neutral_count / cm->MBs; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 778 | |
| 779 | if (mvcount > 0) |
| 780 | { |
| 781 | fps.MVr = (double)sum_mvr / (double)mvcount; |
| 782 | fps.mvr_abs = (double)sum_mvr_abs / (double)mvcount; |
| 783 | fps.MVc = (double)sum_mvc / (double)mvcount; |
| 784 | fps.mvc_abs = (double)sum_mvc_abs / (double)mvcount; |
| 785 | fps.MVrv = ((double)sum_mvrs - (fps.MVr * fps.MVr / (double)mvcount)) / (double)mvcount; |
| 786 | fps.MVcv = ((double)sum_mvcs - (fps.MVc * fps.MVc / (double)mvcount)) / (double)mvcount; |
| 787 | fps.mv_in_out_count = (double)sum_in_vectors / (double)(mvcount * 2); |
| 788 | |
| 789 | fps.pcnt_motion = 1.0 * (double)mvcount / cpi->common.MBs; |
| 790 | } |
| 791 | |
| 792 | // TODO: handle the case when duration is set to 0, or something less |
| 793 | // than the full time between subsequent cpi->source_time_stamp s . |
John Koleszar | 88841f1 | 2011-04-13 14:00:18 -0400 | [diff] [blame] | 794 | fps.duration = cpi->source->ts_end |
| 795 | - cpi->source->ts_start; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 796 | |
Adrian Grange | ed40ff9 | 2011-03-10 11:32:48 -0800 | [diff] [blame] | 797 | // don't want to do output stats with a stack variable! |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 798 | memcpy(cpi->twopass.this_frame_stats, |
John Koleszar | bb7dd5b | 2010-10-14 16:40:12 -0400 | [diff] [blame] | 799 | &fps, |
| 800 | sizeof(FIRSTPASS_STATS)); |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 801 | output_stats(cpi, cpi->output_pkt_list, cpi->twopass.this_frame_stats); |
| 802 | accumulate_stats(cpi->twopass.total_stats, &fps); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | // Copy the previous Last Frame into the GF buffer if specific conditions for doing so are met |
| 806 | if ((cm->current_video_frame > 0) && |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 807 | (cpi->twopass.this_frame_stats->pcnt_inter > 0.20) && |
| 808 | ((cpi->twopass.this_frame_stats->intra_error / cpi->twopass.this_frame_stats->coded_error) > 2.0)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 809 | { |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 810 | vp8_yv12_copy_frame_ptr(lst_yv12, gld_yv12); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | // swap frame pointers so last frame refers to the frame we just compressed |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 814 | vp8_swap_yv12_buffer(lst_yv12, new_yv12); |
| 815 | vp8_yv12_extend_frame_borders(lst_yv12); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 816 | |
| 817 | // Special case for the first frame. Copy into the GF buffer as a second reference. |
| 818 | if (cm->current_video_frame == 0) |
| 819 | { |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 820 | vp8_yv12_copy_frame_ptr(lst_yv12, gld_yv12); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | |
| 824 | // use this to see what the first pass reconstruction looks like |
| 825 | if (0) |
| 826 | { |
| 827 | char filename[512]; |
| 828 | FILE *recon_file; |
| 829 | sprintf(filename, "enc%04d.yuv", (int) cm->current_video_frame); |
| 830 | |
| 831 | if (cm->current_video_frame == 0) |
| 832 | recon_file = fopen(filename, "wb"); |
| 833 | else |
| 834 | recon_file = fopen(filename, "ab"); |
| 835 | |
Timothy B. Terriberry | c4d7e5e | 2010-10-27 16:04:02 -0700 | [diff] [blame] | 836 | if(fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 837 | fclose(recon_file); |
| 838 | } |
| 839 | |
| 840 | cm->current_video_frame++; |
| 841 | |
| 842 | } |
| 843 | extern const int vp8_bits_per_mb[2][QINDEX_RANGE]; |
| 844 | |
Paul Wilkins | 405499d | 2011-01-10 16:02:51 +0000 | [diff] [blame] | 845 | #define BASE_ERRPERMB 150 |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 846 | static int estimate_max_q(VP8_COMP *cpi, double section_err, int section_target_bandwitdh) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 847 | { |
| 848 | int Q; |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 849 | int num_mbs = cpi->common.MBs; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 850 | int target_norm_bits_per_mb; |
| 851 | |
| 852 | double err_per_mb = section_err / num_mbs; |
| 853 | double correction_factor; |
| 854 | double corr_high; |
| 855 | double speed_correction = 1.0; |
| 856 | double rolling_ratio; |
| 857 | |
| 858 | double pow_highq = 0.90; |
| 859 | double pow_lowq = 0.40; |
| 860 | |
| 861 | if (section_target_bandwitdh <= 0) |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 862 | return cpi->twopass.maxq_max_limit; // Highest value allowed |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 863 | |
| 864 | target_norm_bits_per_mb = (section_target_bandwitdh < (1 << 20)) ? (512 * section_target_bandwitdh) / num_mbs : 512 * (section_target_bandwitdh / num_mbs); |
| 865 | |
| 866 | // Calculate a corrective factor based on a rolling ratio of bits spent vs target bits |
| 867 | if ((cpi->rolling_target_bits > 0.0) && (cpi->active_worst_quality < cpi->worst_quality)) |
| 868 | { |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 869 | rolling_ratio = (double)cpi->rolling_actual_bits / (double)cpi->rolling_target_bits; |
| 870 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 871 | //if ( cpi->twopass.est_max_qcorrection_factor > rolling_ratio ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 872 | if (rolling_ratio < 0.95) |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 873 | //cpi->twopass.est_max_qcorrection_factor *= adjustment_rate; |
| 874 | cpi->twopass.est_max_qcorrection_factor -= 0.005; |
| 875 | //else if ( cpi->twopass.est_max_qcorrection_factor < rolling_ratio ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 876 | else if (rolling_ratio > 1.05) |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 877 | cpi->twopass.est_max_qcorrection_factor += 0.005; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 878 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 879 | //cpi->twopass.est_max_qcorrection_factor /= adjustment_rate; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 880 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 881 | cpi->twopass.est_max_qcorrection_factor = (cpi->twopass.est_max_qcorrection_factor < 0.1) ? 0.1 : (cpi->twopass.est_max_qcorrection_factor > 10.0) ? 10.0 : cpi->twopass.est_max_qcorrection_factor; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | // Corrections for higher compression speed settings (reduced compression expected) |
| 885 | if ((cpi->compressor_speed == 3) || (cpi->compressor_speed == 1)) |
| 886 | { |
| 887 | if (cpi->oxcf.cpu_used <= 5) |
| 888 | speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); |
| 889 | else |
| 890 | speed_correction = 1.25; |
| 891 | } |
| 892 | |
| 893 | // Correction factor used for Q values >= 20 |
| 894 | corr_high = pow(err_per_mb / BASE_ERRPERMB, pow_highq); |
Paul Wilkins | 3af3593 | 2011-01-07 16:33:59 +0000 | [diff] [blame] | 895 | corr_high = (corr_high < 0.05) |
| 896 | ? 0.05 : (corr_high > 5.0) ? 5.0 : corr_high; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 897 | |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 898 | // Try and pick a max Q that will be high enough to encode the |
Paul Wilkins | 3af3593 | 2011-01-07 16:33:59 +0000 | [diff] [blame] | 899 | // content at the given rate. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 900 | for (Q = cpi->twopass.maxq_min_limit; Q < cpi->twopass.maxq_max_limit; Q++) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 901 | { |
| 902 | int bits_per_mb_at_this_q; |
| 903 | |
| 904 | if (Q < 50) |
| 905 | { |
| 906 | correction_factor = pow(err_per_mb / BASE_ERRPERMB, (pow_lowq + Q * 0.01)); |
| 907 | correction_factor = (correction_factor < 0.05) ? 0.05 : (correction_factor > 5.0) ? 5.0 : correction_factor; |
| 908 | } |
| 909 | else |
| 910 | correction_factor = corr_high; |
| 911 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 912 | bits_per_mb_at_this_q = (int)(.5 + correction_factor |
| 913 | * speed_correction * cpi->twopass.est_max_qcorrection_factor |
| 914 | * cpi->twopass.section_max_qfactor |
| 915 | * (double)vp8_bits_per_mb[INTER_FRAME][Q] / 1.0); |
| 916 | //bits_per_mb_at_this_q = (int)(.5 + correction_factor * speed_correction * cpi->twopass.est_max_qcorrection_factor * (double)vp8_bits_per_mb[INTER_FRAME][Q] / 1.0); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 917 | |
| 918 | if (bits_per_mb_at_this_q <= target_norm_bits_per_mb) |
| 919 | break; |
| 920 | } |
| 921 | |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 922 | // Restriction on active max q for constrained quality mode. |
| 923 | if ( (cpi->oxcf.end_usage == USAGE_CONSTRAINED_QUALITY) && |
| 924 | (Q < cpi->cq_target_quality) ) |
Paul Wilkins | 55acda9 | 2011-01-12 17:08:42 +0000 | [diff] [blame] | 925 | //(Q < cpi->oxcf.cq_level;) ) |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 926 | { |
| 927 | Q = cpi->cq_target_quality; |
Paul Wilkins | 55acda9 | 2011-01-12 17:08:42 +0000 | [diff] [blame] | 928 | //Q = cpi->oxcf.cq_level; |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 929 | } |
| 930 | |
Paul Wilkins | cf7c473 | 2011-01-10 16:41:53 +0000 | [diff] [blame] | 931 | // Adjust maxq_min_limit and maxq_max_limit limits based on |
| 932 | // averaga q observed in clip for non kf/gf.arf frames |
| 933 | // Give average a chance to settle though. |
| 934 | if ( (cpi->ni_frames > |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 935 | ((unsigned int)cpi->twopass.total_stats->count >> 8)) && |
Paul Wilkins | cf7c473 | 2011-01-10 16:41:53 +0000 | [diff] [blame] | 936 | (cpi->ni_frames > 150) ) |
| 937 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 938 | cpi->twopass.maxq_max_limit = ((cpi->ni_av_qi + 32) < cpi->worst_quality) |
Paul Wilkins | cf7c473 | 2011-01-10 16:41:53 +0000 | [diff] [blame] | 939 | ? (cpi->ni_av_qi + 32) : cpi->worst_quality; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 940 | cpi->twopass.maxq_min_limit = ((cpi->ni_av_qi - 32) > cpi->best_quality) |
Paul Wilkins | cf7c473 | 2011-01-10 16:41:53 +0000 | [diff] [blame] | 941 | ? (cpi->ni_av_qi - 32) : cpi->best_quality; |
| 942 | } |
| 943 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 944 | return Q; |
| 945 | } |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 946 | static int estimate_q(VP8_COMP *cpi, double section_err, int section_target_bandwitdh) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 947 | { |
| 948 | int Q; |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 949 | int num_mbs = cpi->common.MBs; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 950 | int target_norm_bits_per_mb; |
| 951 | |
| 952 | double err_per_mb = section_err / num_mbs; |
| 953 | double correction_factor; |
| 954 | double corr_high; |
| 955 | double speed_correction = 1.0; |
| 956 | double pow_highq = 0.90; |
| 957 | double pow_lowq = 0.40; |
| 958 | |
| 959 | target_norm_bits_per_mb = (section_target_bandwitdh < (1 << 20)) ? (512 * section_target_bandwitdh) / num_mbs : 512 * (section_target_bandwitdh / num_mbs); |
| 960 | |
| 961 | // Corrections for higher compression speed settings (reduced compression expected) |
| 962 | if ((cpi->compressor_speed == 3) || (cpi->compressor_speed == 1)) |
| 963 | { |
| 964 | if (cpi->oxcf.cpu_used <= 5) |
| 965 | speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); |
| 966 | else |
| 967 | speed_correction = 1.25; |
| 968 | } |
| 969 | |
| 970 | // Correction factor used for Q values >= 20 |
| 971 | corr_high = pow(err_per_mb / BASE_ERRPERMB, pow_highq); |
| 972 | corr_high = (corr_high < 0.05) ? 0.05 : (corr_high > 5.0) ? 5.0 : corr_high; |
| 973 | |
| 974 | // Try and pick a Q that can encode the content at the given rate. |
| 975 | for (Q = 0; Q < MAXQ; Q++) |
| 976 | { |
| 977 | int bits_per_mb_at_this_q; |
| 978 | |
| 979 | if (Q < 50) |
| 980 | { |
| 981 | correction_factor = pow(err_per_mb / BASE_ERRPERMB, (pow_lowq + Q * 0.01)); |
| 982 | correction_factor = (correction_factor < 0.05) ? 0.05 : (correction_factor > 5.0) ? 5.0 : correction_factor; |
| 983 | } |
| 984 | else |
| 985 | correction_factor = corr_high; |
| 986 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 987 | bits_per_mb_at_this_q = (int)(.5 + correction_factor * speed_correction * cpi->twopass.est_max_qcorrection_factor * (double)vp8_bits_per_mb[INTER_FRAME][Q] / 1.0); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 988 | |
| 989 | if (bits_per_mb_at_this_q <= target_norm_bits_per_mb) |
| 990 | break; |
| 991 | } |
| 992 | |
| 993 | return Q; |
| 994 | } |
| 995 | |
| 996 | // Estimate a worst case Q for a KF group |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 997 | static int estimate_kf_group_q(VP8_COMP *cpi, double section_err, int section_target_bandwitdh, double group_iiratio) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 998 | { |
| 999 | int Q; |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 1000 | int num_mbs = cpi->common.MBs; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1001 | int target_norm_bits_per_mb = (512 * section_target_bandwitdh) / num_mbs; |
| 1002 | int bits_per_mb_at_this_q; |
| 1003 | |
| 1004 | double err_per_mb = section_err / num_mbs; |
| 1005 | double err_correction_factor; |
| 1006 | double corr_high; |
| 1007 | double speed_correction = 1.0; |
| 1008 | double current_spend_ratio = 1.0; |
| 1009 | |
| 1010 | double pow_highq = (POW1 < 0.6) ? POW1 + 0.3 : 0.90; |
| 1011 | double pow_lowq = (POW1 < 0.7) ? POW1 + 0.1 : 0.80; |
| 1012 | |
| 1013 | double iiratio_correction_factor = 1.0; |
| 1014 | |
| 1015 | double combined_correction_factor; |
| 1016 | |
| 1017 | // Trap special case where the target is <= 0 |
| 1018 | if (target_norm_bits_per_mb <= 0) |
| 1019 | return MAXQ * 2; |
| 1020 | |
| 1021 | // Calculate a corrective factor based on a rolling ratio of bits spent vs target bits |
| 1022 | // This is clamped to the range 0.1 to 10.0 |
| 1023 | if (cpi->long_rolling_target_bits <= 0) |
| 1024 | current_spend_ratio = 10.0; |
| 1025 | else |
| 1026 | { |
| 1027 | current_spend_ratio = (double)cpi->long_rolling_actual_bits / (double)cpi->long_rolling_target_bits; |
| 1028 | current_spend_ratio = (current_spend_ratio > 10.0) ? 10.0 : (current_spend_ratio < 0.1) ? 0.1 : current_spend_ratio; |
| 1029 | } |
| 1030 | |
| 1031 | // Calculate a correction factor based on the quality of prediction in the sequence as indicated by intra_inter error score ratio (IIRatio) |
| 1032 | // The idea here is to favour subsampling in the hardest sections vs the easyest. |
| 1033 | iiratio_correction_factor = 1.0 - ((group_iiratio - 6.0) * 0.1); |
| 1034 | |
| 1035 | if (iiratio_correction_factor < 0.5) |
| 1036 | iiratio_correction_factor = 0.5; |
| 1037 | |
| 1038 | // Corrections for higher compression speed settings (reduced compression expected) |
| 1039 | if ((cpi->compressor_speed == 3) || (cpi->compressor_speed == 1)) |
| 1040 | { |
| 1041 | if (cpi->oxcf.cpu_used <= 5) |
| 1042 | speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); |
| 1043 | else |
| 1044 | speed_correction = 1.25; |
| 1045 | } |
| 1046 | |
| 1047 | // Combine the various factors calculated above |
| 1048 | combined_correction_factor = speed_correction * iiratio_correction_factor * current_spend_ratio; |
| 1049 | |
| 1050 | // Correction factor used for Q values >= 20 |
| 1051 | corr_high = pow(err_per_mb / BASE_ERRPERMB, pow_highq); |
| 1052 | corr_high = (corr_high < 0.05) ? 0.05 : (corr_high > 5.0) ? 5.0 : corr_high; |
| 1053 | |
| 1054 | // Try and pick a Q that should be high enough to encode the content at the given rate. |
| 1055 | for (Q = 0; Q < MAXQ; Q++) |
| 1056 | { |
| 1057 | // Q values < 20 treated as a special case |
| 1058 | if (Q < 20) |
| 1059 | { |
| 1060 | err_correction_factor = pow(err_per_mb / BASE_ERRPERMB, (pow_lowq + Q * 0.01)); |
| 1061 | err_correction_factor = (err_correction_factor < 0.05) ? 0.05 : (err_correction_factor > 5.0) ? 5.0 : err_correction_factor; |
| 1062 | } |
| 1063 | else |
| 1064 | err_correction_factor = corr_high; |
| 1065 | |
| 1066 | bits_per_mb_at_this_q = (int)(.5 + err_correction_factor * combined_correction_factor * (double)vp8_bits_per_mb[INTER_FRAME][Q]); |
| 1067 | |
| 1068 | if (bits_per_mb_at_this_q <= target_norm_bits_per_mb) |
| 1069 | break; |
| 1070 | } |
| 1071 | |
| 1072 | // If we could not hit the target even at Max Q then estimate what Q would have bee required |
| 1073 | while ((bits_per_mb_at_this_q > target_norm_bits_per_mb) && (Q < (MAXQ * 2))) |
| 1074 | { |
| 1075 | |
| 1076 | bits_per_mb_at_this_q = (int)(0.96 * bits_per_mb_at_this_q); |
| 1077 | Q++; |
| 1078 | } |
| 1079 | |
| 1080 | if (0) |
| 1081 | { |
| 1082 | FILE *f = fopen("estkf_q.stt", "a"); |
| 1083 | fprintf(f, "%8d %8d %8d %8.2f %8.3f %8.2f %8.3f %8.3f %8.3f %8d\n", cpi->common.current_video_frame, bits_per_mb_at_this_q, |
| 1084 | target_norm_bits_per_mb, err_per_mb, err_correction_factor, |
| 1085 | current_spend_ratio, group_iiratio, iiratio_correction_factor, |
| 1086 | (double)cpi->buffer_level / (double)cpi->oxcf.optimal_buffer_level, Q); |
| 1087 | fclose(f); |
| 1088 | } |
| 1089 | |
| 1090 | return Q; |
| 1091 | } |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 1092 | |
| 1093 | // For cq mode estimate a cq level that matches the observed |
| 1094 | // complexity and data rate. |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 1095 | static int estimate_cq(VP8_COMP *cpi, double section_err, int section_target_bandwitdh) |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 1096 | { |
| 1097 | int Q; |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 1098 | int num_mbs = cpi->common.MBs; |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 1099 | int target_norm_bits_per_mb; |
| 1100 | |
| 1101 | double err_per_mb = section_err / num_mbs; |
| 1102 | double correction_factor; |
| 1103 | double corr_high; |
| 1104 | double speed_correction = 1.0; |
| 1105 | double pow_highq = 0.90; |
| 1106 | double pow_lowq = 0.40; |
| 1107 | double clip_iiratio; |
| 1108 | double clip_iifactor; |
| 1109 | |
| 1110 | target_norm_bits_per_mb = (section_target_bandwitdh < (1 << 20)) |
| 1111 | ? (512 * section_target_bandwitdh) / num_mbs |
| 1112 | : 512 * (section_target_bandwitdh / num_mbs); |
| 1113 | |
| 1114 | // Corrections for higher compression speed settings |
| 1115 | // (reduced compression expected) |
| 1116 | if ((cpi->compressor_speed == 3) || (cpi->compressor_speed == 1)) |
| 1117 | { |
| 1118 | if (cpi->oxcf.cpu_used <= 5) |
| 1119 | speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); |
| 1120 | else |
| 1121 | speed_correction = 1.25; |
| 1122 | } |
| 1123 | // II ratio correction factor for clip as a whole |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1124 | clip_iiratio = cpi->twopass.total_stats->intra_error / |
| 1125 | DOUBLE_DIVIDE_CHECK(cpi->twopass.total_stats->coded_error); |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 1126 | clip_iifactor = 1.0 - ((clip_iiratio - 10.0) * 0.025); |
| 1127 | if (clip_iifactor < 0.80) |
| 1128 | clip_iifactor = 0.80; |
| 1129 | |
| 1130 | // Correction factor used for Q values >= 20 |
| 1131 | corr_high = pow(err_per_mb / BASE_ERRPERMB, pow_highq); |
| 1132 | corr_high = (corr_high < 0.05) ? 0.05 : (corr_high > 5.0) ? 5.0 : corr_high; |
| 1133 | |
| 1134 | // Try and pick a Q that can encode the content at the given rate. |
| 1135 | for (Q = 0; Q < MAXQ; Q++) |
| 1136 | { |
| 1137 | int bits_per_mb_at_this_q; |
| 1138 | |
| 1139 | if (Q < 50) |
| 1140 | { |
| 1141 | correction_factor = |
| 1142 | pow( err_per_mb / BASE_ERRPERMB, (pow_lowq + Q * 0.01)); |
| 1143 | |
| 1144 | correction_factor = (correction_factor < 0.05) ? 0.05 |
| 1145 | : (correction_factor > 5.0) ? 5.0 |
| 1146 | : correction_factor; |
| 1147 | } |
| 1148 | else |
| 1149 | correction_factor = corr_high; |
| 1150 | |
| 1151 | bits_per_mb_at_this_q = |
| 1152 | (int)( .5 + correction_factor * |
| 1153 | speed_correction * |
| 1154 | clip_iifactor * |
| 1155 | (double)vp8_bits_per_mb[INTER_FRAME][Q] / 1.0); |
| 1156 | |
| 1157 | if (bits_per_mb_at_this_q <= target_norm_bits_per_mb) |
| 1158 | break; |
| 1159 | } |
| 1160 | |
| 1161 | return cq_level[Q]; |
| 1162 | } |
| 1163 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1164 | extern void vp8_new_frame_rate(VP8_COMP *cpi, double framerate); |
| 1165 | |
| 1166 | void vp8_init_second_pass(VP8_COMP *cpi) |
| 1167 | { |
| 1168 | FIRSTPASS_STATS this_frame; |
| 1169 | FIRSTPASS_STATS *start_pos; |
| 1170 | |
| 1171 | double two_pass_min_rate = (double)(cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100); |
| 1172 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1173 | zero_stats(cpi->twopass.total_stats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1174 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1175 | if (!cpi->twopass.stats_in_end) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1176 | return; |
| 1177 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1178 | *cpi->twopass.total_stats = *cpi->twopass.stats_in_end; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1179 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1180 | cpi->twopass.total_error_left = cpi->twopass.total_stats->ssim_weighted_pred_err; |
| 1181 | cpi->twopass.total_intra_error_left = cpi->twopass.total_stats->intra_error; |
| 1182 | cpi->twopass.total_coded_error_left = cpi->twopass.total_stats->coded_error; |
| 1183 | cpi->twopass.start_tot_err_left = cpi->twopass.total_error_left; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1184 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1185 | //cpi->twopass.bits_left = (long long)(cpi->twopass.total_stats->count * cpi->oxcf.target_bandwidth / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.frame_rate)); |
| 1186 | //cpi->twopass.bits_left -= (long long)(cpi->twopass.total_stats->count * two_pass_min_rate / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.frame_rate)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1187 | |
| 1188 | // each frame can have a different duration, as the frame rate in the source |
| 1189 | // isn't guaranteed to be constant. The frame rate prior to the first frame |
| 1190 | // encoded in the second pass is a guess. However the sum duration is not. |
| 1191 | // Its calculated based on the actual durations of all frames from the first |
| 1192 | // pass. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1193 | vp8_new_frame_rate(cpi, 10000000.0 * cpi->twopass.total_stats->count / cpi->twopass.total_stats->duration); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1194 | |
| 1195 | cpi->output_frame_rate = cpi->oxcf.frame_rate; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1196 | cpi->twopass.bits_left = (long long)(cpi->twopass.total_stats->duration * cpi->oxcf.target_bandwidth / 10000000.0) ; |
| 1197 | cpi->twopass.bits_left -= (long long)(cpi->twopass.total_stats->duration * two_pass_min_rate / 10000000.0); |
| 1198 | cpi->twopass.clip_bits_total = cpi->twopass.bits_left; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1199 | |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 1200 | // Calculate a minimum intra value to be used in determining the IIratio |
| 1201 | // scores used in the second pass. We have this minimum to make sure |
| 1202 | // that clips that are static but "low complexity" in the intra domain |
| 1203 | // are still boosted appropriately for KF/GF/ARF |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1204 | cpi->twopass.kf_intra_err_min = KF_MB_INTRA_MIN * cpi->common.MBs; |
| 1205 | cpi->twopass.gf_intra_err_min = GF_MB_INTRA_MIN * cpi->common.MBs; |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 1206 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1207 | avg_stats(cpi->twopass.total_stats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1208 | |
| 1209 | // Scan the first pass file and calculate an average Intra / Inter error score ratio for the sequence |
| 1210 | { |
| 1211 | double sum_iiratio = 0.0; |
| 1212 | double IIRatio; |
| 1213 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1214 | start_pos = cpi->twopass.stats_in; // Note starting "file" position |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1215 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1216 | while (input_stats(cpi, &this_frame) != EOF) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1217 | { |
| 1218 | IIRatio = this_frame.intra_error / DOUBLE_DIVIDE_CHECK(this_frame.coded_error); |
| 1219 | IIRatio = (IIRatio < 1.0) ? 1.0 : (IIRatio > 20.0) ? 20.0 : IIRatio; |
| 1220 | sum_iiratio += IIRatio; |
| 1221 | } |
| 1222 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1223 | cpi->twopass.avg_iiratio = sum_iiratio / DOUBLE_DIVIDE_CHECK((double)cpi->twopass.total_stats->count); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1224 | |
| 1225 | // Reset file position |
| 1226 | reset_fpf_position(cpi, start_pos); |
| 1227 | } |
| 1228 | |
| 1229 | // Scan the first pass file and calculate a modified total error based upon the bias/power function |
| 1230 | // used to allocate bits |
| 1231 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1232 | start_pos = cpi->twopass.stats_in; // Note starting "file" position |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1233 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1234 | cpi->twopass.modified_error_total = 0.0; |
| 1235 | cpi->twopass.modified_error_used = 0.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1236 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1237 | while (input_stats(cpi, &this_frame) != EOF) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1238 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1239 | cpi->twopass.modified_error_total += calculate_modified_err(cpi, &this_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1240 | } |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1241 | cpi->twopass.modified_error_left = cpi->twopass.modified_error_total; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1242 | |
| 1243 | reset_fpf_position(cpi, start_pos); // Reset file position |
| 1244 | |
| 1245 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1246 | } |
| 1247 | |
| 1248 | void vp8_end_second_pass(VP8_COMP *cpi) |
| 1249 | { |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1250 | } |
| 1251 | |
Paul Wilkins | 0cdfef1 | 2011-01-21 17:52:00 +0000 | [diff] [blame] | 1252 | // This function gives and estimate of how badly we believe |
Adrian Grange | ed40ff9 | 2011-03-10 11:32:48 -0800 | [diff] [blame] | 1253 | // the prediction quality is decaying from frame to frame. |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1254 | static double get_prediction_decay_rate(VP8_COMP *cpi, FIRSTPASS_STATS *next_frame) |
Paul Wilkins | 0cdfef1 | 2011-01-21 17:52:00 +0000 | [diff] [blame] | 1255 | { |
| 1256 | double prediction_decay_rate; |
| 1257 | double motion_decay; |
| 1258 | double motion_pct = next_frame->pcnt_motion; |
| 1259 | |
| 1260 | |
| 1261 | // Initial basis is the % mbs inter coded |
| 1262 | prediction_decay_rate = next_frame->pcnt_inter; |
| 1263 | |
| 1264 | // High % motion -> somewhat higher decay rate |
| 1265 | motion_decay = (1.0 - (motion_pct / 20.0)); |
| 1266 | if (motion_decay < prediction_decay_rate) |
| 1267 | prediction_decay_rate = motion_decay; |
| 1268 | |
| 1269 | // Adjustment to decay rate based on speed of motion |
| 1270 | { |
| 1271 | double this_mv_rabs; |
| 1272 | double this_mv_cabs; |
| 1273 | double distance_factor; |
| 1274 | |
| 1275 | this_mv_rabs = fabs(next_frame->mvr_abs * motion_pct); |
| 1276 | this_mv_cabs = fabs(next_frame->mvc_abs * motion_pct); |
| 1277 | |
| 1278 | distance_factor = sqrt((this_mv_rabs * this_mv_rabs) + |
| 1279 | (this_mv_cabs * this_mv_cabs)) / 250.0; |
| 1280 | distance_factor = ((distance_factor > 1.0) |
| 1281 | ? 0.0 : (1.0 - distance_factor)); |
| 1282 | if (distance_factor < prediction_decay_rate) |
| 1283 | prediction_decay_rate = distance_factor; |
| 1284 | } |
| 1285 | |
| 1286 | return prediction_decay_rate; |
| 1287 | } |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 1288 | |
Paul Wilkins | de87c42 | 2011-03-08 14:46:22 +0000 | [diff] [blame] | 1289 | // Function to test for a condition where a complex transition is followed |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1290 | // by a static section. For example in slide shows where there is a fade |
| 1291 | // between slides. This is to help with more optimal kf and gf positioning. |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1292 | static int detect_transition_to_still( |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1293 | VP8_COMP *cpi, |
| 1294 | int frame_interval, |
| 1295 | int still_interval, |
| 1296 | double loop_decay_rate, |
| 1297 | double decay_accumulator ) |
| 1298 | { |
| 1299 | BOOL trans_to_still = FALSE; |
| 1300 | |
| 1301 | // Break clause to detect very still sections after motion |
Paul Wilkins | de87c42 | 2011-03-08 14:46:22 +0000 | [diff] [blame] | 1302 | // For example a static image after a fade or other transition |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1303 | // instead of a clean scene cut. |
| 1304 | if ( (frame_interval > MIN_GF_INTERVAL) && |
| 1305 | (loop_decay_rate >= 0.999) && |
| 1306 | (decay_accumulator < 0.9) ) |
| 1307 | { |
| 1308 | int j; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1309 | FIRSTPASS_STATS * position = cpi->twopass.stats_in; |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1310 | FIRSTPASS_STATS tmp_next_frame; |
| 1311 | double decay_rate; |
| 1312 | |
| 1313 | // Look ahead a few frames to see if static condition |
| 1314 | // persists... |
| 1315 | for ( j = 0; j < still_interval; j++ ) |
| 1316 | { |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1317 | if (EOF == input_stats(cpi, &tmp_next_frame)) |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1318 | break; |
| 1319 | |
| 1320 | decay_rate = get_prediction_decay_rate(cpi, &tmp_next_frame); |
| 1321 | if ( decay_rate < 0.999 ) |
| 1322 | break; |
| 1323 | } |
| 1324 | // Reset file position |
| 1325 | reset_fpf_position(cpi, position); |
| 1326 | |
| 1327 | // Only if it does do we signal a transition to still |
| 1328 | if ( j == still_interval ) |
| 1329 | trans_to_still = TRUE; |
| 1330 | } |
| 1331 | |
| 1332 | return trans_to_still; |
| 1333 | } |
Paul Wilkins | 0cdfef1 | 2011-01-21 17:52:00 +0000 | [diff] [blame] | 1334 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1335 | // Analyse and define a gf/arf group . |
| 1336 | static void define_gf_group(VP8_COMP *cpi, FIRSTPASS_STATS *this_frame) |
| 1337 | { |
| 1338 | FIRSTPASS_STATS next_frame; |
| 1339 | FIRSTPASS_STATS *start_pos; |
| 1340 | int i; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1341 | double boost_score = 0.0; |
| 1342 | double old_boost_score = 0.0; |
| 1343 | double gf_group_err = 0.0; |
| 1344 | double gf_first_frame_err = 0.0; |
| 1345 | double mod_frame_err = 0.0; |
| 1346 | |
| 1347 | double mv_accumulator_rabs = 0.0; |
| 1348 | double mv_accumulator_cabs = 0.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1349 | double mv_ratio_accumulator = 0.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1350 | double decay_accumulator = 1.0; |
| 1351 | |
| 1352 | double boost_factor = IIFACTOR; |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1353 | double loop_decay_rate = 1.00; // Starting decay rate |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1354 | |
| 1355 | double this_frame_mv_in_out = 0.0; |
| 1356 | double mv_in_out_accumulator = 0.0; |
| 1357 | double abs_mv_in_out_accumulator = 0.0; |
| 1358 | double mod_err_per_mb_accumulator = 0.0; |
| 1359 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1360 | int max_bits = frame_max_bits(cpi); // Max for a single frame |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1361 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1362 | unsigned int allow_alt_ref = |
| 1363 | cpi->oxcf.play_alternate && cpi->oxcf.lag_in_frames; |
| 1364 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1365 | cpi->twopass.gf_group_bits = 0; |
| 1366 | cpi->twopass.gf_decay_rate = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1367 | |
| 1368 | vp8_clear_system_state(); //__asm emms; |
| 1369 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1370 | start_pos = cpi->twopass.stats_in; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1371 | |
Guillermo Ballester Valor | 5a72620 | 2010-06-11 14:33:49 -0400 | [diff] [blame] | 1372 | vpx_memset(&next_frame, 0, sizeof(next_frame)); // assure clean |
| 1373 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1374 | // Preload the stats for the next frame. |
| 1375 | mod_frame_err = calculate_modified_err(cpi, this_frame); |
| 1376 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1377 | // Note the error of the frame at the start of the group (this will be |
| 1378 | // the GF frame error if we code a normal gf |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1379 | gf_first_frame_err = mod_frame_err; |
| 1380 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1381 | // Special treatment if the current frame is a key frame (which is also |
| 1382 | // a gf). If it is then its error score (and hence bit allocation) need |
| 1383 | // to be subtracted out from the calculation for the GF group |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1384 | if (cpi->common.frame_type == KEY_FRAME) |
| 1385 | gf_group_err -= gf_first_frame_err; |
| 1386 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1387 | // Scan forward to try and work out how many frames the next gf group |
| 1388 | // should contain and what level of boost is appropriate for the GF |
| 1389 | // or ARF that will be coded with the group |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1390 | i = 0; |
| 1391 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1392 | while (((i < cpi->twopass.static_scene_max_gf_interval) || |
| 1393 | ((cpi->twopass.frames_to_key - i) < MIN_GF_INTERVAL)) && |
| 1394 | (i < cpi->twopass.frames_to_key)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1395 | { |
| 1396 | double r; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1397 | double this_frame_mvr_ratio; |
| 1398 | double this_frame_mvc_ratio; |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1399 | //double motion_pct = next_frame.pcnt_motion; |
Adrian Grange | 815e1e9 | 2011-01-20 13:13:33 +0000 | [diff] [blame] | 1400 | double motion_pct; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1401 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1402 | i++; // Increment the loop counter |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1403 | |
| 1404 | // Accumulate error score of frames in this gf group |
| 1405 | mod_frame_err = calculate_modified_err(cpi, this_frame); |
| 1406 | |
| 1407 | gf_group_err += mod_frame_err; |
| 1408 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1409 | mod_err_per_mb_accumulator += |
| 1410 | mod_frame_err / DOUBLE_DIVIDE_CHECK((double)cpi->common.MBs); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1411 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1412 | if (EOF == input_stats(cpi, &next_frame)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1413 | break; |
| 1414 | |
| 1415 | // Accumulate motion stats. |
Adrian Grange | 815e1e9 | 2011-01-20 13:13:33 +0000 | [diff] [blame] | 1416 | motion_pct = next_frame.pcnt_motion; |
Paul Wilkins | 788c0eb | 2010-10-02 17:31:46 +0100 | [diff] [blame] | 1417 | mv_accumulator_rabs += fabs(next_frame.mvr_abs * motion_pct); |
| 1418 | mv_accumulator_cabs += fabs(next_frame.mvc_abs * motion_pct); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1419 | |
| 1420 | //Accumulate Motion In/Out of frame stats |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1421 | this_frame_mv_in_out = |
| 1422 | next_frame.mv_in_out_count * motion_pct; |
| 1423 | mv_in_out_accumulator += |
| 1424 | next_frame.mv_in_out_count * motion_pct; |
| 1425 | abs_mv_in_out_accumulator += |
| 1426 | fabs(next_frame.mv_in_out_count * motion_pct); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1427 | |
| 1428 | // If there is a significant amount of motion |
Paul Wilkins | 788c0eb | 2010-10-02 17:31:46 +0100 | [diff] [blame] | 1429 | if (motion_pct > 0.05) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1430 | { |
Paul Wilkins | 788c0eb | 2010-10-02 17:31:46 +0100 | [diff] [blame] | 1431 | this_frame_mvr_ratio = fabs(next_frame.mvr_abs) / |
| 1432 | DOUBLE_DIVIDE_CHECK(fabs(next_frame.MVr)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1433 | |
Paul Wilkins | 788c0eb | 2010-10-02 17:31:46 +0100 | [diff] [blame] | 1434 | this_frame_mvc_ratio = fabs(next_frame.mvc_abs) / |
| 1435 | DOUBLE_DIVIDE_CHECK(fabs(next_frame.MVc)); |
| 1436 | |
| 1437 | mv_ratio_accumulator += |
| 1438 | (this_frame_mvr_ratio < next_frame.mvr_abs) |
| 1439 | ? (this_frame_mvr_ratio * motion_pct) |
| 1440 | : next_frame.mvr_abs * motion_pct; |
| 1441 | |
| 1442 | mv_ratio_accumulator += |
| 1443 | (this_frame_mvc_ratio < next_frame.mvc_abs) |
| 1444 | ? (this_frame_mvc_ratio * motion_pct) |
| 1445 | : next_frame.mvc_abs * motion_pct; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1446 | } |
| 1447 | else |
| 1448 | { |
| 1449 | mv_ratio_accumulator += 0.0; |
| 1450 | this_frame_mvr_ratio = 1.0; |
| 1451 | this_frame_mvc_ratio = 1.0; |
| 1452 | } |
| 1453 | |
| 1454 | // Underlying boost factor is based on inter intra error ratio |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1455 | r = ( boost_factor * |
| 1456 | ( next_frame.intra_error / |
| 1457 | DOUBLE_DIVIDE_CHECK(next_frame.coded_error))); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1458 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1459 | if (next_frame.intra_error > cpi->twopass.gf_intra_err_min) |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 1460 | r = (IIKFACTOR2 * next_frame.intra_error / |
| 1461 | DOUBLE_DIVIDE_CHECK(next_frame.coded_error)); |
| 1462 | else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1463 | r = (IIKFACTOR2 * cpi->twopass.gf_intra_err_min / |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 1464 | DOUBLE_DIVIDE_CHECK(next_frame.coded_error)); |
| 1465 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1466 | // Increase boost for frames where new data coming into frame |
| 1467 | // (eg zoom out). Slightly reduce boost if there is a net balance |
| 1468 | // of motion out of the frame (zoom in). |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1469 | // The range for this_frame_mv_in_out is -1.0 to +1.0 |
| 1470 | if (this_frame_mv_in_out > 0.0) |
| 1471 | r += r * (this_frame_mv_in_out * 2.0); |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1472 | // In extreme case boost is halved |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1473 | else |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1474 | r += r * (this_frame_mv_in_out / 2.0); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1475 | |
| 1476 | if (r > GF_RMAX) |
| 1477 | r = GF_RMAX; |
| 1478 | |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1479 | loop_decay_rate = get_prediction_decay_rate(cpi, &next_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1480 | |
| 1481 | // Cumulative effect of decay |
| 1482 | decay_accumulator = decay_accumulator * loop_decay_rate; |
| 1483 | decay_accumulator = decay_accumulator < 0.1 ? 0.1 : decay_accumulator; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1484 | |
| 1485 | boost_score += (decay_accumulator * r); |
| 1486 | |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1487 | // Break clause to detect very still sections after motion |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1488 | // For example a staic image after a fade or other transition. |
| 1489 | if ( detect_transition_to_still( cpi, i, 5, |
| 1490 | loop_decay_rate, decay_accumulator ) ) |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1491 | { |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 1492 | allow_alt_ref = FALSE; |
| 1493 | boost_score = old_boost_score; |
| 1494 | break; |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1495 | } |
| 1496 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1497 | // Break out conditions. |
Paul Wilkins | 57136a2 | 2011-01-18 15:19:05 +0000 | [diff] [blame] | 1498 | if ( /* i>4 || */ |
| 1499 | // Break at cpi->max_gf_interval unless almost totally static |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1500 | (i >= cpi->max_gf_interval && (decay_accumulator < 0.995)) || |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1501 | ( |
Paul Wilkins | 57136a2 | 2011-01-18 15:19:05 +0000 | [diff] [blame] | 1502 | // Dont break out with a very short interval |
| 1503 | (i > MIN_GF_INTERVAL) && |
| 1504 | // Dont break out very close to a key frame |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1505 | ((cpi->twopass.frames_to_key - i) >= MIN_GF_INTERVAL) && |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1506 | ((boost_score > 20.0) || (next_frame.pcnt_inter < 0.75)) && |
| 1507 | ((mv_ratio_accumulator > 100.0) || |
| 1508 | (abs_mv_in_out_accumulator > 3.0) || |
| 1509 | (mv_in_out_accumulator < -2.0) || |
Paul Wilkins | 57136a2 | 2011-01-18 15:19:05 +0000 | [diff] [blame] | 1510 | ((boost_score - old_boost_score) < 2.0)) |
| 1511 | ) ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1512 | { |
| 1513 | boost_score = old_boost_score; |
| 1514 | break; |
| 1515 | } |
| 1516 | |
| 1517 | vpx_memcpy(this_frame, &next_frame, sizeof(*this_frame)); |
| 1518 | |
| 1519 | old_boost_score = boost_score; |
| 1520 | } |
| 1521 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1522 | cpi->twopass.gf_decay_rate = |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1523 | (i > 0) ? (int)(100.0 * (1.0 - decay_accumulator)) / i : 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1524 | |
| 1525 | // When using CBR apply additional buffer related upper limits |
| 1526 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 1527 | { |
| 1528 | double max_boost; |
| 1529 | |
| 1530 | // For cbr apply buffer related limits |
| 1531 | if (cpi->drop_frames_allowed) |
| 1532 | { |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1533 | int df_buffer_level = cpi->oxcf.drop_frames_water_mark * |
| 1534 | (cpi->oxcf.optimal_buffer_level / 100); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1535 | |
| 1536 | if (cpi->buffer_level > df_buffer_level) |
| 1537 | max_boost = ((double)((cpi->buffer_level - df_buffer_level) * 2 / 3) * 16.0) / DOUBLE_DIVIDE_CHECK((double)cpi->av_per_frame_bandwidth); |
| 1538 | else |
| 1539 | max_boost = 0.0; |
| 1540 | } |
| 1541 | else if (cpi->buffer_level > 0) |
| 1542 | { |
| 1543 | max_boost = ((double)(cpi->buffer_level * 2 / 3) * 16.0) / DOUBLE_DIVIDE_CHECK((double)cpi->av_per_frame_bandwidth); |
| 1544 | } |
| 1545 | else |
| 1546 | { |
| 1547 | max_boost = 0.0; |
| 1548 | } |
| 1549 | |
| 1550 | if (boost_score > max_boost) |
| 1551 | boost_score = max_boost; |
| 1552 | } |
| 1553 | |
| 1554 | cpi->gfu_boost = (int)(boost_score * 100.0) >> 4; |
| 1555 | |
Ronald S. Bultje | 9f002be | 2011-06-02 09:14:51 -0700 | [diff] [blame^] | 1556 | // Dont allow conventional gf too near the next kf |
| 1557 | if ((cpi->twopass.frames_to_key - i) < MIN_GF_INTERVAL) |
| 1558 | { |
| 1559 | while (i < cpi->twopass.frames_to_key) |
| 1560 | { |
| 1561 | i++; |
| 1562 | |
| 1563 | if (EOF == input_stats(cpi, this_frame)) |
| 1564 | break; |
| 1565 | |
| 1566 | if (i < cpi->twopass.frames_to_key) |
| 1567 | { |
| 1568 | mod_frame_err = calculate_modified_err(cpi, this_frame); |
| 1569 | gf_group_err += mod_frame_err; |
| 1570 | } |
| 1571 | } |
| 1572 | } |
| 1573 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1574 | // Should we use the alternate refernce frame |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1575 | if (allow_alt_ref && |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1576 | (i >= MIN_GF_INTERVAL) && |
Paul Wilkins | 8064583 | 2011-01-20 18:01:20 +0000 | [diff] [blame] | 1577 | // dont use ARF very near next kf |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1578 | (i <= (cpi->twopass.frames_to_key - MIN_GF_INTERVAL)) && |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1579 | (((next_frame.pcnt_inter > 0.75) && |
| 1580 | ((mv_in_out_accumulator / (double)i > -0.2) || (mv_in_out_accumulator > -2.0)) && |
| 1581 | //(cpi->gfu_boost>150) && |
| 1582 | (cpi->gfu_boost > 100) && |
| 1583 | //(cpi->gfu_boost>AF_THRESH2) && |
| 1584 | //((cpi->gfu_boost/i)>AF_THRESH) && |
| 1585 | //(decay_accumulator > 0.5) && |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1586 | (cpi->twopass.gf_decay_rate <= (ARF_DECAY_THRESH + (cpi->gfu_boost / 200))) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1587 | ) |
| 1588 | ) |
| 1589 | ) |
| 1590 | { |
| 1591 | int Boost; |
| 1592 | int allocation_chunks; |
| 1593 | int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q; |
| 1594 | int tmp_q; |
| 1595 | int arf_frame_bits = 0; |
| 1596 | int group_bits; |
| 1597 | |
| 1598 | // Estimate the bits to be allocated to the group as a whole |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1599 | if ((cpi->twopass.kf_group_bits > 0) && (cpi->twopass.kf_group_error_left > 0)) |
| 1600 | group_bits = (int)((double)cpi->twopass.kf_group_bits * (gf_group_err / (double)cpi->twopass.kf_group_error_left)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1601 | else |
| 1602 | group_bits = 0; |
| 1603 | |
| 1604 | // Boost for arf frame |
| 1605 | Boost = (cpi->gfu_boost * 3 * GFQ_ADJUSTMENT) / (2 * 100); |
Paul Wilkins | 513f8e6 | 2010-11-10 10:09:45 +0000 | [diff] [blame] | 1606 | Boost += (i * 50); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1607 | allocation_chunks = (i * 100) + Boost; |
| 1608 | |
| 1609 | // Normalize Altboost and allocations chunck down to prevent overflow |
| 1610 | while (Boost > 1000) |
| 1611 | { |
| 1612 | Boost /= 2; |
| 1613 | allocation_chunks /= 2; |
| 1614 | } |
| 1615 | |
| 1616 | // Calculate the number of bits to be spent on the arf based on the boost number |
| 1617 | arf_frame_bits = (int)((double)Boost * (group_bits / (double)allocation_chunks)); |
| 1618 | |
| 1619 | // Estimate if there are enough bits available to make worthwhile use of an arf. |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 1620 | tmp_q = estimate_q(cpi, mod_frame_err, (int)arf_frame_bits); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1621 | |
| 1622 | // Only use an arf if it is likely we will be able to code it at a lower Q than the surrounding frames. |
| 1623 | if (tmp_q < cpi->worst_quality) |
| 1624 | { |
Adrian Grange | 1b2f830 | 2010-09-28 15:23:41 +0100 | [diff] [blame] | 1625 | int half_gf_int; |
| 1626 | int frames_after_arf; |
| 1627 | int frames_bwd = cpi->oxcf.arnr_max_frames - 1; |
| 1628 | int frames_fwd = cpi->oxcf.arnr_max_frames - 1; |
| 1629 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1630 | cpi->source_alt_ref_pending = TRUE; |
| 1631 | |
| 1632 | // For alt ref frames the error score for the end frame of the group (the alt ref frame) should not contribute to the group total and hence |
| 1633 | // the number of bit allocated to the group. Rather it forms part of the next group (it is the GF at the start of the next group) |
| 1634 | gf_group_err -= mod_frame_err; |
| 1635 | |
| 1636 | // Set the interval till the next gf or arf. For ARFs this is the number of frames to be coded before the future frame that is coded as an ARF. |
| 1637 | // The future frame itself is part of the next group |
| 1638 | cpi->baseline_gf_interval = i - 1; |
| 1639 | |
Adrian Grange | 1b2f830 | 2010-09-28 15:23:41 +0100 | [diff] [blame] | 1640 | // Define the arnr filter width for this group of frames: |
| 1641 | // We only filter frames that lie within a distance of half |
| 1642 | // the GF interval from the ARF frame. We also have to trap |
| 1643 | // cases where the filter extends beyond the end of clip. |
| 1644 | // Note: this_frame->frame has been updated in the loop |
| 1645 | // so it now points at the ARF frame. |
| 1646 | half_gf_int = cpi->baseline_gf_interval >> 1; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1647 | frames_after_arf = cpi->twopass.total_stats->count - this_frame->frame - 1; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1648 | |
Adrian Grange | 1b2f830 | 2010-09-28 15:23:41 +0100 | [diff] [blame] | 1649 | switch (cpi->oxcf.arnr_type) |
| 1650 | { |
| 1651 | case 1: // Backward filter |
| 1652 | frames_fwd = 0; |
| 1653 | if (frames_bwd > half_gf_int) |
| 1654 | frames_bwd = half_gf_int; |
| 1655 | break; |
| 1656 | |
| 1657 | case 2: // Forward filter |
| 1658 | if (frames_fwd > half_gf_int) |
| 1659 | frames_fwd = half_gf_int; |
| 1660 | if (frames_fwd > frames_after_arf) |
| 1661 | frames_fwd = frames_after_arf; |
| 1662 | frames_bwd = 0; |
| 1663 | break; |
| 1664 | |
| 1665 | case 3: // Centered filter |
| 1666 | default: |
| 1667 | frames_fwd >>= 1; |
| 1668 | if (frames_fwd > frames_after_arf) |
| 1669 | frames_fwd = frames_after_arf; |
| 1670 | if (frames_fwd > half_gf_int) |
| 1671 | frames_fwd = half_gf_int; |
| 1672 | |
| 1673 | frames_bwd = frames_fwd; |
| 1674 | |
| 1675 | // For even length filter there is one more frame backward |
| 1676 | // than forward: e.g. len=6 ==> bbbAff, len=7 ==> bbbAfff. |
| 1677 | if (frames_bwd < half_gf_int) |
| 1678 | frames_bwd += (cpi->oxcf.arnr_max_frames+1) & 0x1; |
| 1679 | break; |
| 1680 | } |
| 1681 | |
| 1682 | cpi->active_arnr_frames = frames_bwd + 1 + frames_fwd; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1683 | } |
| 1684 | else |
| 1685 | { |
| 1686 | cpi->source_alt_ref_pending = FALSE; |
| 1687 | cpi->baseline_gf_interval = i; |
| 1688 | } |
| 1689 | } |
| 1690 | else |
| 1691 | { |
| 1692 | cpi->source_alt_ref_pending = FALSE; |
| 1693 | cpi->baseline_gf_interval = i; |
| 1694 | } |
| 1695 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1696 | // Now decide how many bits should be allocated to the GF group as a proportion of those remaining in the kf group. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1697 | // The final key frame group in the clip is treated as a special case where cpi->twopass.kf_group_bits is tied to cpi->twopass.bits_left. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1698 | // This is also important for short clips where there may only be one key frame. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1699 | if (cpi->twopass.frames_to_key >= (int)(cpi->twopass.total_stats->count - cpi->common.current_video_frame)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1700 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1701 | cpi->twopass.kf_group_bits = (cpi->twopass.bits_left > 0) ? cpi->twopass.bits_left : 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1702 | } |
| 1703 | |
| 1704 | // Calculate the bits to be allocated to the group as a whole |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1705 | if ((cpi->twopass.kf_group_bits > 0) && (cpi->twopass.kf_group_error_left > 0)) |
| 1706 | cpi->twopass.gf_group_bits = (int)((double)cpi->twopass.kf_group_bits * (gf_group_err / (double)cpi->twopass.kf_group_error_left)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1707 | else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1708 | cpi->twopass.gf_group_bits = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1709 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1710 | cpi->twopass.gf_group_bits = (cpi->twopass.gf_group_bits < 0) ? 0 : (cpi->twopass.gf_group_bits > cpi->twopass.kf_group_bits) ? cpi->twopass.kf_group_bits : cpi->twopass.gf_group_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1711 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1712 | // Clip cpi->twopass.gf_group_bits based on user supplied data rate variability limit (cpi->oxcf.two_pass_vbrmax_section) |
| 1713 | if (cpi->twopass.gf_group_bits > max_bits * cpi->baseline_gf_interval) |
| 1714 | cpi->twopass.gf_group_bits = max_bits * cpi->baseline_gf_interval; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1715 | |
| 1716 | // Reset the file position |
| 1717 | reset_fpf_position(cpi, start_pos); |
| 1718 | |
Paul Wilkins | 70b885a | 2010-11-12 11:35:30 +0000 | [diff] [blame] | 1719 | // Update the record of error used so far (only done once per gf group) |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1720 | cpi->twopass.modified_error_used += gf_group_err; |
Paul Wilkins | 70b885a | 2010-11-12 11:35:30 +0000 | [diff] [blame] | 1721 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1722 | // Assign bits to the arf or gf. |
| 1723 | { |
| 1724 | int Boost; |
| 1725 | int frames_in_section; |
| 1726 | int allocation_chunks; |
| 1727 | int Q = (cpi->oxcf.fixed_q < 0) ? cpi->last_q[INTER_FRAME] : cpi->oxcf.fixed_q; |
| 1728 | |
| 1729 | // For ARF frames |
| 1730 | if (cpi->source_alt_ref_pending) |
| 1731 | { |
| 1732 | Boost = (cpi->gfu_boost * 3 * GFQ_ADJUSTMENT) / (2 * 100); |
| 1733 | //Boost += (cpi->baseline_gf_interval * 25); |
| 1734 | Boost += (cpi->baseline_gf_interval * 50); |
| 1735 | |
| 1736 | // Set max and minimum boost and hence minimum allocation |
| 1737 | if (Boost > ((cpi->baseline_gf_interval + 1) * 200)) |
| 1738 | Boost = ((cpi->baseline_gf_interval + 1) * 200); |
| 1739 | else if (Boost < 125) |
| 1740 | Boost = 125; |
| 1741 | |
| 1742 | frames_in_section = cpi->baseline_gf_interval + 1; |
| 1743 | allocation_chunks = (frames_in_section * 100) + Boost; |
| 1744 | } |
| 1745 | // Else for standard golden frames |
| 1746 | else |
| 1747 | { |
| 1748 | // boost based on inter / intra ratio of subsequent frames |
| 1749 | Boost = (cpi->gfu_boost * GFQ_ADJUSTMENT) / 100; |
| 1750 | |
| 1751 | // Set max and minimum boost and hence minimum allocation |
| 1752 | if (Boost > (cpi->baseline_gf_interval * 150)) |
| 1753 | Boost = (cpi->baseline_gf_interval * 150); |
| 1754 | else if (Boost < 125) |
| 1755 | Boost = 125; |
| 1756 | |
| 1757 | frames_in_section = cpi->baseline_gf_interval; |
| 1758 | allocation_chunks = (frames_in_section * 100) + (Boost - 100); |
| 1759 | } |
| 1760 | |
| 1761 | // Normalize Altboost and allocations chunck down to prevent overflow |
| 1762 | while (Boost > 1000) |
| 1763 | { |
| 1764 | Boost /= 2; |
| 1765 | allocation_chunks /= 2; |
| 1766 | } |
| 1767 | |
| 1768 | // Calculate the number of bits to be spent on the gf or arf based on the boost number |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1769 | cpi->twopass.gf_bits = (int)((double)Boost * (cpi->twopass.gf_group_bits / (double)allocation_chunks)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1770 | |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 1771 | // If the frame that is to be boosted is simpler than the average for |
| 1772 | // the gf/arf group then use an alternative calculation |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1773 | // based on the error score of the frame itself |
| 1774 | if (mod_frame_err < gf_group_err / (double)cpi->baseline_gf_interval) |
| 1775 | { |
| 1776 | double alt_gf_grp_bits; |
| 1777 | int alt_gf_bits; |
| 1778 | |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 1779 | alt_gf_grp_bits = |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1780 | (double)cpi->twopass.kf_group_bits * |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 1781 | (mod_frame_err * (double)cpi->baseline_gf_interval) / |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1782 | DOUBLE_DIVIDE_CHECK((double)cpi->twopass.kf_group_error_left); |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 1783 | |
| 1784 | alt_gf_bits = (int)((double)Boost * (alt_gf_grp_bits / |
| 1785 | (double)allocation_chunks)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1786 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1787 | if (cpi->twopass.gf_bits > alt_gf_bits) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1788 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1789 | cpi->twopass.gf_bits = alt_gf_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1790 | } |
| 1791 | } |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 1792 | // Else if it is harder than other frames in the group make sure it at |
| 1793 | // least receives an allocation in keeping with its relative error |
| 1794 | // score, otherwise it may be worse off than an "un-boosted" frame |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1795 | else |
| 1796 | { |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 1797 | int alt_gf_bits = |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1798 | (int)((double)cpi->twopass.kf_group_bits * |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 1799 | mod_frame_err / |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1800 | DOUBLE_DIVIDE_CHECK((double)cpi->twopass.kf_group_error_left)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1801 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1802 | if (alt_gf_bits > cpi->twopass.gf_bits) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1803 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1804 | cpi->twopass.gf_bits = alt_gf_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1805 | } |
| 1806 | } |
| 1807 | |
| 1808 | // Apply an additional limit for CBR |
| 1809 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 1810 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1811 | if (cpi->twopass.gf_bits > (cpi->buffer_level >> 1)) |
| 1812 | cpi->twopass.gf_bits = cpi->buffer_level >> 1; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1813 | } |
| 1814 | |
| 1815 | // Dont allow a negative value for gf_bits |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1816 | if (cpi->twopass.gf_bits < 0) |
| 1817 | cpi->twopass.gf_bits = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1818 | |
| 1819 | // Adjust KF group bits and error remainin |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1820 | cpi->twopass.kf_group_error_left -= gf_group_err; |
| 1821 | cpi->twopass.kf_group_bits -= cpi->twopass.gf_group_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1822 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1823 | if (cpi->twopass.kf_group_bits < 0) |
| 1824 | cpi->twopass.kf_group_bits = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1825 | |
| 1826 | // Note the error score left in the remaining frames of the group. |
| 1827 | // For normal GFs we want to remove the error score for the first frame of the group (except in Key frame case where this has already happened) |
| 1828 | if (!cpi->source_alt_ref_pending && cpi->common.frame_type != KEY_FRAME) |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1829 | cpi->twopass.gf_group_error_left = gf_group_err - gf_first_frame_err; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1830 | else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1831 | cpi->twopass.gf_group_error_left = gf_group_err; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1832 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1833 | cpi->twopass.gf_group_bits -= cpi->twopass.gf_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1834 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1835 | if (cpi->twopass.gf_group_bits < 0) |
| 1836 | cpi->twopass.gf_group_bits = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1837 | |
| 1838 | // Set aside some bits for a mid gf sequence boost |
| 1839 | if ((cpi->gfu_boost > 150) && (cpi->baseline_gf_interval > 5)) |
| 1840 | { |
| 1841 | int pct_extra = (cpi->gfu_boost - 100) / 50; |
| 1842 | pct_extra = (pct_extra > 10) ? 10 : pct_extra; |
| 1843 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1844 | cpi->twopass.mid_gf_extra_bits = (cpi->twopass.gf_group_bits * pct_extra) / 100; |
| 1845 | cpi->twopass.gf_group_bits -= cpi->twopass.mid_gf_extra_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1846 | } |
| 1847 | else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1848 | cpi->twopass.mid_gf_extra_bits = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1849 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1850 | cpi->twopass.gf_bits += cpi->min_frame_bandwidth; // Add in minimum for a frame |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1851 | } |
| 1852 | |
| 1853 | if (!cpi->source_alt_ref_pending && (cpi->common.frame_type != KEY_FRAME)) // Normal GF and not a KF |
| 1854 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1855 | cpi->per_frame_bandwidth = cpi->twopass.gf_bits; // Per frame bit target for this frame |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1856 | } |
| 1857 | |
| 1858 | // Adjustment to estimate_max_q based on a measure of complexity of the section |
| 1859 | if (cpi->common.frame_type != KEY_FRAME) |
| 1860 | { |
| 1861 | FIRSTPASS_STATS sectionstats; |
| 1862 | double Ratio; |
| 1863 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1864 | zero_stats(§ionstats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1865 | reset_fpf_position(cpi, start_pos); |
| 1866 | |
| 1867 | for (i = 0 ; i < cpi->baseline_gf_interval ; i++) |
| 1868 | { |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1869 | input_stats(cpi, &next_frame); |
| 1870 | accumulate_stats(§ionstats, &next_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1871 | } |
| 1872 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1873 | avg_stats(§ionstats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1874 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1875 | cpi->twopass.section_intra_rating = |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 1876 | sectionstats.intra_error / |
| 1877 | DOUBLE_DIVIDE_CHECK(sectionstats.coded_error); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1878 | |
| 1879 | Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error); |
| 1880 | //if( (Ratio > 11) ) //&& (sectionstats.pcnt_second_ref < .20) ) |
| 1881 | //{ |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1882 | cpi->twopass.section_max_qfactor = 1.0 - ((Ratio - 10.0) * 0.025); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1883 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1884 | if (cpi->twopass.section_max_qfactor < 0.80) |
| 1885 | cpi->twopass.section_max_qfactor = 0.80; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1886 | |
| 1887 | //} |
| 1888 | //else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1889 | // cpi->twopass.section_max_qfactor = 1.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1890 | |
| 1891 | reset_fpf_position(cpi, start_pos); |
| 1892 | } |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1893 | } |
| 1894 | |
| 1895 | // Allocate bits to a normal frame that is neither a gf an arf or a key frame. |
| 1896 | static void assign_std_frame_bits(VP8_COMP *cpi, FIRSTPASS_STATS *this_frame) |
| 1897 | { |
| 1898 | int target_frame_size; // gf_group_error_left |
| 1899 | |
| 1900 | double modified_err; |
| 1901 | double err_fraction; // What portion of the remaining GF group error is used by this frame |
| 1902 | |
| 1903 | int max_bits = frame_max_bits(cpi); // Max for a single frame |
| 1904 | |
| 1905 | // The final few frames have special treatment |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1906 | if (cpi->frames_till_gf_update_due >= (int)(cpi->twopass.total_stats->count - cpi->common.current_video_frame)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1907 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1908 | cpi->twopass.gf_group_bits = (cpi->twopass.bits_left > 0) ? cpi->twopass.bits_left : 0;; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1909 | } |
| 1910 | |
| 1911 | // Calculate modified prediction error used in bit allocation |
| 1912 | modified_err = calculate_modified_err(cpi, this_frame); |
| 1913 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1914 | if (cpi->twopass.gf_group_error_left > 0) |
| 1915 | err_fraction = modified_err / cpi->twopass.gf_group_error_left; // What portion of the remaining GF group error is used by this frame |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1916 | else |
| 1917 | err_fraction = 0.0; |
| 1918 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1919 | target_frame_size = (int)((double)cpi->twopass.gf_group_bits * err_fraction); // How many of those bits available for allocation should we give it? |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1920 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1921 | // Clip to target size to 0 - max_bits (or cpi->twopass.gf_group_bits) at the top end. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1922 | if (target_frame_size < 0) |
| 1923 | target_frame_size = 0; |
| 1924 | else |
| 1925 | { |
| 1926 | if (target_frame_size > max_bits) |
| 1927 | target_frame_size = max_bits; |
| 1928 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1929 | if (target_frame_size > cpi->twopass.gf_group_bits) |
| 1930 | target_frame_size = cpi->twopass.gf_group_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1931 | } |
| 1932 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1933 | cpi->twopass.gf_group_error_left -= modified_err; // Adjust error remaining |
| 1934 | cpi->twopass.gf_group_bits -= target_frame_size; // Adjust bits remaining |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1935 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1936 | if (cpi->twopass.gf_group_bits < 0) |
| 1937 | cpi->twopass.gf_group_bits = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1938 | |
| 1939 | target_frame_size += cpi->min_frame_bandwidth; // Add in the minimum number of bits that is set aside for every frame. |
| 1940 | |
| 1941 | // Special case for the frame that lies half way between two gfs |
| 1942 | if (cpi->common.frames_since_golden == cpi->baseline_gf_interval / 2) |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1943 | target_frame_size += cpi->twopass.mid_gf_extra_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1944 | |
| 1945 | cpi->per_frame_bandwidth = target_frame_size; // Per frame bit target for this frame |
| 1946 | } |
| 1947 | |
| 1948 | void vp8_second_pass(VP8_COMP *cpi) |
| 1949 | { |
| 1950 | int tmp_q; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1951 | int frames_left = (int)(cpi->twopass.total_stats->count - cpi->common.current_video_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1952 | |
| 1953 | FIRSTPASS_STATS this_frame; |
| 1954 | FIRSTPASS_STATS this_frame_copy; |
| 1955 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1956 | double this_frame_error; |
| 1957 | double this_frame_intra_error; |
| 1958 | double this_frame_coded_error; |
| 1959 | |
| 1960 | FIRSTPASS_STATS *start_pos; |
| 1961 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1962 | if (!cpi->twopass.stats_in) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1963 | { |
| 1964 | return ; |
| 1965 | } |
| 1966 | |
| 1967 | vp8_clear_system_state(); |
| 1968 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1969 | if (EOF == input_stats(cpi, &this_frame)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1970 | return; |
| 1971 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1972 | this_frame_error = this_frame.ssim_weighted_pred_err; |
| 1973 | this_frame_intra_error = this_frame.intra_error; |
| 1974 | this_frame_coded_error = this_frame.coded_error; |
| 1975 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1976 | start_pos = cpi->twopass.stats_in; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1977 | |
| 1978 | // keyframe and section processing ! |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1979 | if (cpi->twopass.frames_to_key == 0) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1980 | { |
| 1981 | // Define next KF group and assign bits to it |
| 1982 | vpx_memcpy(&this_frame_copy, &this_frame, sizeof(this_frame)); |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 1983 | find_next_key_frame(cpi, &this_frame_copy); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1984 | |
| 1985 | // Special case: Error error_resilient_mode mode does not make much sense for two pass but with its current meaning but this code is designed to stop |
| 1986 | // outlandish behaviour if someone does set it when using two pass. It effectively disables GF groups. |
| 1987 | // This is temporary code till we decide what should really happen in this case. |
| 1988 | if (cpi->oxcf.error_resilient_mode) |
| 1989 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 1990 | cpi->twopass.gf_group_bits = cpi->twopass.kf_group_bits; |
| 1991 | cpi->twopass.gf_group_error_left = cpi->twopass.kf_group_error_left; |
| 1992 | cpi->baseline_gf_interval = cpi->twopass.frames_to_key; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1993 | cpi->frames_till_gf_update_due = cpi->baseline_gf_interval; |
| 1994 | cpi->source_alt_ref_pending = FALSE; |
| 1995 | } |
| 1996 | |
| 1997 | } |
| 1998 | |
| 1999 | // Is this a GF / ARF (Note that a KF is always also a GF) |
| 2000 | if (cpi->frames_till_gf_update_due == 0) |
| 2001 | { |
| 2002 | // Define next gf group and assign bits to it |
| 2003 | vpx_memcpy(&this_frame_copy, &this_frame, sizeof(this_frame)); |
| 2004 | define_gf_group(cpi, &this_frame_copy); |
| 2005 | |
| 2006 | // If we are going to code an altref frame at the end of the group and the current frame is not a key frame.... |
| 2007 | // If the previous group used an arf this frame has already benefited from that arf boost and it should not be given extra bits |
| 2008 | // If the previous group was NOT coded using arf we may want to apply some boost to this GF as well |
| 2009 | if (cpi->source_alt_ref_pending && (cpi->common.frame_type != KEY_FRAME)) |
| 2010 | { |
| 2011 | // Assign a standard frames worth of bits from those allocated to the GF group |
| 2012 | vpx_memcpy(&this_frame_copy, &this_frame, sizeof(this_frame)); |
| 2013 | assign_std_frame_bits(cpi, &this_frame_copy); |
| 2014 | |
| 2015 | // If appropriate (we are switching into ARF active but it was not previously active) apply a boost for the gf at the start of the group. |
| 2016 | //if ( !cpi->source_alt_ref_active && (cpi->gfu_boost > 150) ) |
| 2017 | if (FALSE) |
| 2018 | { |
| 2019 | int extra_bits; |
| 2020 | int pct_extra = (cpi->gfu_boost - 100) / 50; |
| 2021 | |
| 2022 | pct_extra = (pct_extra > 20) ? 20 : pct_extra; |
| 2023 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2024 | extra_bits = (cpi->twopass.gf_group_bits * pct_extra) / 100; |
| 2025 | cpi->twopass.gf_group_bits -= extra_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2026 | cpi->per_frame_bandwidth += extra_bits; |
| 2027 | } |
| 2028 | } |
| 2029 | } |
| 2030 | |
| 2031 | // Otherwise this is an ordinary frame |
| 2032 | else |
| 2033 | { |
| 2034 | // Special case: Error error_resilient_mode mode does not make much sense for two pass but with its current meaning but this code is designed to stop |
| 2035 | // outlandish behaviour if someone does set it when using two pass. It effectively disables GF groups. |
| 2036 | // This is temporary code till we decide what should really happen in this case. |
| 2037 | if (cpi->oxcf.error_resilient_mode) |
| 2038 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2039 | cpi->frames_till_gf_update_due = cpi->twopass.frames_to_key; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2040 | |
| 2041 | if (cpi->common.frame_type != KEY_FRAME) |
| 2042 | { |
| 2043 | // Assign bits from those allocated to the GF group |
| 2044 | vpx_memcpy(&this_frame_copy, &this_frame, sizeof(this_frame)); |
| 2045 | assign_std_frame_bits(cpi, &this_frame_copy); |
| 2046 | } |
| 2047 | } |
| 2048 | else |
| 2049 | { |
| 2050 | // Assign bits from those allocated to the GF group |
| 2051 | vpx_memcpy(&this_frame_copy, &this_frame, sizeof(this_frame)); |
| 2052 | assign_std_frame_bits(cpi, &this_frame_copy); |
| 2053 | } |
| 2054 | } |
| 2055 | |
Paul Wilkins | a04ed23 | 2010-06-09 15:03:48 +0100 | [diff] [blame] | 2056 | // Keep a globally available copy of this and the next frame's iiratio. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2057 | cpi->twopass.this_iiratio = this_frame_intra_error / |
Paul Wilkins | a04ed23 | 2010-06-09 15:03:48 +0100 | [diff] [blame] | 2058 | DOUBLE_DIVIDE_CHECK(this_frame_coded_error); |
Paul Wilkins | 28de670 | 2010-06-07 17:34:46 +0100 | [diff] [blame] | 2059 | { |
| 2060 | FIRSTPASS_STATS next_frame; |
| 2061 | if ( lookup_next_frame_stats(cpi, &next_frame) != EOF ) |
Paul Wilkins | a04ed23 | 2010-06-09 15:03:48 +0100 | [diff] [blame] | 2062 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2063 | cpi->twopass.next_iiratio = next_frame.intra_error / |
Paul Wilkins | a04ed23 | 2010-06-09 15:03:48 +0100 | [diff] [blame] | 2064 | DOUBLE_DIVIDE_CHECK(next_frame.coded_error); |
| 2065 | } |
Paul Wilkins | 28de670 | 2010-06-07 17:34:46 +0100 | [diff] [blame] | 2066 | } |
| 2067 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2068 | // Set nominal per second bandwidth for this frame |
| 2069 | cpi->target_bandwidth = cpi->per_frame_bandwidth * cpi->output_frame_rate; |
| 2070 | if (cpi->target_bandwidth < 0) |
| 2071 | cpi->target_bandwidth = 0; |
| 2072 | |
| 2073 | if (cpi->common.current_video_frame == 0) |
| 2074 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2075 | cpi->twopass.est_max_qcorrection_factor = 1.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2076 | |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 2077 | // Experimental code to try and set a cq_level in constrained |
| 2078 | // quality mode. |
| 2079 | if ( cpi->oxcf.end_usage == USAGE_CONSTRAINED_QUALITY ) |
| 2080 | { |
| 2081 | int est_cq; |
| 2082 | |
| 2083 | est_cq = |
| 2084 | estimate_cq( cpi, |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2085 | (cpi->twopass.total_coded_error_left / frames_left), |
| 2086 | (int)(cpi->twopass.bits_left / frames_left)); |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 2087 | |
| 2088 | cpi->cq_target_quality = cpi->oxcf.cq_level; |
| 2089 | if ( est_cq > cpi->cq_target_quality ) |
| 2090 | cpi->cq_target_quality = est_cq; |
| 2091 | } |
| 2092 | |
| 2093 | // guess at maxq needed in 2nd pass |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2094 | cpi->twopass.maxq_max_limit = cpi->worst_quality; |
| 2095 | cpi->twopass.maxq_min_limit = cpi->best_quality; |
Paul Wilkins | 3af3593 | 2011-01-07 16:33:59 +0000 | [diff] [blame] | 2096 | tmp_q = estimate_max_q( cpi, |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2097 | (cpi->twopass.total_coded_error_left / frames_left), |
| 2098 | (int)(cpi->twopass.bits_left / frames_left)); |
Paul Wilkins | 3af3593 | 2011-01-07 16:33:59 +0000 | [diff] [blame] | 2099 | |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 2100 | // Limit the maxq value returned subsequently. |
Paul Wilkins | cf7c473 | 2011-01-10 16:41:53 +0000 | [diff] [blame] | 2101 | // This increases the risk of overspend or underspend if the initial |
Paul Wilkins | 3af3593 | 2011-01-07 16:33:59 +0000 | [diff] [blame] | 2102 | // estimate for the clip is bad, but helps prevent excessive |
| 2103 | // variation in Q, especially near the end of a clip |
| 2104 | // where for example a small overspend may cause Q to crash |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2105 | cpi->twopass.maxq_max_limit = ((tmp_q + 32) < cpi->worst_quality) |
Paul Wilkins | 3af3593 | 2011-01-07 16:33:59 +0000 | [diff] [blame] | 2106 | ? (tmp_q + 32) : cpi->worst_quality; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2107 | cpi->twopass.maxq_min_limit = ((tmp_q - 32) > cpi->best_quality) |
Paul Wilkins | 3af3593 | 2011-01-07 16:33:59 +0000 | [diff] [blame] | 2108 | ? (tmp_q - 32) : cpi->best_quality; |
| 2109 | |
| 2110 | cpi->active_worst_quality = tmp_q; |
| 2111 | cpi->ni_av_qi = tmp_q; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2112 | } |
Paul Wilkins | e0846c9 | 2011-01-07 18:29:37 +0000 | [diff] [blame] | 2113 | |
Paul Wilkins | 513f8e6 | 2010-11-10 10:09:45 +0000 | [diff] [blame] | 2114 | // The last few frames of a clip almost always have to few or too many |
| 2115 | // bits and for the sake of over exact rate control we dont want to make |
| 2116 | // radical adjustments to the allowed quantizer range just to use up a |
| 2117 | // few surplus bits or get beneath the target rate. |
| 2118 | else if ( (cpi->common.current_video_frame < |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2119 | (((unsigned int)cpi->twopass.total_stats->count * 255)>>8)) && |
Paul Wilkins | 513f8e6 | 2010-11-10 10:09:45 +0000 | [diff] [blame] | 2120 | ((cpi->common.current_video_frame + cpi->baseline_gf_interval) < |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2121 | (unsigned int)cpi->twopass.total_stats->count) ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2122 | { |
| 2123 | if (frames_left < 1) |
| 2124 | frames_left = 1; |
| 2125 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2126 | tmp_q = estimate_max_q(cpi, (cpi->twopass.total_coded_error_left / frames_left), (int)(cpi->twopass.bits_left / frames_left)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2127 | |
| 2128 | // Move active_worst_quality but in a damped way |
| 2129 | if (tmp_q > cpi->active_worst_quality) |
| 2130 | cpi->active_worst_quality ++; |
| 2131 | else if (tmp_q < cpi->active_worst_quality) |
| 2132 | cpi->active_worst_quality --; |
| 2133 | |
| 2134 | cpi->active_worst_quality = ((cpi->active_worst_quality * 3) + tmp_q + 2) / 4; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2135 | } |
| 2136 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2137 | cpi->twopass.frames_to_key --; |
| 2138 | cpi->twopass.total_error_left -= this_frame_error; |
| 2139 | cpi->twopass.total_intra_error_left -= this_frame_intra_error; |
| 2140 | cpi->twopass.total_coded_error_left -= this_frame_coded_error; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2141 | } |
| 2142 | |
| 2143 | |
| 2144 | static BOOL test_candidate_kf(VP8_COMP *cpi, FIRSTPASS_STATS *last_frame, FIRSTPASS_STATS *this_frame, FIRSTPASS_STATS *next_frame) |
| 2145 | { |
| 2146 | BOOL is_viable_kf = FALSE; |
| 2147 | |
| 2148 | // Does the frame satisfy the primary criteria of a key frame |
| 2149 | // If so, then examine how well it predicts subsequent frames |
| 2150 | if ((this_frame->pcnt_second_ref < 0.10) && |
| 2151 | (next_frame->pcnt_second_ref < 0.10) && |
| 2152 | ((this_frame->pcnt_inter < 0.05) || |
| 2153 | ( |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 2154 | ((this_frame->pcnt_inter - this_frame->pcnt_neutral) < .25) && |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2155 | ((this_frame->intra_error / DOUBLE_DIVIDE_CHECK(this_frame->coded_error)) < 2.5) && |
| 2156 | ((fabs(last_frame->coded_error - this_frame->coded_error) / DOUBLE_DIVIDE_CHECK(this_frame->coded_error) > .40) || |
| 2157 | (fabs(last_frame->intra_error - this_frame->intra_error) / DOUBLE_DIVIDE_CHECK(this_frame->intra_error) > .40) || |
| 2158 | ((next_frame->intra_error / DOUBLE_DIVIDE_CHECK(next_frame->coded_error)) > 3.5) |
| 2159 | ) |
| 2160 | ) |
| 2161 | ) |
| 2162 | ) |
| 2163 | { |
| 2164 | int i; |
| 2165 | FIRSTPASS_STATS *start_pos; |
| 2166 | |
| 2167 | FIRSTPASS_STATS local_next_frame; |
| 2168 | |
| 2169 | double boost_score = 0.0; |
| 2170 | double old_boost_score = 0.0; |
| 2171 | double decay_accumulator = 1.0; |
| 2172 | double next_iiratio; |
| 2173 | |
| 2174 | vpx_memcpy(&local_next_frame, next_frame, sizeof(*next_frame)); |
| 2175 | |
| 2176 | // Note the starting file position so we can reset to it |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2177 | start_pos = cpi->twopass.stats_in; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2178 | |
| 2179 | // Examine how well the key frame predicts subsequent frames |
| 2180 | for (i = 0 ; i < 16; i++) |
| 2181 | { |
| 2182 | next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error / DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error)) ; |
| 2183 | |
| 2184 | if (next_iiratio > RMAX) |
| 2185 | next_iiratio = RMAX; |
| 2186 | |
| 2187 | // Cumulative effect of decay in prediction quality |
| 2188 | if (local_next_frame.pcnt_inter > 0.85) |
| 2189 | decay_accumulator = decay_accumulator * local_next_frame.pcnt_inter; |
| 2190 | else |
| 2191 | decay_accumulator = decay_accumulator * ((0.85 + local_next_frame.pcnt_inter) / 2.0); |
| 2192 | |
| 2193 | //decay_accumulator = decay_accumulator * local_next_frame.pcnt_inter; |
| 2194 | |
| 2195 | // Keep a running total |
| 2196 | boost_score += (decay_accumulator * next_iiratio); |
| 2197 | |
| 2198 | // Test various breakout clauses |
| 2199 | if ((local_next_frame.pcnt_inter < 0.05) || |
| 2200 | (next_iiratio < 1.5) || |
Paul Wilkins | bc9c30a | 2011-03-07 15:58:07 +0000 | [diff] [blame] | 2201 | (((local_next_frame.pcnt_inter - |
| 2202 | local_next_frame.pcnt_neutral) < 0.20) && |
| 2203 | (next_iiratio < 3.0)) || |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2204 | ((boost_score - old_boost_score) < 0.5) || |
| 2205 | (local_next_frame.intra_error < 200) |
| 2206 | ) |
| 2207 | { |
| 2208 | break; |
| 2209 | } |
| 2210 | |
| 2211 | old_boost_score = boost_score; |
| 2212 | |
| 2213 | // Get the next frame details |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2214 | if (EOF == input_stats(cpi, &local_next_frame)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2215 | break; |
| 2216 | } |
| 2217 | |
| 2218 | // If there is tolerable prediction for at least the next 3 frames then break out else discard this pottential key frame and move on |
| 2219 | if (boost_score > 5.0 && (i > 3)) |
| 2220 | is_viable_kf = TRUE; |
| 2221 | else |
| 2222 | { |
| 2223 | // Reset the file position |
| 2224 | reset_fpf_position(cpi, start_pos); |
| 2225 | |
| 2226 | is_viable_kf = FALSE; |
| 2227 | } |
| 2228 | } |
| 2229 | |
| 2230 | return is_viable_kf; |
| 2231 | } |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2232 | static void find_next_key_frame(VP8_COMP *cpi, FIRSTPASS_STATS *this_frame) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2233 | { |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2234 | int i,j; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2235 | FIRSTPASS_STATS last_frame; |
| 2236 | FIRSTPASS_STATS first_frame; |
| 2237 | FIRSTPASS_STATS next_frame; |
| 2238 | FIRSTPASS_STATS *start_position; |
| 2239 | |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2240 | double decay_accumulator = 1.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2241 | double boost_score = 0; |
| 2242 | double old_boost_score = 0.0; |
| 2243 | double loop_decay_rate; |
| 2244 | |
| 2245 | double kf_mod_err = 0.0; |
| 2246 | double kf_group_err = 0.0; |
| 2247 | double kf_group_intra_err = 0.0; |
| 2248 | double kf_group_coded_err = 0.0; |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2249 | double recent_loop_decay[8] = {1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0}; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2250 | |
Guillermo Ballester Valor | 5a72620 | 2010-06-11 14:33:49 -0400 | [diff] [blame] | 2251 | vpx_memset(&next_frame, 0, sizeof(next_frame)); // assure clean |
| 2252 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2253 | vp8_clear_system_state(); //__asm emms; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2254 | start_position = cpi->twopass.stats_in; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2255 | |
| 2256 | cpi->common.frame_type = KEY_FRAME; |
| 2257 | |
Paul Wilkins | 55acda9 | 2011-01-12 17:08:42 +0000 | [diff] [blame] | 2258 | // is this a forced key frame by interval |
| 2259 | cpi->this_key_frame_forced = cpi->next_key_frame_forced; |
| 2260 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2261 | // Clear the alt ref active flag as this can never be active on a key frame |
| 2262 | cpi->source_alt_ref_active = FALSE; |
| 2263 | |
| 2264 | // Kf is always a gf so clear frames till next gf counter |
| 2265 | cpi->frames_till_gf_update_due = 0; |
| 2266 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2267 | cpi->twopass.frames_to_key = 1; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2268 | |
| 2269 | // Take a copy of the initial frame details |
| 2270 | vpx_memcpy(&first_frame, this_frame, sizeof(*this_frame)); |
| 2271 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2272 | cpi->twopass.kf_group_bits = 0; // Total bits avaialable to kf group |
| 2273 | cpi->twopass.kf_group_error_left = 0; // Group modified error score. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2274 | |
| 2275 | kf_mod_err = calculate_modified_err(cpi, this_frame); |
| 2276 | |
| 2277 | // find the next keyframe |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2278 | i = 0; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2279 | while (cpi->twopass.stats_in < cpi->twopass.stats_in_end) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2280 | { |
| 2281 | // Accumulate kf group error |
| 2282 | kf_group_err += calculate_modified_err(cpi, this_frame); |
| 2283 | |
| 2284 | // These figures keep intra and coded error counts for all frames including key frames in the group. |
| 2285 | // The effect of the key frame itself can be subtracted out using the first_frame data collected above |
| 2286 | kf_group_intra_err += this_frame->intra_error; |
| 2287 | kf_group_coded_err += this_frame->coded_error; |
| 2288 | |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2289 | // load a the next frame's stats |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2290 | vpx_memcpy(&last_frame, this_frame, sizeof(*this_frame)); |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2291 | input_stats(cpi, this_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2292 | |
| 2293 | // Provided that we are not at the end of the file... |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2294 | if (cpi->oxcf.auto_key |
| 2295 | && lookup_next_frame_stats(cpi, &next_frame) != EOF) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2296 | { |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2297 | // Normal scene cut check |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2298 | if (test_candidate_kf(cpi, &last_frame, this_frame, &next_frame)) |
| 2299 | break; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2300 | |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2301 | // How fast is prediction quality decaying |
| 2302 | loop_decay_rate = get_prediction_decay_rate(cpi, &next_frame); |
| 2303 | |
| 2304 | // We want to know something about the recent past... rather than |
| 2305 | // as used elsewhere where we are concened with decay in prediction |
| 2306 | // quality since the last GF or KF. |
| 2307 | recent_loop_decay[i%8] = loop_decay_rate; |
| 2308 | decay_accumulator = 1.0; |
| 2309 | for (j = 0; j < 8; j++) |
| 2310 | { |
| 2311 | decay_accumulator = decay_accumulator * recent_loop_decay[j]; |
| 2312 | } |
| 2313 | |
| 2314 | // Special check for transition or high motion followed by a |
| 2315 | // to a static scene. |
| 2316 | if ( detect_transition_to_still( cpi, i, |
| 2317 | (cpi->key_frame_frequency-i), |
| 2318 | loop_decay_rate, |
| 2319 | decay_accumulator ) ) |
| 2320 | { |
| 2321 | break; |
| 2322 | } |
| 2323 | |
| 2324 | |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2325 | // Step on to the next frame |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2326 | cpi->twopass.frames_to_key ++; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2327 | |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2328 | // If we don't have a real key frame within the next two |
| 2329 | // forcekeyframeevery intervals then break out of the loop. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2330 | if (cpi->twopass.frames_to_key >= 2 *(int)cpi->key_frame_frequency) |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2331 | break; |
| 2332 | } else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2333 | cpi->twopass.frames_to_key ++; |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2334 | |
| 2335 | i++; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2336 | } |
| 2337 | |
| 2338 | // If there is a max kf interval set by the user we must obey it. |
| 2339 | // We already breakout of the loop above at 2x max. |
| 2340 | // This code centers the extra kf if the actual natural |
| 2341 | // interval is between 1x and 2x |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2342 | if (cpi->oxcf.auto_key |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2343 | && cpi->twopass.frames_to_key > (int)cpi->key_frame_frequency ) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2344 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2345 | FIRSTPASS_STATS *current_pos = cpi->twopass.stats_in; |
Paul Wilkins | 336aa0b | 2011-01-25 12:29:06 +0000 | [diff] [blame] | 2346 | FIRSTPASS_STATS tmp_frame; |
| 2347 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2348 | cpi->twopass.frames_to_key /= 2; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2349 | |
Paul Wilkins | 336aa0b | 2011-01-25 12:29:06 +0000 | [diff] [blame] | 2350 | // Copy first frame details |
| 2351 | vpx_memcpy(&tmp_frame, &first_frame, sizeof(first_frame)); |
| 2352 | |
| 2353 | // Reset to the start of the group |
| 2354 | reset_fpf_position(cpi, start_position); |
| 2355 | |
| 2356 | kf_group_err = 0; |
| 2357 | kf_group_intra_err = 0; |
| 2358 | kf_group_coded_err = 0; |
| 2359 | |
| 2360 | // Rescan to get the correct error data for the forced kf group |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2361 | for( i = 0; i < cpi->twopass.frames_to_key; i++ ) |
Paul Wilkins | 336aa0b | 2011-01-25 12:29:06 +0000 | [diff] [blame] | 2362 | { |
| 2363 | // Accumulate kf group errors |
| 2364 | kf_group_err += calculate_modified_err(cpi, &tmp_frame); |
| 2365 | kf_group_intra_err += tmp_frame.intra_error; |
| 2366 | kf_group_coded_err += tmp_frame.coded_error; |
| 2367 | |
| 2368 | // Load a the next frame's stats |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2369 | input_stats(cpi, &tmp_frame); |
Paul Wilkins | 336aa0b | 2011-01-25 12:29:06 +0000 | [diff] [blame] | 2370 | } |
| 2371 | |
| 2372 | // Reset to the start of the group |
| 2373 | reset_fpf_position(cpi, current_pos); |
Paul Wilkins | 55acda9 | 2011-01-12 17:08:42 +0000 | [diff] [blame] | 2374 | |
| 2375 | cpi->next_key_frame_forced = TRUE; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2376 | } |
Paul Wilkins | 55acda9 | 2011-01-12 17:08:42 +0000 | [diff] [blame] | 2377 | else |
| 2378 | cpi->next_key_frame_forced = FALSE; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2379 | |
| 2380 | // Special case for the last frame of the file |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2381 | if (cpi->twopass.stats_in >= cpi->twopass.stats_in_end) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2382 | { |
| 2383 | // Accumulate kf group error |
| 2384 | kf_group_err += calculate_modified_err(cpi, this_frame); |
| 2385 | |
| 2386 | // These figures keep intra and coded error counts for all frames including key frames in the group. |
| 2387 | // The effect of the key frame itself can be subtracted out using the first_frame data collected above |
| 2388 | kf_group_intra_err += this_frame->intra_error; |
| 2389 | kf_group_coded_err += this_frame->coded_error; |
| 2390 | } |
| 2391 | |
| 2392 | // Calculate the number of bits that should be assigned to the kf group. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2393 | if ((cpi->twopass.bits_left > 0) && (cpi->twopass.modified_error_left > 0.0)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2394 | { |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2395 | // Max for a single normal frame (not key frame) |
| 2396 | int max_bits = frame_max_bits(cpi); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2397 | |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2398 | // Maximum bits for the kf group |
| 2399 | long long max_grp_bits; |
| 2400 | |
| 2401 | // Default allocation based on bits left and relative |
| 2402 | // complexity of the section |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2403 | cpi->twopass.kf_group_bits = (long long)( cpi->twopass.bits_left * |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2404 | ( kf_group_err / |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2405 | cpi->twopass.modified_error_left )); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2406 | |
| 2407 | // Clip based on maximum per frame rate defined by the user. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2408 | max_grp_bits = (long long)max_bits * (long long)cpi->twopass.frames_to_key; |
| 2409 | if (cpi->twopass.kf_group_bits > max_grp_bits) |
| 2410 | cpi->twopass.kf_group_bits = max_grp_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2411 | |
| 2412 | // Additional special case for CBR if buffer is getting full. |
| 2413 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 2414 | { |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2415 | int opt_buffer_lvl = cpi->oxcf.optimal_buffer_level; |
| 2416 | int buffer_lvl = cpi->buffer_level; |
| 2417 | |
| 2418 | // If the buffer is near or above the optimal and this kf group is |
| 2419 | // not being allocated much then increase the allocation a bit. |
| 2420 | if (buffer_lvl >= opt_buffer_lvl) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2421 | { |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2422 | int high_water_mark = (opt_buffer_lvl + |
| 2423 | cpi->oxcf.maximum_buffer_size) >> 1; |
| 2424 | |
| 2425 | long long av_group_bits; |
| 2426 | |
| 2427 | // Av bits per frame * number of frames |
| 2428 | av_group_bits = (long long)cpi->av_per_frame_bandwidth * |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2429 | (long long)cpi->twopass.frames_to_key; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2430 | |
| 2431 | // We are at or above the maximum. |
| 2432 | if (cpi->buffer_level >= high_water_mark) |
| 2433 | { |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2434 | long long min_group_bits; |
| 2435 | |
| 2436 | min_group_bits = av_group_bits + |
| 2437 | (long long)(buffer_lvl - |
| 2438 | high_water_mark); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2439 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2440 | if (cpi->twopass.kf_group_bits < min_group_bits) |
| 2441 | cpi->twopass.kf_group_bits = min_group_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2442 | } |
| 2443 | // We are above optimal but below the maximum |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2444 | else if (cpi->twopass.kf_group_bits < av_group_bits) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2445 | { |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2446 | long long bits_below_av = av_group_bits - |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2447 | cpi->twopass.kf_group_bits; |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2448 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2449 | cpi->twopass.kf_group_bits += |
Paul Wilkins | 9404c7d | 2010-07-23 17:01:12 +0100 | [diff] [blame] | 2450 | (long long)((double)bits_below_av * |
| 2451 | (double)(buffer_lvl - opt_buffer_lvl) / |
| 2452 | (double)(high_water_mark - opt_buffer_lvl)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2453 | } |
| 2454 | } |
| 2455 | } |
| 2456 | } |
| 2457 | else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2458 | cpi->twopass.kf_group_bits = 0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2459 | |
| 2460 | // Reset the first pass file position |
| 2461 | reset_fpf_position(cpi, start_position); |
| 2462 | |
| 2463 | // determine how big to make this keyframe based on how well the subsequent frames use inter blocks |
| 2464 | decay_accumulator = 1.0; |
| 2465 | boost_score = 0.0; |
| 2466 | loop_decay_rate = 1.00; // Starting decay rate |
| 2467 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2468 | for (i = 0 ; i < cpi->twopass.frames_to_key ; i++) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2469 | { |
| 2470 | double r; |
| 2471 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2472 | if (EOF == input_stats(cpi, &next_frame)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2473 | break; |
| 2474 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2475 | if (next_frame.intra_error > cpi->twopass.kf_intra_err_min) |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 2476 | r = (IIKFACTOR2 * next_frame.intra_error / |
| 2477 | DOUBLE_DIVIDE_CHECK(next_frame.coded_error)); |
| 2478 | else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2479 | r = (IIKFACTOR2 * cpi->twopass.kf_intra_err_min / |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 2480 | DOUBLE_DIVIDE_CHECK(next_frame.coded_error)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2481 | |
| 2482 | if (r > RMAX) |
| 2483 | r = RMAX; |
| 2484 | |
Paul Wilkins | 9fc8cb3 | 2011-03-07 15:11:09 +0000 | [diff] [blame] | 2485 | // How fast is prediction quality decaying |
| 2486 | loop_decay_rate = get_prediction_decay_rate(cpi, &next_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2487 | |
| 2488 | decay_accumulator = decay_accumulator * loop_decay_rate; |
Paul Wilkins | 788c0eb | 2010-10-02 17:31:46 +0100 | [diff] [blame] | 2489 | decay_accumulator = decay_accumulator < 0.1 ? 0.1 : decay_accumulator; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2490 | |
| 2491 | boost_score += (decay_accumulator * r); |
| 2492 | |
| 2493 | if ((i > MIN_GF_INTERVAL) && |
| 2494 | ((boost_score - old_boost_score) < 1.0)) |
| 2495 | { |
| 2496 | break; |
| 2497 | } |
| 2498 | |
| 2499 | old_boost_score = boost_score; |
| 2500 | } |
| 2501 | |
| 2502 | if (1) |
| 2503 | { |
| 2504 | FIRSTPASS_STATS sectionstats; |
| 2505 | double Ratio; |
| 2506 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2507 | zero_stats(§ionstats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2508 | reset_fpf_position(cpi, start_position); |
| 2509 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2510 | for (i = 0 ; i < cpi->twopass.frames_to_key ; i++) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2511 | { |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2512 | input_stats(cpi, &next_frame); |
| 2513 | accumulate_stats(§ionstats, &next_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2514 | } |
| 2515 | |
John Koleszar | 429dc67 | 2011-03-17 17:07:59 -0400 | [diff] [blame] | 2516 | avg_stats(§ionstats); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2517 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2518 | cpi->twopass.section_intra_rating = |
| 2519 | sectionstats.intra_error |
| 2520 | / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2521 | |
| 2522 | Ratio = sectionstats.intra_error / DOUBLE_DIVIDE_CHECK(sectionstats.coded_error); |
| 2523 | // if( (Ratio > 11) ) //&& (sectionstats.pcnt_second_ref < .20) ) |
| 2524 | //{ |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2525 | cpi->twopass.section_max_qfactor = 1.0 - ((Ratio - 10.0) * 0.025); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2526 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2527 | if (cpi->twopass.section_max_qfactor < 0.80) |
| 2528 | cpi->twopass.section_max_qfactor = 0.80; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2529 | |
| 2530 | //} |
| 2531 | //else |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2532 | // cpi->twopass.section_max_qfactor = 1.0; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2533 | } |
| 2534 | |
| 2535 | // When using CBR apply additional buffer fullness related upper limits |
| 2536 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 2537 | { |
| 2538 | double max_boost; |
| 2539 | |
| 2540 | if (cpi->drop_frames_allowed) |
| 2541 | { |
| 2542 | int df_buffer_level = cpi->oxcf.drop_frames_water_mark * (cpi->oxcf.optimal_buffer_level / 100); |
| 2543 | |
| 2544 | if (cpi->buffer_level > df_buffer_level) |
| 2545 | max_boost = ((double)((cpi->buffer_level - df_buffer_level) * 2 / 3) * 16.0) / DOUBLE_DIVIDE_CHECK((double)cpi->av_per_frame_bandwidth); |
| 2546 | else |
| 2547 | max_boost = 0.0; |
| 2548 | } |
| 2549 | else if (cpi->buffer_level > 0) |
| 2550 | { |
| 2551 | max_boost = ((double)(cpi->buffer_level * 2 / 3) * 16.0) / DOUBLE_DIVIDE_CHECK((double)cpi->av_per_frame_bandwidth); |
| 2552 | } |
| 2553 | else |
| 2554 | { |
| 2555 | max_boost = 0.0; |
| 2556 | } |
| 2557 | |
| 2558 | if (boost_score > max_boost) |
| 2559 | boost_score = max_boost; |
| 2560 | } |
| 2561 | |
| 2562 | // Reset the first pass file position |
| 2563 | reset_fpf_position(cpi, start_position); |
| 2564 | |
| 2565 | // Work out how many bits to allocate for the key frame itself |
| 2566 | if (1) |
| 2567 | { |
| 2568 | int kf_boost = boost_score; |
| 2569 | int allocation_chunks; |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2570 | int Counter = cpi->twopass.frames_to_key; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2571 | int alt_kf_bits; |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 2572 | YV12_BUFFER_CONFIG *lst_yv12 = &cpi->common.yv12_fb[cpi->common.lst_fb_idx]; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2573 | // Min boost based on kf interval |
| 2574 | #if 0 |
| 2575 | |
| 2576 | while ((kf_boost < 48) && (Counter > 0)) |
| 2577 | { |
| 2578 | Counter -= 2; |
| 2579 | kf_boost ++; |
| 2580 | } |
| 2581 | |
| 2582 | #endif |
| 2583 | |
| 2584 | if (kf_boost < 48) |
| 2585 | { |
| 2586 | kf_boost += ((Counter + 1) >> 1); |
| 2587 | |
| 2588 | if (kf_boost > 48) kf_boost = 48; |
| 2589 | } |
| 2590 | |
| 2591 | // bigger frame sizes need larger kf boosts, smaller frames smaller boosts... |
Fritz Koenig | 0ce3901 | 2010-07-22 08:07:32 -0400 | [diff] [blame] | 2592 | if ((lst_yv12->y_width * lst_yv12->y_height) > (320 * 240)) |
| 2593 | kf_boost += 2 * (lst_yv12->y_width * lst_yv12->y_height) / (320 * 240); |
| 2594 | else if ((lst_yv12->y_width * lst_yv12->y_height) < (320 * 240)) |
| 2595 | kf_boost -= 4 * (320 * 240) / (lst_yv12->y_width * lst_yv12->y_height); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2596 | |
| 2597 | kf_boost = (int)((double)kf_boost * 100.0) >> 4; // Scale 16 to 100 |
| 2598 | |
| 2599 | // Adjustment to boost based on recent average q |
Paul Wilkins | b095d9d | 2011-01-04 17:55:49 +0000 | [diff] [blame] | 2600 | //kf_boost = kf_boost * vp8_kf_boost_qadjustment[cpi->ni_av_qi] / 100; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2601 | |
| 2602 | if (kf_boost < 250) // Min KF boost |
| 2603 | kf_boost = 250; |
| 2604 | |
| 2605 | // We do three calculations for kf size. |
| 2606 | // The first is based on the error score for the whole kf group. |
| 2607 | // The second (optionaly) on the key frames own error if this is smaller than the average for the group. |
| 2608 | // The final one insures that the frame receives at least the allocation it would have received based on its own error score vs the error score remaining |
| 2609 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2610 | allocation_chunks = ((cpi->twopass.frames_to_key - 1) * 100) + kf_boost; // cpi->twopass.frames_to_key-1 because key frame itself is taken care of by kf_boost |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2611 | |
| 2612 | // Normalize Altboost and allocations chunck down to prevent overflow |
| 2613 | while (kf_boost > 1000) |
| 2614 | { |
| 2615 | kf_boost /= 2; |
| 2616 | allocation_chunks /= 2; |
| 2617 | } |
| 2618 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2619 | cpi->twopass.kf_group_bits = (cpi->twopass.kf_group_bits < 0) ? 0 : cpi->twopass.kf_group_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2620 | |
| 2621 | // Calculate the number of bits to be spent on the key frame |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2622 | cpi->twopass.kf_bits = (int)((double)kf_boost * ((double)cpi->twopass.kf_group_bits / (double)allocation_chunks)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2623 | |
| 2624 | // Apply an additional limit for CBR |
| 2625 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 2626 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2627 | if (cpi->twopass.kf_bits > ((3 * cpi->buffer_level) >> 2)) |
| 2628 | cpi->twopass.kf_bits = (3 * cpi->buffer_level) >> 2; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2629 | } |
| 2630 | |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2631 | // If the key frame is actually easier than the average for the |
| 2632 | // kf group (which does sometimes happen... eg a blank intro frame) |
| 2633 | // Then use an alternate calculation based on the kf error score |
| 2634 | // which should give a smaller key frame. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2635 | if (kf_mod_err < kf_group_err / cpi->twopass.frames_to_key) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2636 | { |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2637 | double alt_kf_grp_bits = |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2638 | ((double)cpi->twopass.bits_left * |
| 2639 | (kf_mod_err * (double)cpi->twopass.frames_to_key) / |
| 2640 | DOUBLE_DIVIDE_CHECK(cpi->twopass.modified_error_left)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2641 | |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2642 | alt_kf_bits = (int)((double)kf_boost * |
| 2643 | (alt_kf_grp_bits / (double)allocation_chunks)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2644 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2645 | if (cpi->twopass.kf_bits > alt_kf_bits) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2646 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2647 | cpi->twopass.kf_bits = alt_kf_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2648 | } |
| 2649 | } |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2650 | // Else if it is much harder than other frames in the group make sure |
| 2651 | // it at least receives an allocation in keeping with its relative |
| 2652 | // error score |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2653 | else |
| 2654 | { |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2655 | alt_kf_bits = |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2656 | (int)((double)cpi->twopass.bits_left * |
Paul Wilkins | c239a1b | 2010-08-20 12:27:26 +0100 | [diff] [blame] | 2657 | (kf_mod_err / |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2658 | DOUBLE_DIVIDE_CHECK(cpi->twopass.modified_error_left))); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2659 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2660 | if (alt_kf_bits > cpi->twopass.kf_bits) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2661 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2662 | cpi->twopass.kf_bits = alt_kf_bits; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2663 | } |
| 2664 | } |
| 2665 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2666 | cpi->twopass.kf_group_bits -= cpi->twopass.kf_bits; |
| 2667 | cpi->twopass.kf_bits += cpi->min_frame_bandwidth; // Add in the minimum frame allowance |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2668 | |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2669 | cpi->per_frame_bandwidth = cpi->twopass.kf_bits; // Peer frame bit target for this frame |
| 2670 | cpi->target_bandwidth = cpi->twopass.kf_bits * cpi->output_frame_rate; // Convert to a per second bitrate |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2671 | } |
| 2672 | |
| 2673 | // Note the total error score of the kf group minus the key frame itself |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2674 | cpi->twopass.kf_group_error_left = (int)(kf_group_err - kf_mod_err); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2675 | |
| 2676 | // Adjust the count of total modified error left. |
| 2677 | // The count of bits left is adjusted elsewhere based on real coded frame sizes |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2678 | cpi->twopass.modified_error_left -= kf_group_err; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2679 | |
| 2680 | if (cpi->oxcf.allow_spatial_resampling) |
| 2681 | { |
| 2682 | int resample_trigger = FALSE; |
| 2683 | int last_kf_resampled = FALSE; |
| 2684 | int kf_q; |
| 2685 | int scale_val = 0; |
| 2686 | int hr, hs, vr, vs; |
| 2687 | int new_width = cpi->oxcf.Width; |
| 2688 | int new_height = cpi->oxcf.Height; |
| 2689 | |
| 2690 | int projected_buffer_level = cpi->buffer_level; |
| 2691 | int tmp_q; |
| 2692 | |
| 2693 | double projected_bits_perframe; |
| 2694 | double group_iiratio = (kf_group_intra_err - first_frame.intra_error) / (kf_group_coded_err - first_frame.coded_error); |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2695 | double err_per_frame = kf_group_err / cpi->twopass.frames_to_key; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2696 | double bits_per_frame; |
| 2697 | double av_bits_per_frame; |
| 2698 | double effective_size_ratio; |
| 2699 | |
| 2700 | if ((cpi->common.Width != cpi->oxcf.Width) || (cpi->common.Height != cpi->oxcf.Height)) |
| 2701 | last_kf_resampled = TRUE; |
| 2702 | |
| 2703 | // Set back to unscaled by defaults |
| 2704 | cpi->common.horiz_scale = NORMAL; |
| 2705 | cpi->common.vert_scale = NORMAL; |
| 2706 | |
| 2707 | // Calculate Average bits per frame. |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2708 | //av_bits_per_frame = cpi->twopass.bits_left/(double)(cpi->twopass.total_stats->count - cpi->common.current_video_frame); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2709 | av_bits_per_frame = cpi->oxcf.target_bandwidth / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.frame_rate); |
| 2710 | //if ( av_bits_per_frame < 0.0 ) |
| 2711 | // av_bits_per_frame = 0.0 |
| 2712 | |
| 2713 | // CBR... Use the clip average as the target for deciding resample |
| 2714 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 2715 | { |
| 2716 | bits_per_frame = av_bits_per_frame; |
| 2717 | } |
| 2718 | |
| 2719 | // In VBR we want to avoid downsampling in easy section unless we are under extreme pressure |
| 2720 | // So use the larger of target bitrate for this sectoion or average bitrate for sequence |
| 2721 | else |
| 2722 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2723 | bits_per_frame = cpi->twopass.kf_group_bits / cpi->twopass.frames_to_key; // This accounts for how hard the section is... |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2724 | |
| 2725 | if (bits_per_frame < av_bits_per_frame) // Dont turn to resampling in easy sections just because they have been assigned a small number of bits |
| 2726 | bits_per_frame = av_bits_per_frame; |
| 2727 | } |
| 2728 | |
| 2729 | // bits_per_frame should comply with our minimum |
| 2730 | if (bits_per_frame < (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100)) |
| 2731 | bits_per_frame = (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100); |
| 2732 | |
| 2733 | // Work out if spatial resampling is necessary |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 2734 | kf_q = estimate_kf_group_q(cpi, err_per_frame, bits_per_frame, group_iiratio); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2735 | |
| 2736 | // If we project a required Q higher than the maximum allowed Q then make a guess at the actual size of frames in this section |
| 2737 | projected_bits_perframe = bits_per_frame; |
| 2738 | tmp_q = kf_q; |
| 2739 | |
| 2740 | while (tmp_q > cpi->worst_quality) |
| 2741 | { |
| 2742 | projected_bits_perframe *= 1.04; |
| 2743 | tmp_q--; |
| 2744 | } |
| 2745 | |
| 2746 | // Guess at buffer level at the end of the section |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2747 | projected_buffer_level = cpi->buffer_level - (int)((projected_bits_perframe - av_bits_per_frame) * cpi->twopass.frames_to_key); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2748 | |
| 2749 | if (0) |
| 2750 | { |
| 2751 | FILE *f = fopen("Subsamle.stt", "a"); |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2752 | fprintf(f, " %8d %8d %8d %8d %12.0f %8d %8d %8d\n", cpi->common.current_video_frame, kf_q, cpi->common.horiz_scale, cpi->common.vert_scale, kf_group_err / cpi->twopass.frames_to_key, (int)(cpi->twopass.kf_group_bits / cpi->twopass.frames_to_key), new_height, new_width); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2753 | fclose(f); |
| 2754 | } |
| 2755 | |
| 2756 | // The trigger for spatial resampling depends on the various parameters such as whether we are streaming (CBR) or VBR. |
| 2757 | if (cpi->oxcf.end_usage == USAGE_STREAM_FROM_SERVER) |
| 2758 | { |
| 2759 | // Trigger resample if we are projected to fall below down sample level or |
| 2760 | // resampled last time and are projected to remain below the up sample level |
| 2761 | if ((projected_buffer_level < (cpi->oxcf.resample_down_water_mark * cpi->oxcf.optimal_buffer_level / 100)) || |
| 2762 | (last_kf_resampled && (projected_buffer_level < (cpi->oxcf.resample_up_water_mark * cpi->oxcf.optimal_buffer_level / 100)))) |
| 2763 | //( ((cpi->buffer_level < (cpi->oxcf.resample_down_water_mark * cpi->oxcf.optimal_buffer_level / 100))) && |
| 2764 | // ((projected_buffer_level < (cpi->oxcf.resample_up_water_mark * cpi->oxcf.optimal_buffer_level / 100))) )) |
| 2765 | resample_trigger = TRUE; |
| 2766 | else |
| 2767 | resample_trigger = FALSE; |
| 2768 | } |
| 2769 | else |
| 2770 | { |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2771 | long long clip_bits = (long long)(cpi->twopass.total_stats->count * cpi->oxcf.target_bandwidth / DOUBLE_DIVIDE_CHECK((double)cpi->oxcf.frame_rate)); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2772 | long long over_spend = cpi->oxcf.starting_buffer_level - cpi->buffer_level; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2773 | |
| 2774 | if ((last_kf_resampled && (kf_q > cpi->worst_quality)) || // If triggered last time the threshold for triggering again is reduced |
| 2775 | ((kf_q > cpi->worst_quality) && // Projected Q higher than allowed and ... |
| 2776 | (over_spend > clip_bits / 20))) // ... Overspend > 5% of total bits |
| 2777 | resample_trigger = TRUE; |
| 2778 | else |
| 2779 | resample_trigger = FALSE; |
| 2780 | |
| 2781 | } |
| 2782 | |
| 2783 | if (resample_trigger) |
| 2784 | { |
| 2785 | while ((kf_q >= cpi->worst_quality) && (scale_val < 6)) |
| 2786 | { |
| 2787 | scale_val ++; |
| 2788 | |
| 2789 | cpi->common.vert_scale = vscale_lookup[scale_val]; |
| 2790 | cpi->common.horiz_scale = hscale_lookup[scale_val]; |
| 2791 | |
| 2792 | Scale2Ratio(cpi->common.horiz_scale, &hr, &hs); |
| 2793 | Scale2Ratio(cpi->common.vert_scale, &vr, &vs); |
| 2794 | |
| 2795 | new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs; |
| 2796 | new_height = ((vs - 1) + (cpi->oxcf.Height * vr)) / vs; |
| 2797 | |
| 2798 | // Reducing the area to 1/4 does not reduce the complexity (err_per_frame) to 1/4... |
| 2799 | // effective_sizeratio attempts to provide a crude correction for this |
| 2800 | effective_size_ratio = (double)(new_width * new_height) / (double)(cpi->oxcf.Width * cpi->oxcf.Height); |
| 2801 | effective_size_ratio = (1.0 + (3.0 * effective_size_ratio)) / 4.0; |
| 2802 | |
| 2803 | // Now try again and see what Q we get with the smaller image size |
James Berry | f3e9e2a | 2011-03-10 11:13:44 -0500 | [diff] [blame] | 2804 | kf_q = estimate_kf_group_q(cpi, err_per_frame * effective_size_ratio, bits_per_frame, group_iiratio); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2805 | |
| 2806 | if (0) |
| 2807 | { |
| 2808 | FILE *f = fopen("Subsamle.stt", "a"); |
John Koleszar | 63cb1a7 | 2011-05-19 17:16:39 -0400 | [diff] [blame] | 2809 | fprintf(f, "******** %8d %8d %8d %12.0f %8d %8d %8d\n", kf_q, cpi->common.horiz_scale, cpi->common.vert_scale, kf_group_err / cpi->twopass.frames_to_key, (int)(cpi->twopass.kf_group_bits / cpi->twopass.frames_to_key), new_height, new_width); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 2810 | fclose(f); |
| 2811 | } |
| 2812 | } |
| 2813 | } |
| 2814 | |
| 2815 | if ((cpi->common.Width != new_width) || (cpi->common.Height != new_height)) |
| 2816 | { |
| 2817 | cpi->common.Width = new_width; |
| 2818 | cpi->common.Height = new_height; |
| 2819 | vp8_alloc_compressor_data(cpi); |
| 2820 | } |
| 2821 | } |
| 2822 | } |