2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
#include <limits.h>
|
2014-02-28 20:15:32 +01:00
|
|
|
#include <math.h>
|
2013-10-06 02:10:54 +02:00
|
|
|
#include <stdio.h>
|
2014-02-28 20:15:32 +01:00
|
|
|
|
|
|
|
#include "./vpx_scale_rtcd.h"
|
|
|
|
|
|
|
|
#include "vpx_mem/vpx_mem.h"
|
|
|
|
#include "vpx_scale/vpx_scale.h"
|
|
|
|
#include "vpx_scale/yv12config.h"
|
|
|
|
|
|
|
|
#include "vp9/common/vp9_entropymv.h"
|
|
|
|
#include "vp9/common/vp9_quant_common.h"
|
2014-03-03 23:58:43 +01:00
|
|
|
#include "vp9/common/vp9_reconinter.h" // vp9_setup_dst_planes()
|
2013-11-18 21:36:55 +01:00
|
|
|
#include "vp9/common/vp9_systemdependent.h"
|
2014-02-28 20:15:32 +01:00
|
|
|
|
2014-03-21 22:31:53 +01:00
|
|
|
#include "vp9/encoder/vp9_aq_variance.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/encoder/vp9_block.h"
|
2013-11-18 21:36:55 +01:00
|
|
|
#include "vp9/encoder/vp9_encodeframe.h"
|
|
|
|
#include "vp9/encoder/vp9_encodemb.h"
|
2014-02-28 20:15:32 +01:00
|
|
|
#include "vp9/encoder/vp9_encodemv.h"
|
2014-04-19 03:27:47 +02:00
|
|
|
#include "vp9/encoder/vp9_encoder.h"
|
2013-11-18 21:36:55 +01:00
|
|
|
#include "vp9/encoder/vp9_extend.h"
|
|
|
|
#include "vp9/encoder/vp9_firstpass.h"
|
|
|
|
#include "vp9/encoder/vp9_mcomp.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/encoder/vp9_quantize.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/encoder/vp9_ratectrl.h"
|
2014-02-28 20:15:32 +01:00
|
|
|
#include "vp9/encoder/vp9_rdopt.h"
|
|
|
|
#include "vp9/encoder/vp9_variance.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-08-14 01:50:03 +02:00
|
|
|
#define OUTPUT_FPF 0
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-05-16 15:49:30 +02:00
|
|
|
#define IIFACTOR 12.5
|
|
|
|
#define IIKFACTOR1 12.5
|
2012-06-07 14:39:20 +02:00
|
|
|
#define IIKFACTOR2 15.0
|
2013-04-16 19:59:39 +02:00
|
|
|
#define RMAX 512.0
|
2012-05-16 15:49:30 +02:00
|
|
|
#define GF_RMAX 96.0
|
2012-05-14 15:54:54 +02:00
|
|
|
#define ERR_DIVISOR 150.0
|
2012-12-14 18:49:46 +01:00
|
|
|
#define MIN_DECAY_FACTOR 0.1
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-12-14 18:49:46 +01:00
|
|
|
#define KF_MB_INTRA_MIN 150
|
|
|
|
#define GF_MB_INTRA_MIN 100
|
2011-01-07 19:29:37 +01:00
|
|
|
|
2013-05-09 03:13:46 +02:00
|
|
|
#define DOUBLE_DIVIDE_CHECK(x) ((x) < 0 ? (x) - 0.000001 : (x) + 0.000001)
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-04 20:42:50 +01:00
|
|
|
#define MIN_KF_BOOST 300
|
|
|
|
|
2014-03-18 19:20:06 +01:00
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
// Set MIN_GF_INTERVAL to 1 for the full decomposition.
|
|
|
|
#define MIN_GF_INTERVAL 2
|
|
|
|
#else
|
|
|
|
#define MIN_GF_INTERVAL 4
|
|
|
|
#endif
|
|
|
|
|
2014-04-15 03:06:52 +02:00
|
|
|
#define LONG_TERM_VBR_CORRECTION
|
2014-04-03 19:22:58 +02:00
|
|
|
|
2013-05-08 00:40:18 +02:00
|
|
|
static void swap_yv12(YV12_BUFFER_CONFIG *a, YV12_BUFFER_CONFIG *b) {
|
|
|
|
YV12_BUFFER_CONFIG temp = *a;
|
|
|
|
*a = *b;
|
|
|
|
*b = temp;
|
|
|
|
}
|
|
|
|
|
2013-11-27 00:47:43 +01:00
|
|
|
static int gfboost_qadjust(int qindex) {
|
|
|
|
const double q = vp9_convert_qindex_to_q(qindex);
|
|
|
|
return (int)((0.00000828 * q * q * q) +
|
|
|
|
(-0.0055 * q * q) +
|
|
|
|
(1.32 * q) + 79.3);
|
|
|
|
}
|
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
// Resets the first pass file to the given position using a relative seek from
|
|
|
|
// the current position.
|
2014-01-06 21:46:23 +01:00
|
|
|
static void reset_fpf_position(struct twopass_rc *p,
|
2014-03-07 03:58:17 +01:00
|
|
|
const FIRSTPASS_STATS *position) {
|
2014-01-06 21:46:23 +01:00
|
|
|
p->stats_in = position;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-01-06 21:46:23 +01:00
|
|
|
static int lookup_next_frame_stats(const struct twopass_rc *p,
|
|
|
|
FIRSTPASS_STATS *next_frame) {
|
|
|
|
if (p->stats_in >= p->stats_in_end)
|
2012-07-14 00:21:29 +02:00
|
|
|
return EOF;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-06 21:46:23 +01:00
|
|
|
*next_frame = *p->stats_in;
|
2012-07-14 00:21:29 +02:00
|
|
|
return 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-01-09 17:10:57 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Read frame stats at an offset from the current position.
|
2014-01-06 21:46:23 +01:00
|
|
|
static int read_frame_stats(const struct twopass_rc *p,
|
|
|
|
FIRSTPASS_STATS *frame_stats, int offset) {
|
|
|
|
const FIRSTPASS_STATS *fps_ptr = p->stats_in;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Check legality of offset.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (offset >= 0) {
|
2014-01-06 21:46:23 +01:00
|
|
|
if (&fps_ptr[offset] >= p->stats_in_end)
|
2012-07-14 00:21:29 +02:00
|
|
|
return EOF;
|
|
|
|
} else if (offset < 0) {
|
2014-01-06 21:46:23 +01:00
|
|
|
if (&fps_ptr[offset] < p->stats_in_start)
|
2012-07-14 00:21:29 +02:00
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
*frame_stats = fps_ptr[offset];
|
|
|
|
return 1;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2014-01-06 21:46:23 +01:00
|
|
|
static int input_stats(struct twopass_rc *p, FIRSTPASS_STATS *fps) {
|
|
|
|
if (p->stats_in >= p->stats_in_end)
|
2012-07-14 00:21:29 +02:00
|
|
|
return EOF;
|
2011-06-28 18:29:47 +02:00
|
|
|
|
2014-01-06 21:46:23 +01:00
|
|
|
*fps = *p->stats_in;
|
|
|
|
++p->stats_in;
|
2012-07-14 00:21:29 +02:00
|
|
|
return 1;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2014-03-01 01:35:19 +01:00
|
|
|
static void output_stats(FIRSTPASS_STATS *stats,
|
|
|
|
struct vpx_codec_pkt_list *pktlist) {
|
2012-07-14 00:21:29 +02:00
|
|
|
struct vpx_codec_cx_pkt pkt;
|
|
|
|
pkt.kind = VPX_CODEC_STATS_PKT;
|
|
|
|
pkt.data.twopass_stats.buf = stats;
|
|
|
|
pkt.data.twopass_stats.sz = sizeof(FIRSTPASS_STATS);
|
|
|
|
vpx_codec_pkt_list_add(pktlist, &pkt);
|
2011-06-28 18:29:47 +02:00
|
|
|
|
|
|
|
// TEMP debug code
|
|
|
|
#if OUTPUT_FPF
|
2012-07-14 00:21:29 +02:00
|
|
|
{
|
|
|
|
FILE *fpfile;
|
|
|
|
fpfile = fopen("firstpass.stt", "a");
|
|
|
|
|
2014-01-09 17:10:57 +01:00
|
|
|
fprintf(fpfile, "%12.0f %12.0f %12.0f %12.0f %12.0f %12.4f %12.4f"
|
2012-07-14 00:21:29 +02:00
|
|
|
"%12.4f %12.4f %12.4f %12.4f %12.4f %12.4f %12.4f"
|
|
|
|
"%12.0f %12.0f %12.4f %12.0f %12.0f %12.4f\n",
|
|
|
|
stats->frame,
|
|
|
|
stats->intra_error,
|
|
|
|
stats->coded_error,
|
|
|
|
stats->sr_coded_error,
|
|
|
|
stats->ssim_weighted_pred_err,
|
|
|
|
stats->pcnt_inter,
|
|
|
|
stats->pcnt_motion,
|
|
|
|
stats->pcnt_second_ref,
|
|
|
|
stats->pcnt_neutral,
|
|
|
|
stats->MVr,
|
|
|
|
stats->mvr_abs,
|
|
|
|
stats->MVc,
|
|
|
|
stats->mvc_abs,
|
|
|
|
stats->MVrv,
|
|
|
|
stats->MVcv,
|
|
|
|
stats->mv_in_out_count,
|
|
|
|
stats->new_mv_count,
|
|
|
|
stats->count,
|
|
|
|
stats->duration);
|
|
|
|
fclose(fpfile);
|
|
|
|
}
|
2011-06-28 18:29:47 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static void zero_stats(FIRSTPASS_STATS *section) {
|
|
|
|
section->frame = 0.0;
|
|
|
|
section->intra_error = 0.0;
|
|
|
|
section->coded_error = 0.0;
|
|
|
|
section->sr_coded_error = 0.0;
|
|
|
|
section->ssim_weighted_pred_err = 0.0;
|
|
|
|
section->pcnt_inter = 0.0;
|
|
|
|
section->pcnt_motion = 0.0;
|
|
|
|
section->pcnt_second_ref = 0.0;
|
|
|
|
section->pcnt_neutral = 0.0;
|
|
|
|
section->MVr = 0.0;
|
|
|
|
section->mvr_abs = 0.0;
|
|
|
|
section->MVc = 0.0;
|
|
|
|
section->mvc_abs = 0.0;
|
|
|
|
section->MVrv = 0.0;
|
|
|
|
section->MVcv = 0.0;
|
|
|
|
section->mv_in_out_count = 0.0;
|
|
|
|
section->new_mv_count = 0.0;
|
|
|
|
section->count = 0.0;
|
|
|
|
section->duration = 1.0;
|
2014-03-19 19:06:20 +01:00
|
|
|
section->spatial_layer_id = 0;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 02:03:05 +01:00
|
|
|
static void accumulate_stats(FIRSTPASS_STATS *section,
|
|
|
|
const FIRSTPASS_STATS *frame) {
|
2012-07-14 00:21:29 +02:00
|
|
|
section->frame += frame->frame;
|
2014-03-19 19:06:20 +01:00
|
|
|
section->spatial_layer_id = frame->spatial_layer_id;
|
2012-07-14 00:21:29 +02:00
|
|
|
section->intra_error += frame->intra_error;
|
|
|
|
section->coded_error += frame->coded_error;
|
|
|
|
section->sr_coded_error += frame->sr_coded_error;
|
|
|
|
section->ssim_weighted_pred_err += frame->ssim_weighted_pred_err;
|
|
|
|
section->pcnt_inter += frame->pcnt_inter;
|
|
|
|
section->pcnt_motion += frame->pcnt_motion;
|
|
|
|
section->pcnt_second_ref += frame->pcnt_second_ref;
|
|
|
|
section->pcnt_neutral += frame->pcnt_neutral;
|
|
|
|
section->MVr += frame->MVr;
|
|
|
|
section->mvr_abs += frame->mvr_abs;
|
|
|
|
section->MVc += frame->MVc;
|
|
|
|
section->mvc_abs += frame->mvc_abs;
|
|
|
|
section->MVrv += frame->MVrv;
|
|
|
|
section->MVcv += frame->MVcv;
|
|
|
|
section->mv_in_out_count += frame->mv_in_out_count;
|
|
|
|
section->new_mv_count += frame->new_mv_count;
|
|
|
|
section->count += frame->count;
|
|
|
|
section->duration += frame->duration;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2014-03-11 02:03:05 +01:00
|
|
|
static void subtract_stats(FIRSTPASS_STATS *section,
|
|
|
|
const FIRSTPASS_STATS *frame) {
|
2012-07-14 00:21:29 +02:00
|
|
|
section->frame -= frame->frame;
|
|
|
|
section->intra_error -= frame->intra_error;
|
|
|
|
section->coded_error -= frame->coded_error;
|
|
|
|
section->sr_coded_error -= frame->sr_coded_error;
|
|
|
|
section->ssim_weighted_pred_err -= frame->ssim_weighted_pred_err;
|
|
|
|
section->pcnt_inter -= frame->pcnt_inter;
|
|
|
|
section->pcnt_motion -= frame->pcnt_motion;
|
|
|
|
section->pcnt_second_ref -= frame->pcnt_second_ref;
|
|
|
|
section->pcnt_neutral -= frame->pcnt_neutral;
|
|
|
|
section->MVr -= frame->MVr;
|
|
|
|
section->mvr_abs -= frame->mvr_abs;
|
|
|
|
section->MVc -= frame->MVc;
|
|
|
|
section->mvc_abs -= frame->mvc_abs;
|
|
|
|
section->MVrv -= frame->MVrv;
|
|
|
|
section->MVcv -= frame->MVcv;
|
|
|
|
section->mv_in_out_count -= frame->mv_in_out_count;
|
|
|
|
section->new_mv_count -= frame->new_mv_count;
|
|
|
|
section->count -= frame->count;
|
|
|
|
section->duration -= frame->duration;
|
2011-11-23 18:18:31 +01:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static void avg_stats(FIRSTPASS_STATS *section) {
|
|
|
|
if (section->count < 1.0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
section->intra_error /= section->count;
|
|
|
|
section->coded_error /= section->count;
|
|
|
|
section->sr_coded_error /= section->count;
|
|
|
|
section->ssim_weighted_pred_err /= section->count;
|
|
|
|
section->pcnt_inter /= section->count;
|
|
|
|
section->pcnt_second_ref /= section->count;
|
|
|
|
section->pcnt_neutral /= section->count;
|
|
|
|
section->pcnt_motion /= section->count;
|
|
|
|
section->MVr /= section->count;
|
|
|
|
section->mvr_abs /= section->count;
|
|
|
|
section->MVc /= section->count;
|
|
|
|
section->mvc_abs /= section->count;
|
|
|
|
section->MVrv /= section->count;
|
|
|
|
section->MVcv /= section->count;
|
|
|
|
section->mv_in_out_count /= section->count;
|
|
|
|
section->duration /= section->count;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
// Calculate a modified Error used in distributing bits between easier and
|
|
|
|
// harder frames.
|
2014-02-06 00:11:12 +01:00
|
|
|
static double calculate_modified_err(const VP9_COMP *cpi,
|
|
|
|
const FIRSTPASS_STATS *this_frame) {
|
2014-03-27 23:46:32 +01:00
|
|
|
const struct twopass_rc *twopass = &cpi->twopass;
|
2014-04-09 00:21:30 +02:00
|
|
|
const SVC *const svc = &cpi->svc;
|
2014-03-27 23:46:32 +01:00
|
|
|
const FIRSTPASS_STATS *stats;
|
|
|
|
double av_err;
|
|
|
|
double modified_error;
|
|
|
|
|
2014-04-09 00:21:30 +02:00
|
|
|
if (svc->number_spatial_layers > 1 &&
|
|
|
|
svc->number_temporal_layers == 1) {
|
|
|
|
twopass = &svc->layer_context[svc->spatial_layer_id].twopass;
|
2014-03-27 23:46:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
stats = &twopass->total_stats;
|
|
|
|
av_err = stats->ssim_weighted_pred_err / stats->count;
|
|
|
|
modified_error = av_err * pow(this_frame->ssim_weighted_pred_err /
|
|
|
|
DOUBLE_DIVIDE_CHECK(av_err),
|
|
|
|
cpi->oxcf.two_pass_vbrbias / 100.0);
|
2014-01-02 16:45:06 +01:00
|
|
|
|
2014-01-15 21:23:16 +01:00
|
|
|
return fclamp(modified_error,
|
|
|
|
twopass->modified_error_min, twopass->modified_error_max);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2011-01-26 22:42:56 +01:00
|
|
|
static const double weight_table[256] = {
|
2013-10-06 02:10:54 +02:00
|
|
|
0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000,
|
|
|
|
0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000,
|
|
|
|
0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000,
|
|
|
|
0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.020000,
|
|
|
|
0.020000, 0.020000, 0.020000, 0.020000, 0.020000, 0.031250, 0.062500,
|
|
|
|
0.093750, 0.125000, 0.156250, 0.187500, 0.218750, 0.250000, 0.281250,
|
|
|
|
0.312500, 0.343750, 0.375000, 0.406250, 0.437500, 0.468750, 0.500000,
|
|
|
|
0.531250, 0.562500, 0.593750, 0.625000, 0.656250, 0.687500, 0.718750,
|
|
|
|
0.750000, 0.781250, 0.812500, 0.843750, 0.875000, 0.906250, 0.937500,
|
|
|
|
0.968750, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000, 1.000000,
|
|
|
|
1.000000, 1.000000, 1.000000, 1.000000
|
2011-01-26 22:42:56 +01:00
|
|
|
};
|
|
|
|
|
2014-01-22 17:57:13 +01:00
|
|
|
static double simple_weight(const YV12_BUFFER_CONFIG *buf) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
2014-01-22 17:57:13 +01:00
|
|
|
double sum = 0.0;
|
|
|
|
const int w = buf->y_crop_width;
|
|
|
|
const int h = buf->y_crop_height;
|
|
|
|
const uint8_t *row = buf->y_buffer;
|
|
|
|
|
|
|
|
for (i = 0; i < h; ++i) {
|
|
|
|
const uint8_t *pixel = row;
|
|
|
|
for (j = 0; j < w; ++j)
|
|
|
|
sum += weight_table[*pixel++];
|
|
|
|
row += buf->y_stride;
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-01-22 17:57:13 +01:00
|
|
|
return MAX(0.1, sum / (w * h));
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-01-09 17:10:57 +01:00
|
|
|
// This function returns the maximum target rate per frame.
|
2014-04-18 20:01:36 +02:00
|
|
|
static int frame_max_bits(const RATE_CONTROL *rc,
|
|
|
|
const VP9EncoderConfig *oxcf) {
|
2014-04-10 20:28:29 +02:00
|
|
|
int64_t max_bits = ((int64_t)rc->avg_frame_bandwidth *
|
2014-04-09 00:21:30 +02:00
|
|
|
(int64_t)oxcf->two_pass_vbrmax_section) / 100;
|
2013-11-26 18:56:14 +01:00
|
|
|
if (max_bits < 0)
|
2014-01-10 18:26:44 +01:00
|
|
|
max_bits = 0;
|
2014-04-09 00:21:30 +02:00
|
|
|
else if (max_bits > rc->max_frame_bandwidth)
|
|
|
|
max_bits = rc->max_frame_bandwidth;
|
2014-01-10 18:26:44 +01:00
|
|
|
|
2013-11-26 18:56:14 +01:00
|
|
|
return (int)max_bits;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_init_first_pass(VP9_COMP *cpi) {
|
2013-05-06 23:07:18 +02:00
|
|
|
zero_stats(&cpi->twopass.total_stats);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_end_first_pass(VP9_COMP *cpi) {
|
2014-03-19 19:06:20 +01:00
|
|
|
if (cpi->use_svc && cpi->svc.number_temporal_layers == 1) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < cpi->svc.number_spatial_layers; ++i) {
|
|
|
|
output_stats(&cpi->svc.layer_context[i].twopass.total_stats,
|
|
|
|
cpi->output_pkt_list);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
output_stats(&cpi->twopass.total_stats, cpi->output_pkt_list);
|
|
|
|
}
|
2010-10-14 22:40:12 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-12-19 23:07:03 +01:00
|
|
|
static vp9_variance_fn_t get_block_variance_fn(BLOCK_SIZE bsize) {
|
|
|
|
switch (bsize) {
|
|
|
|
case BLOCK_8X8:
|
|
|
|
return vp9_mse8x8;
|
|
|
|
case BLOCK_16X8:
|
|
|
|
return vp9_mse16x8;
|
|
|
|
case BLOCK_8X16:
|
|
|
|
return vp9_mse8x16;
|
|
|
|
default:
|
|
|
|
return vp9_mse16x16;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-11 20:03:56 +02:00
|
|
|
static unsigned int get_prediction_error(BLOCK_SIZE bsize,
|
|
|
|
const struct buf_2d *src,
|
|
|
|
const struct buf_2d *ref) {
|
2013-12-12 20:18:17 +01:00
|
|
|
unsigned int sse;
|
2014-04-11 20:03:56 +02:00
|
|
|
const vp9_variance_fn_t fn = get_block_variance_fn(bsize);
|
|
|
|
fn(src->buf, src->stride, ref->buf, ref->stride, &sse);
|
2013-12-12 20:18:17 +01:00
|
|
|
return sse;
|
2013-06-08 21:04:12 +02:00
|
|
|
}
|
|
|
|
|
2014-04-15 23:40:40 +02:00
|
|
|
// Refine the motion search range according to the frame dimension
|
|
|
|
// for first pass test.
|
|
|
|
static int get_search_range(const VP9_COMMON *cm) {
|
|
|
|
int sr = 0;
|
|
|
|
const int dim = MIN(cm->width, cm->height);
|
|
|
|
|
|
|
|
while ((dim << sr) < MAX_FULL_PEL_VAL)
|
|
|
|
++sr;
|
|
|
|
return sr;
|
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
static void first_pass_motion_search(VP9_COMP *cpi, MACROBLOCK *x,
|
2014-01-15 03:05:00 +01:00
|
|
|
const MV *ref_mv, MV *best_mv,
|
2014-01-23 21:14:57 +01:00
|
|
|
int *best_motion_err) {
|
2012-10-17 23:51:27 +02:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2013-12-14 02:20:40 +01:00
|
|
|
MV tmp_mv = {0, 0};
|
2014-01-15 03:05:00 +01:00
|
|
|
MV ref_mv_full = {ref_mv->row >> 3, ref_mv->col >> 3};
|
2014-04-15 23:40:40 +02:00
|
|
|
int num00, tmp_err, n;
|
2014-04-02 01:18:47 +02:00
|
|
|
const BLOCK_SIZE bsize = xd->mi[0]->mbmi.sb_type;
|
2014-01-15 03:05:00 +01:00
|
|
|
vp9_variance_fn_ptr_t v_fn_ptr = cpi->fn_ptr[bsize];
|
2014-04-15 23:40:40 +02:00
|
|
|
const int new_mv_mode_penalty = 256;
|
2013-03-06 21:02:15 +01:00
|
|
|
|
2014-04-15 23:40:40 +02:00
|
|
|
int step_param = 3;
|
|
|
|
int further_steps = (MAX_MVSEARCH_STEPS - 1) - step_param;
|
|
|
|
const int sr = get_search_range(&cpi->common);
|
2014-01-15 03:05:00 +01:00
|
|
|
step_param += sr;
|
2013-03-06 21:02:15 +01:00
|
|
|
further_steps -= sr;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Override the default variance function to use MSE.
|
2014-01-15 03:05:00 +01:00
|
|
|
v_fn_ptr.vf = get_block_variance_fn(bsize);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Center the initial step/diamond search on best mv.
|
2013-12-14 02:20:40 +01:00
|
|
|
tmp_err = cpi->diamond_search_sad(x, &ref_mv_full, &tmp_mv,
|
2013-12-14 00:24:48 +01:00
|
|
|
step_param,
|
2014-04-11 08:28:52 +02:00
|
|
|
x->sadperbit16, &num00, &v_fn_ptr, ref_mv);
|
2014-02-28 23:29:22 +01:00
|
|
|
if (tmp_err < INT_MAX)
|
|
|
|
tmp_err = vp9_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1);
|
2012-07-14 00:21:29 +02:00
|
|
|
if (tmp_err < INT_MAX - new_mv_mode_penalty)
|
|
|
|
tmp_err += new_mv_mode_penalty;
|
|
|
|
|
|
|
|
if (tmp_err < *best_motion_err) {
|
|
|
|
*best_motion_err = tmp_err;
|
2014-04-15 23:40:40 +02:00
|
|
|
*best_mv = tmp_mv;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Carry out further step/diamond searches as necessary.
|
2012-07-14 00:21:29 +02:00
|
|
|
n = num00;
|
|
|
|
num00 = 0;
|
|
|
|
|
|
|
|
while (n < further_steps) {
|
2014-02-14 18:18:42 +01:00
|
|
|
++n;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
if (num00) {
|
2014-02-14 18:18:42 +01:00
|
|
|
--num00;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2013-12-14 02:20:40 +01:00
|
|
|
tmp_err = cpi->diamond_search_sad(x, &ref_mv_full, &tmp_mv,
|
2012-07-14 00:21:29 +02:00
|
|
|
step_param + n, x->sadperbit16,
|
2014-04-11 08:28:52 +02:00
|
|
|
&num00, &v_fn_ptr, ref_mv);
|
2014-02-28 23:29:22 +01:00
|
|
|
if (tmp_err < INT_MAX)
|
|
|
|
tmp_err = vp9_get_mvpred_var(x, &tmp_mv, ref_mv, &v_fn_ptr, 1);
|
2012-07-14 00:21:29 +02:00
|
|
|
if (tmp_err < INT_MAX - new_mv_mode_penalty)
|
2010-05-18 17:58:33 +02:00
|
|
|
tmp_err += new_mv_mode_penalty;
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (tmp_err < *best_motion_err) {
|
2010-05-18 17:58:33 +02:00
|
|
|
*best_motion_err = tmp_err;
|
2014-04-15 23:40:40 +02:00
|
|
|
*best_mv = tmp_mv;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-01-24 23:26:26 +01:00
|
|
|
static BLOCK_SIZE get_bsize(const VP9_COMMON *cm, int mb_row, int mb_col) {
|
|
|
|
if (2 * mb_col + 1 < cm->mi_cols) {
|
|
|
|
return 2 * mb_row + 1 < cm->mi_rows ? BLOCK_16X16
|
|
|
|
: BLOCK_16X8;
|
|
|
|
} else {
|
|
|
|
return 2 * mb_row + 1 < cm->mi_rows ? BLOCK_8X16
|
|
|
|
: BLOCK_8X8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_first_pass(VP9_COMP *cpi) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int mb_row, mb_col;
|
2012-10-17 23:51:27 +02:00
|
|
|
MACROBLOCK *const x = &cpi->mb;
|
2012-10-31 01:53:32 +01:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
2012-10-17 23:51:27 +02:00
|
|
|
MACROBLOCKD *const xd = &x->e_mbd;
|
2013-10-25 17:18:04 +02:00
|
|
|
TileInfo tile;
|
2013-11-01 20:53:37 +01:00
|
|
|
struct macroblock_plane *const p = x->plane;
|
|
|
|
struct macroblockd_plane *const pd = xd->plane;
|
add a context tree structure to encoder
This patch sets up a quad_tree structure (pc_tree) for holding all of
pick_mode_context data we use at any square block size during encoding
or picking modes. That includes contexts for 2 horizontal and 2 vertical
splits, one none, and pointers to 4 sub pc_tree nodes corresponding
to split. It also includes a pointer to the current chosen partitioning.
This replaces code that held an index for every level in the pick
modes array including: sb_index, mb_index,
b_index, ab_index.
These were used as stateful indexes that pointed to the current pick mode
contexts you had at each level stored in the following arrays
array ab4x4_context[][][],
sb8x4_context[][][], sb4x8_context[][][], sb8x8_context[][][],
sb8x16_context[][][], sb16x8_context[][][], mb_context[][], sb32x16[][],
sb16x32[], sb32_context[], sb32x64_context[], sb64x32_context[],
sb64_context
and the partitioning that had been stored in the following:
b_partitioning, mb_partitioning, sb_partitioning, and sb64_partitioning.
Prior to this patch before doing an encode you had to set the appropriate
index for your block size ( switch statement), update it ( up to 3
lookups for the index array value) and then make your call into a recursive
function at which point you'd have to call get_context which then
had to do a switch statement based on the blocksize, and then up to 3
lookups based upon the block size to find the context to use.
With the new code the context for the block size is passed around directly
avoiding the extraneous switch statements and multi dimensional array
look ups that were listed above. At any level in the search all of the
contexts are local to the pc_tree you are working on (in?).
In addition in most places code that used to call sub functions and
then check if the block size was 4x4 and index was > 0 and return
now don't preferring instead to call the right none function on the inside.
Change-Id: I06e39318269d9af2ce37961b3f95e181b57f5ed9
2014-04-17 16:30:55 +02:00
|
|
|
const PICK_MODE_CONTEXT *ctx = &x->pc_root->none;
|
2013-11-01 20:53:37 +01:00
|
|
|
int i;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
int recon_yoffset, recon_uvoffset;
|
2014-01-06 23:50:54 +01:00
|
|
|
YV12_BUFFER_CONFIG *const lst_yv12 = get_ref_frame_buffer(cpi, LAST_FRAME);
|
2014-03-19 19:06:20 +01:00
|
|
|
YV12_BUFFER_CONFIG *gld_yv12 = get_ref_frame_buffer(cpi, GOLDEN_FRAME);
|
2013-10-24 21:20:35 +02:00
|
|
|
YV12_BUFFER_CONFIG *const new_yv12 = get_frame_new_buffer(cm);
|
2014-03-19 19:06:20 +01:00
|
|
|
int recon_y_stride = lst_yv12->y_stride;
|
|
|
|
int recon_uv_stride = lst_yv12->uv_stride;
|
|
|
|
int uv_mb_height = 16 >> (lst_yv12->y_height > lst_yv12->uv_height);
|
2012-07-14 00:21:29 +02:00
|
|
|
int64_t intra_error = 0;
|
|
|
|
int64_t coded_error = 0;
|
|
|
|
int64_t sr_coded_error = 0;
|
|
|
|
|
|
|
|
int sum_mvr = 0, sum_mvc = 0;
|
|
|
|
int sum_mvr_abs = 0, sum_mvc_abs = 0;
|
2014-01-24 20:34:41 +01:00
|
|
|
int64_t sum_mvrs = 0, sum_mvcs = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
int mvcount = 0;
|
|
|
|
int intercount = 0;
|
|
|
|
int second_ref_count = 0;
|
|
|
|
int intrapenalty = 256;
|
|
|
|
int neutral_count = 0;
|
|
|
|
int new_mv_count = 0;
|
|
|
|
int sum_in_vectors = 0;
|
|
|
|
uint32_t lastmv_as_int = 0;
|
2014-03-19 19:06:20 +01:00
|
|
|
struct twopass_rc *twopass = &cpi->twopass;
|
2014-01-29 20:26:09 +01:00
|
|
|
const MV zero_mv = {0, 0};
|
2014-03-19 19:06:20 +01:00
|
|
|
const YV12_BUFFER_CONFIG *first_ref_buf = lst_yv12;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-03-19 19:06:20 +01:00
|
|
|
if (cpi->use_svc && cpi->svc.number_temporal_layers == 1) {
|
|
|
|
MV_REFERENCE_FRAME ref_frame = LAST_FRAME;
|
|
|
|
const YV12_BUFFER_CONFIG *scaled_ref_buf = NULL;
|
|
|
|
twopass = &cpi->svc.layer_context[cpi->svc.spatial_layer_id].twopass;
|
|
|
|
|
|
|
|
vp9_scale_references(cpi);
|
|
|
|
|
|
|
|
// Use either last frame or alt frame for motion search.
|
|
|
|
if (cpi->ref_frame_flags & VP9_LAST_FLAG) {
|
|
|
|
scaled_ref_buf = vp9_get_scaled_ref_frame(cpi, LAST_FRAME);
|
|
|
|
ref_frame = LAST_FRAME;
|
|
|
|
} else if (cpi->ref_frame_flags & VP9_ALT_FLAG) {
|
|
|
|
scaled_ref_buf = vp9_get_scaled_ref_frame(cpi, ALTREF_FRAME);
|
|
|
|
ref_frame = ALTREF_FRAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (scaled_ref_buf != NULL) {
|
|
|
|
// Update the stride since we are using scaled reference buffer
|
|
|
|
first_ref_buf = scaled_ref_buf;
|
|
|
|
recon_y_stride = first_ref_buf->y_stride;
|
|
|
|
recon_uv_stride = first_ref_buf->uv_stride;
|
|
|
|
uv_mb_height = 16 >> (first_ref_buf->y_height > first_ref_buf->uv_height);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disable golden frame for svc first pass for now.
|
|
|
|
gld_yv12 = NULL;
|
|
|
|
set_ref_ptrs(cm, xd, ref_frame, NONE);
|
2014-04-18 19:59:15 +02:00
|
|
|
|
|
|
|
cpi->Source = vp9_scale_if_required(cm, cpi->un_scaled_source,
|
|
|
|
&cpi->scaled_source);
|
2014-03-19 19:06:20 +01:00
|
|
|
}
|
|
|
|
|
2013-04-24 01:22:47 +02:00
|
|
|
vp9_setup_src_planes(x, cpi->Source, 0, 0);
|
2014-03-19 19:06:20 +01:00
|
|
|
vp9_setup_pre_planes(xd, 0, first_ref_buf, 0, 0, NULL);
|
2014-03-03 23:58:43 +01:00
|
|
|
vp9_setup_dst_planes(xd, new_yv12, 0, 0);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-04-02 01:18:47 +02:00
|
|
|
xd->mi = cm->mi_grid_visible;
|
|
|
|
xd->mi[0] = cm->mi;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-01 02:35:53 +01:00
|
|
|
vp9_setup_block_planes(&x->e_mbd, cm->subsampling_x, cm->subsampling_y);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2012-10-30 22:25:33 +01:00
|
|
|
vp9_frame_init_quantizer(cpi);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-11-01 20:53:37 +01:00
|
|
|
for (i = 0; i < MAX_MB_PLANE; ++i) {
|
|
|
|
p[i].coeff = ctx->coeff_pbuf[i][1];
|
2013-11-27 03:52:10 +01:00
|
|
|
p[i].qcoeff = ctx->qcoeff_pbuf[i][1];
|
2013-11-01 20:53:37 +01:00
|
|
|
pd[i].dqcoeff = ctx->dqcoeff_pbuf[i][1];
|
2013-12-04 02:59:32 +01:00
|
|
|
p[i].eobs = ctx->eobs_pbuf[i][1];
|
2013-11-01 20:53:37 +01:00
|
|
|
}
|
2013-11-07 23:56:58 +01:00
|
|
|
x->skip_recode = 0;
|
2013-11-01 20:53:37 +01:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
vp9_init_mv_probs(cm);
|
|
|
|
vp9_initialize_rd_consts(cpi);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Tiling is ignored in the first pass.
|
2013-10-25 17:18:04 +02:00
|
|
|
vp9_tile_init(&tile, cm, 0, 0);
|
|
|
|
|
2014-02-14 18:18:42 +01:00
|
|
|
for (mb_row = 0; mb_row < cm->mb_rows; ++mb_row) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int_mv best_ref_mv;
|
|
|
|
|
|
|
|
best_ref_mv.as_int = 0;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Reset above block coeffs.
|
2012-07-14 00:21:29 +02:00
|
|
|
xd->up_available = (mb_row != 0);
|
|
|
|
recon_yoffset = (mb_row * recon_y_stride * 16);
|
2013-12-18 20:57:40 +01:00
|
|
|
recon_uvoffset = (mb_row * recon_uv_stride * uv_mb_height);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-09-24 22:47:29 +02:00
|
|
|
// Set up limit values for motion vectors to prevent them extending
|
2014-02-13 18:40:45 +01:00
|
|
|
// outside the UMV borders.
|
2013-09-24 22:47:29 +02:00
|
|
|
x->mv_row_min = -((mb_row * 16) + BORDER_MV_PIXELS_B16);
|
2012-11-02 01:53:44 +01:00
|
|
|
x->mv_row_max = ((cm->mb_rows - 1 - mb_row) * 16)
|
2013-09-24 22:47:29 +02:00
|
|
|
+ BORDER_MV_PIXELS_B16;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-14 18:18:42 +01:00
|
|
|
for (mb_col = 0; mb_col < cm->mb_cols; ++mb_col) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int this_error;
|
2014-01-29 20:26:09 +01:00
|
|
|
const int use_dc_pred = (mb_col || mb_row) && (!mb_col || !mb_row);
|
2013-12-12 20:18:17 +01:00
|
|
|
double error_weight = 1.0;
|
2014-01-24 23:26:26 +01:00
|
|
|
const BLOCK_SIZE bsize = get_bsize(cm, mb_row, mb_col);
|
2013-10-17 20:04:57 +02:00
|
|
|
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-20 00:52:17 +02:00
|
|
|
xd->plane[0].dst.buf = new_yv12->y_buffer + recon_yoffset;
|
|
|
|
xd->plane[1].dst.buf = new_yv12->u_buffer + recon_uvoffset;
|
|
|
|
xd->plane[2].dst.buf = new_yv12->v_buffer + recon_uvoffset;
|
2012-07-14 00:21:29 +02:00
|
|
|
xd->left_available = (mb_col != 0);
|
2014-04-02 01:18:47 +02:00
|
|
|
xd->mi[0]->mbmi.sb_type = bsize;
|
|
|
|
xd->mi[0]->mbmi.ref_frame[0] = INTRA_FRAME;
|
2013-10-25 17:18:04 +02:00
|
|
|
set_mi_row_col(xd, &tile,
|
2014-01-24 23:26:26 +01:00
|
|
|
mb_row << 1, num_8x8_blocks_high_lookup[bsize],
|
|
|
|
mb_col << 1, num_8x8_blocks_wide_lookup[bsize],
|
2013-10-25 17:18:04 +02:00
|
|
|
cm->mi_rows, cm->mi_cols);
|
2013-05-15 23:12:33 +02:00
|
|
|
|
2013-11-14 19:23:57 +01:00
|
|
|
if (cpi->oxcf.aq_mode == VARIANCE_AQ) {
|
2014-01-29 20:26:09 +01:00
|
|
|
const int energy = vp9_block_energy(cpi, x, bsize);
|
2013-10-07 20:20:10 +02:00
|
|
|
error_weight = vp9_vaq_inv_q_ratio(energy);
|
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Do intra 16x16 prediction.
|
2013-10-17 20:04:57 +02:00
|
|
|
this_error = vp9_encode_intra(x, use_dc_pred);
|
2013-11-14 19:23:57 +01:00
|
|
|
if (cpi->oxcf.aq_mode == VARIANCE_AQ) {
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2014-02-13 22:03:44 +01:00
|
|
|
this_error = (int)(this_error * error_weight);
|
2013-10-17 20:04:57 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Intrapenalty below deals with situations where the intra and inter
|
|
|
|
// error scores are very low (e.g. a plain black frame).
|
2013-10-06 02:10:54 +02:00
|
|
|
// We do not have special cases in first pass for 0,0 and nearest etc so
|
|
|
|
// all inter modes carry an overhead cost estimate for the mv.
|
|
|
|
// When the error score is very low this causes us to pick all or lots of
|
|
|
|
// INTRA modes and throw lots of key frames.
|
2012-07-14 00:21:29 +02:00
|
|
|
// This penalty adds a cost matching that of a 0,0 mv to the intra case.
|
|
|
|
this_error += intrapenalty;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Accumulate the intra error.
|
2012-07-14 00:21:29 +02:00
|
|
|
intra_error += (int64_t)this_error;
|
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
// Set up limit values for motion vectors to prevent them extending
|
|
|
|
// outside the UMV borders.
|
2013-09-24 22:47:29 +02:00
|
|
|
x->mv_col_min = -((mb_col * 16) + BORDER_MV_PIXELS_B16);
|
2014-01-29 20:26:09 +01:00
|
|
|
x->mv_col_max = ((cm->mb_cols - 1 - mb_col) * 16) + BORDER_MV_PIXELS_B16;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Other than for the first frame do a motion search.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (cm->current_video_frame > 0) {
|
2014-01-23 21:14:57 +01:00
|
|
|
int tmp_err, motion_error;
|
2012-07-14 00:21:29 +02:00
|
|
|
int_mv mv, tmp_mv;
|
2014-01-23 21:14:57 +01:00
|
|
|
|
2014-03-19 19:06:20 +01:00
|
|
|
xd->plane[0].pre[0].buf = first_ref_buf->y_buffer + recon_yoffset;
|
2014-04-11 20:03:56 +02:00
|
|
|
motion_error = get_prediction_error(bsize, &x->plane[0].src,
|
|
|
|
&xd->plane[0].pre[0]);
|
2014-02-13 18:40:45 +01:00
|
|
|
// Assume 0,0 motion with no mv overhead.
|
2012-07-14 00:21:29 +02:00
|
|
|
mv.as_int = tmp_mv.as_int = 0;
|
|
|
|
|
|
|
|
// Test last reference frame using the previous best mv as the
|
2014-02-13 18:40:45 +01:00
|
|
|
// starting point (best reference) for the search.
|
2013-12-14 02:20:40 +01:00
|
|
|
first_pass_motion_search(cpi, x, &best_ref_mv.as_mv, &mv.as_mv,
|
2014-01-23 21:14:57 +01:00
|
|
|
&motion_error);
|
2013-11-14 19:23:57 +01:00
|
|
|
if (cpi->oxcf.aq_mode == VARIANCE_AQ) {
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2014-02-13 22:03:44 +01:00
|
|
|
motion_error = (int)(motion_error * error_weight);
|
2013-10-17 20:04:57 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
// If the current best reference mv is not centered on 0,0 then do a 0,0
|
|
|
|
// based search as well.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (best_ref_mv.as_int) {
|
|
|
|
tmp_err = INT_MAX;
|
2014-01-29 20:26:09 +01:00
|
|
|
first_pass_motion_search(cpi, x, &zero_mv, &tmp_mv.as_mv,
|
2014-01-23 21:14:57 +01:00
|
|
|
&tmp_err);
|
2013-11-14 19:23:57 +01:00
|
|
|
if (cpi->oxcf.aq_mode == VARIANCE_AQ) {
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2014-02-13 22:03:44 +01:00
|
|
|
tmp_err = (int)(tmp_err * error_weight);
|
2013-10-17 20:04:57 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
if (tmp_err < motion_error) {
|
|
|
|
motion_error = tmp_err;
|
|
|
|
mv.as_int = tmp_mv.as_int;
|
|
|
|
}
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Search in an older reference frame.
|
2014-03-19 19:06:20 +01:00
|
|
|
if (cm->current_video_frame > 1 && gld_yv12 != NULL) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Assume 0,0 motion with no mv overhead.
|
2014-01-23 21:14:57 +01:00
|
|
|
int gf_motion_error;
|
|
|
|
|
|
|
|
xd->plane[0].pre[0].buf = gld_yv12->y_buffer + recon_yoffset;
|
2014-04-11 20:03:56 +02:00
|
|
|
gf_motion_error = get_prediction_error(bsize, &x->plane[0].src,
|
|
|
|
&xd->plane[0].pre[0]);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
first_pass_motion_search(cpi, x, &zero_mv, &tmp_mv.as_mv,
|
2014-01-23 21:14:57 +01:00
|
|
|
&gf_motion_error);
|
2013-11-14 19:23:57 +01:00
|
|
|
if (cpi->oxcf.aq_mode == VARIANCE_AQ) {
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2014-02-13 22:03:44 +01:00
|
|
|
gf_motion_error = (int)(gf_motion_error * error_weight);
|
2013-10-17 20:04:57 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
if (gf_motion_error < motion_error && gf_motion_error < this_error)
|
2014-02-14 18:18:42 +01:00
|
|
|
++second_ref_count;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Reset to last frame as reference buffer.
|
2014-03-19 19:06:20 +01:00
|
|
|
xd->plane[0].pre[0].buf = first_ref_buf->y_buffer + recon_yoffset;
|
|
|
|
xd->plane[1].pre[0].buf = first_ref_buf->u_buffer + recon_uvoffset;
|
|
|
|
xd->plane[2].pre[0].buf = first_ref_buf->v_buffer + recon_uvoffset;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// In accumulating a score for the older reference frame take the
|
|
|
|
// best of the motion predicted score and the intra coded error
|
|
|
|
// (just as will be done for) accumulation of "coded_error" for
|
|
|
|
// the last frame.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (gf_motion_error < this_error)
|
|
|
|
sr_coded_error += gf_motion_error;
|
|
|
|
else
|
|
|
|
sr_coded_error += this_error;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2012-07-14 00:21:29 +02:00
|
|
|
sr_coded_error += motion_error;
|
2013-10-06 02:10:54 +02:00
|
|
|
}
|
2014-02-13 18:40:45 +01:00
|
|
|
// Start by assuming that intra mode is best.
|
2011-01-26 22:42:56 +01:00
|
|
|
best_ref_mv.as_int = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (motion_error <= this_error) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Keep a count of cases where the inter and intra were very close
|
|
|
|
// and very low. This helps with scene cut detection for example in
|
|
|
|
// cropped clips with black bars at the sides or top and bottom.
|
2013-12-12 20:18:17 +01:00
|
|
|
if (((this_error - intrapenalty) * 9 <= motion_error * 10) &&
|
|
|
|
this_error < 2 * intrapenalty)
|
2014-02-14 18:18:42 +01:00
|
|
|
++neutral_count;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-09-18 01:31:46 +02:00
|
|
|
mv.as_mv.row *= 8;
|
|
|
|
mv.as_mv.col *= 8;
|
2012-07-14 00:21:29 +02:00
|
|
|
this_error = motion_error;
|
2014-04-02 01:18:47 +02:00
|
|
|
xd->mi[0]->mbmi.mode = NEWMV;
|
|
|
|
xd->mi[0]->mbmi.mv[0] = mv;
|
|
|
|
xd->mi[0]->mbmi.tx_size = TX_4X4;
|
|
|
|
xd->mi[0]->mbmi.ref_frame[0] = LAST_FRAME;
|
|
|
|
xd->mi[0]->mbmi.ref_frame[1] = NONE;
|
2014-01-24 23:26:26 +01:00
|
|
|
vp9_build_inter_predictors_sby(xd, mb_row << 1, mb_col << 1, bsize);
|
2014-02-26 22:51:12 +01:00
|
|
|
vp9_encode_sby_pass1(x, bsize);
|
2012-07-14 00:21:29 +02:00
|
|
|
sum_mvr += mv.as_mv.row;
|
|
|
|
sum_mvr_abs += abs(mv.as_mv.row);
|
|
|
|
sum_mvc += mv.as_mv.col;
|
|
|
|
sum_mvc_abs += abs(mv.as_mv.col);
|
|
|
|
sum_mvrs += mv.as_mv.row * mv.as_mv.row;
|
|
|
|
sum_mvcs += mv.as_mv.col * mv.as_mv.col;
|
2014-02-14 18:18:42 +01:00
|
|
|
++intercount;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
best_ref_mv.as_int = mv.as_int;
|
|
|
|
|
|
|
|
if (mv.as_int) {
|
2014-02-14 18:18:42 +01:00
|
|
|
++mvcount;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Non-zero vector, was it different from the last non zero vector?
|
2012-07-14 00:21:29 +02:00
|
|
|
if (mv.as_int != lastmv_as_int)
|
2014-02-14 18:18:42 +01:00
|
|
|
++new_mv_count;
|
2012-07-14 00:21:29 +02:00
|
|
|
lastmv_as_int = mv.as_int;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Does the row vector point inwards or outwards?
|
2012-07-14 00:21:29 +02:00
|
|
|
if (mb_row < cm->mb_rows / 2) {
|
|
|
|
if (mv.as_mv.row > 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
--sum_in_vectors;
|
2012-07-14 00:21:29 +02:00
|
|
|
else if (mv.as_mv.row < 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
++sum_in_vectors;
|
2012-07-14 00:21:29 +02:00
|
|
|
} else if (mb_row > cm->mb_rows / 2) {
|
|
|
|
if (mv.as_mv.row > 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
++sum_in_vectors;
|
2012-07-14 00:21:29 +02:00
|
|
|
else if (mv.as_mv.row < 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
--sum_in_vectors;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Does the col vector point inwards or outwards?
|
2012-07-14 00:21:29 +02:00
|
|
|
if (mb_col < cm->mb_cols / 2) {
|
|
|
|
if (mv.as_mv.col > 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
--sum_in_vectors;
|
2012-07-14 00:21:29 +02:00
|
|
|
else if (mv.as_mv.col < 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
++sum_in_vectors;
|
2012-07-14 00:21:29 +02:00
|
|
|
} else if (mb_col > cm->mb_cols / 2) {
|
|
|
|
if (mv.as_mv.col > 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
++sum_in_vectors;
|
2012-07-14 00:21:29 +02:00
|
|
|
else if (mv.as_mv.col < 0)
|
2014-02-14 18:18:42 +01:00
|
|
|
--sum_in_vectors;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2012-07-14 00:21:29 +02:00
|
|
|
sr_coded_error += (int64_t)this_error;
|
2013-10-06 02:10:54 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
coded_error += (int64_t)this_error;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Adjust to the next column of MBs.
|
2013-04-24 01:22:47 +02:00
|
|
|
x->plane[0].src.buf += 16;
|
2013-12-18 20:57:40 +01:00
|
|
|
x->plane[1].src.buf += uv_mb_height;
|
|
|
|
x->plane[2].src.buf += uv_mb_height;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
recon_yoffset += 16;
|
2013-12-18 20:57:40 +01:00
|
|
|
recon_uvoffset += uv_mb_height;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Adjust to the next row of MBs.
|
2013-04-24 01:22:47 +02:00
|
|
|
x->plane[0].src.buf += 16 * x->plane[0].src.stride - 16 * cm->mb_cols;
|
2013-12-18 20:57:40 +01:00
|
|
|
x->plane[1].src.buf += uv_mb_height * x->plane[1].src.stride -
|
|
|
|
uv_mb_height * cm->mb_cols;
|
|
|
|
x->plane[2].src.buf += uv_mb_height * x->plane[1].src.stride -
|
|
|
|
uv_mb_height * cm->mb_cols;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2012-07-14 00:21:29 +02:00
|
|
|
{
|
|
|
|
FIRSTPASS_STATS fps;
|
|
|
|
|
2014-01-13 22:04:05 +01:00
|
|
|
fps.frame = cm->current_video_frame;
|
2014-03-19 19:06:20 +01:00
|
|
|
fps.spatial_layer_id = cpi->svc.spatial_layer_id;
|
2014-02-13 22:03:44 +01:00
|
|
|
fps.intra_error = (double)(intra_error >> 8);
|
|
|
|
fps.coded_error = (double)(coded_error >> 8);
|
|
|
|
fps.sr_coded_error = (double)(sr_coded_error >> 8);
|
2014-01-22 17:57:13 +01:00
|
|
|
fps.ssim_weighted_pred_err = fps.coded_error * simple_weight(cpi->Source);
|
2014-01-13 22:04:05 +01:00
|
|
|
fps.count = 1.0;
|
|
|
|
fps.pcnt_inter = (double)intercount / cm->MBs;
|
|
|
|
fps.pcnt_second_ref = (double)second_ref_count / cm->MBs;
|
|
|
|
fps.pcnt_neutral = (double)neutral_count / cm->MBs;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
if (mvcount > 0) {
|
2014-01-13 22:04:05 +01:00
|
|
|
fps.MVr = (double)sum_mvr / mvcount;
|
|
|
|
fps.mvr_abs = (double)sum_mvr_abs / mvcount;
|
|
|
|
fps.MVc = (double)sum_mvc / mvcount;
|
|
|
|
fps.mvc_abs = (double)sum_mvc_abs / mvcount;
|
2014-01-29 20:26:09 +01:00
|
|
|
fps.MVrv = ((double)sum_mvrs - (fps.MVr * fps.MVr / mvcount)) / mvcount;
|
|
|
|
fps.MVcv = ((double)sum_mvcs - (fps.MVc * fps.MVc / mvcount)) / mvcount;
|
2014-01-13 22:04:05 +01:00
|
|
|
fps.mv_in_out_count = (double)sum_in_vectors / (mvcount * 2);
|
2012-07-14 00:21:29 +02:00
|
|
|
fps.new_mv_count = new_mv_count;
|
2014-01-29 20:26:09 +01:00
|
|
|
fps.pcnt_motion = (double)mvcount / cm->MBs;
|
2014-01-22 17:57:13 +01:00
|
|
|
} else {
|
|
|
|
fps.MVr = 0.0;
|
|
|
|
fps.mvr_abs = 0.0;
|
|
|
|
fps.MVc = 0.0;
|
|
|
|
fps.mvc_abs = 0.0;
|
|
|
|
fps.MVrv = 0.0;
|
|
|
|
fps.MVcv = 0.0;
|
|
|
|
fps.mv_in_out_count = 0.0;
|
|
|
|
fps.new_mv_count = 0.0;
|
|
|
|
fps.pcnt_motion = 0.0;
|
2012-05-14 16:13:26 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
// TODO(paulwilkins): Handle the case when duration is set to 0, or
|
|
|
|
// something less than the full time between subsequent values of
|
|
|
|
// cpi->source_time_stamp.
|
2014-01-13 22:04:05 +01:00
|
|
|
fps.duration = (double)(cpi->source->ts_end - cpi->source->ts_start);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Don't want to do output stats with a stack variable!
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->this_frame_stats = fps;
|
2014-03-01 01:35:19 +01:00
|
|
|
output_stats(&twopass->this_frame_stats, cpi->output_pkt_list);
|
2014-01-16 01:21:38 +01:00
|
|
|
accumulate_stats(&twopass->total_stats, &fps);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Copy the previous Last Frame back into gf and and arf buffers if
|
2014-02-13 18:40:45 +01:00
|
|
|
// the prediction is good enough... but also don't allow it to lag too far.
|
2014-01-16 01:21:38 +01:00
|
|
|
if ((twopass->sr_update_lag > 3) ||
|
2012-07-14 00:21:29 +02:00
|
|
|
((cm->current_video_frame > 0) &&
|
2014-01-16 01:21:38 +01:00
|
|
|
(twopass->this_frame_stats.pcnt_inter > 0.20) &&
|
|
|
|
((twopass->this_frame_stats.intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(twopass->this_frame_stats.coded_error)) > 2.0))) {
|
2014-03-19 19:06:20 +01:00
|
|
|
if (gld_yv12 != NULL) {
|
|
|
|
vp8_yv12_copy_frame(lst_yv12, gld_yv12);
|
|
|
|
}
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->sr_update_lag = 1;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2014-02-14 18:18:42 +01:00
|
|
|
++twopass->sr_update_lag;
|
2013-10-06 02:10:54 +02:00
|
|
|
}
|
2014-03-19 19:06:20 +01:00
|
|
|
|
2014-04-18 19:59:15 +02:00
|
|
|
vp9_extend_frame_borders(new_yv12);
|
|
|
|
|
2014-03-19 19:06:20 +01:00
|
|
|
if (cpi->use_svc && cpi->svc.number_temporal_layers == 1) {
|
|
|
|
vp9_update_reference_frames(cpi);
|
|
|
|
} else {
|
|
|
|
// Swap frame pointers so last frame refers to the frame we just compressed.
|
|
|
|
swap_yv12(lst_yv12, new_yv12);
|
|
|
|
}
|
2013-05-08 00:40:18 +02:00
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
// Special case for the first frame. Copy into the GF buffer as a second
|
|
|
|
// reference.
|
2014-03-19 19:06:20 +01:00
|
|
|
if (cm->current_video_frame == 0 && gld_yv12 != NULL) {
|
2012-11-02 01:53:44 +01:00
|
|
|
vp8_yv12_copy_frame(lst_yv12, gld_yv12);
|
2014-03-19 19:06:20 +01:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Use this to see what the first pass reconstruction looks like.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (0) {
|
|
|
|
char filename[512];
|
|
|
|
FILE *recon_file;
|
2013-10-06 02:10:54 +02:00
|
|
|
snprintf(filename, sizeof(filename), "enc%04d.yuv",
|
|
|
|
(int)cm->current_video_frame);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (cm->current_video_frame == 0)
|
|
|
|
recon_file = fopen(filename, "wb");
|
|
|
|
else
|
|
|
|
recon_file = fopen(filename, "ab");
|
|
|
|
|
2012-12-08 00:20:39 +01:00
|
|
|
(void)fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file);
|
2012-07-14 00:21:29 +02:00
|
|
|
fclose(recon_file);
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-14 18:18:42 +01:00
|
|
|
++cm->current_video_frame;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
static double calc_correction_factor(double err_per_mb,
|
|
|
|
double err_divisor,
|
|
|
|
double pt_low,
|
|
|
|
double pt_high,
|
2013-05-09 03:13:46 +02:00
|
|
|
int q) {
|
|
|
|
const double error_term = err_per_mb / err_divisor;
|
2011-11-23 18:18:31 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Adjustment based on actual quantizer to power term.
|
2013-12-09 18:48:35 +01:00
|
|
|
const double power_term = MIN(vp9_convert_qindex_to_q(q) * 0.0125 + pt_low,
|
2013-05-09 03:13:46 +02:00
|
|
|
pt_high);
|
2011-11-23 18:18:31 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Calculate correction factor.
|
2013-03-16 01:26:24 +01:00
|
|
|
if (power_term < 1.0)
|
|
|
|
assert(error_term >= 0.0);
|
2011-11-23 18:18:31 +01:00
|
|
|
|
2013-05-09 03:13:46 +02:00
|
|
|
return fclamp(pow(error_term, power_term), 0.05, 5.0);
|
2011-11-23 18:18:31 +01:00
|
|
|
}
|
|
|
|
|
2014-04-10 06:06:11 +02:00
|
|
|
static int get_twopass_worst_quality(const VP9_COMP *cpi,
|
|
|
|
const FIRSTPASS_STATS *stats,
|
|
|
|
int section_target_bandwidth) {
|
2014-02-06 00:11:12 +01:00
|
|
|
const RATE_CONTROL *const rc = &cpi->rc;
|
2014-04-18 20:01:36 +02:00
|
|
|
const VP9EncoderConfig *const oxcf = &cpi->oxcf;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-04-10 06:06:11 +02:00
|
|
|
if (section_target_bandwidth <= 0) {
|
|
|
|
return rc->worst_quality; // Highest value allowed
|
|
|
|
} else {
|
|
|
|
const int num_mbs = cpi->common.MBs;
|
|
|
|
const double section_err = stats->coded_error / stats->count;
|
|
|
|
const double err_per_mb = section_err / num_mbs;
|
2014-04-17 23:57:43 +02:00
|
|
|
const double speed_term = 1.0 + 0.04 * oxcf->speed;
|
2014-04-10 06:06:11 +02:00
|
|
|
const int target_norm_bits_per_mb = ((uint64_t)section_target_bandwidth <<
|
|
|
|
BPER_MB_NORMBITS) / num_mbs;
|
|
|
|
int q;
|
|
|
|
|
|
|
|
// Try and pick a max Q that will be high enough to encode the
|
|
|
|
// content at the given rate.
|
|
|
|
for (q = rc->best_quality; q < rc->worst_quality; ++q) {
|
|
|
|
const double factor = calc_correction_factor(err_per_mb, ERR_DIVISOR,
|
|
|
|
0.5, 0.90, q);
|
|
|
|
const int bits_per_mb = vp9_rc_bits_per_mb(INTER_FRAME, q,
|
|
|
|
factor * speed_term);
|
|
|
|
if (bits_per_mb <= target_norm_bits_per_mb)
|
|
|
|
break;
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-04-10 06:06:11 +02:00
|
|
|
// Restriction on active max q for constrained quality mode.
|
2014-04-18 01:09:24 +02:00
|
|
|
if (cpi->oxcf.rc_mode == RC_MODE_CONSTRAINED_QUALITY)
|
2014-04-17 23:57:43 +02:00
|
|
|
q = MAX(q, oxcf->cq_level);
|
2014-04-10 06:06:11 +02:00
|
|
|
return q;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2011-11-23 18:18:31 +01:00
|
|
|
|
2013-07-13 02:12:46 +02:00
|
|
|
extern void vp9_new_framerate(VP9_COMP *cpi, double framerate);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
void vp9_init_second_pass(VP9_COMP *cpi) {
|
2014-04-07 20:31:26 +02:00
|
|
|
SVC *const svc = &cpi->svc;
|
2014-04-18 20:01:36 +02:00
|
|
|
const VP9EncoderConfig *const oxcf = &cpi->oxcf;
|
2014-04-07 20:31:26 +02:00
|
|
|
const int is_spatial_svc = (svc->number_spatial_layers > 1) &&
|
|
|
|
(svc->number_temporal_layers == 1);
|
2014-04-17 00:17:53 +02:00
|
|
|
struct twopass_rc *const twopass = is_spatial_svc ?
|
|
|
|
&svc->layer_context[svc->spatial_layer_id].twopass : &cpi->twopass;
|
2014-03-27 23:46:32 +01:00
|
|
|
double frame_rate;
|
2014-04-17 00:17:53 +02:00
|
|
|
FIRSTPASS_STATS *stats;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
zero_stats(&twopass->total_stats);
|
|
|
|
zero_stats(&twopass->total_left_stats);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
if (!twopass->stats_in_end)
|
|
|
|
return;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-17 00:17:53 +02:00
|
|
|
stats = &twopass->total_stats;
|
|
|
|
|
|
|
|
*stats = *twopass->stats_in_end;
|
|
|
|
twopass->total_left_stats = *stats;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-17 00:17:53 +02:00
|
|
|
frame_rate = 10000000.0 * stats->count / stats->duration;
|
2014-03-28 00:59:44 +01:00
|
|
|
// Each frame can have a different duration, as the frame rate in the source
|
|
|
|
// isn't guaranteed to be constant. The frame rate prior to the first frame
|
|
|
|
// encoded in the second pass is a guess. However, the sum duration is not.
|
|
|
|
// It is calculated based on the actual durations of all frames from the
|
|
|
|
// first pass.
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
if (is_spatial_svc) {
|
|
|
|
vp9_update_spatial_layer_framerate(cpi, frame_rate);
|
2014-04-17 00:17:53 +02:00
|
|
|
twopass->bits_left = (int64_t)(stats->duration *
|
2014-04-07 20:31:26 +02:00
|
|
|
svc->layer_context[svc->spatial_layer_id].target_bandwidth /
|
2014-03-28 00:59:44 +01:00
|
|
|
10000000.0);
|
|
|
|
} else {
|
|
|
|
vp9_new_framerate(cpi, frame_rate);
|
2014-04-17 00:17:53 +02:00
|
|
|
twopass->bits_left = (int64_t)(stats->duration * oxcf->target_bandwidth /
|
|
|
|
10000000.0);
|
2014-03-28 00:59:44 +01:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
// Calculate a minimum intra value to be used in determining the IIratio
|
|
|
|
// scores used in the second pass. We have this minimum to make sure
|
|
|
|
// that clips that are static but "low complexity" in the intra domain
|
|
|
|
// are still boosted appropriately for KF/GF/ARF.
|
|
|
|
if (!is_spatial_svc) {
|
|
|
|
// We don't know the number of MBs for each layer at this point.
|
|
|
|
// So we will do it later.
|
|
|
|
twopass->kf_intra_err_min = KF_MB_INTRA_MIN * cpi->common.MBs;
|
|
|
|
twopass->gf_intra_err_min = GF_MB_INTRA_MIN * cpi->common.MBs;
|
|
|
|
}
|
2014-01-02 16:45:06 +01:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
// This variable monitors how far behind the second ref update is lagging.
|
|
|
|
twopass->sr_update_lag = 1;
|
|
|
|
|
|
|
|
// Scan the first pass file and calculate an average Intra / Inter error
|
|
|
|
// score ratio for the sequence.
|
|
|
|
{
|
2014-04-17 00:17:53 +02:00
|
|
|
const FIRSTPASS_STATS *const start_pos = twopass->stats_in;
|
|
|
|
FIRSTPASS_STATS this_frame;
|
2014-03-28 00:59:44 +01:00
|
|
|
double sum_iiratio = 0.0;
|
|
|
|
|
|
|
|
while (input_stats(twopass, &this_frame) != EOF) {
|
|
|
|
const double iiratio = this_frame.intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(this_frame.coded_error);
|
|
|
|
sum_iiratio += fclamp(iiratio, 1.0, 20.0);
|
2014-03-27 23:46:32 +01:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
twopass->avg_iiratio = sum_iiratio /
|
2014-04-17 00:17:53 +02:00
|
|
|
DOUBLE_DIVIDE_CHECK((double)stats->count);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
reset_fpf_position(twopass, start_pos);
|
|
|
|
}
|
2014-03-27 23:46:32 +01:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
// Scan the first pass file and calculate a modified total error based upon
|
|
|
|
// the bias/power function used to allocate bits.
|
|
|
|
{
|
2014-04-17 00:17:53 +02:00
|
|
|
const FIRSTPASS_STATS *const start_pos = twopass->stats_in;
|
|
|
|
FIRSTPASS_STATS this_frame;
|
|
|
|
const double av_error = stats->ssim_weighted_pred_err /
|
|
|
|
DOUBLE_DIVIDE_CHECK(stats->count);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-03-27 23:46:32 +01:00
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
twopass->modified_error_total = 0.0;
|
|
|
|
twopass->modified_error_min =
|
2014-04-17 00:17:53 +02:00
|
|
|
(av_error * oxcf->two_pass_vbrmin_section) / 100;
|
2014-03-28 00:59:44 +01:00
|
|
|
twopass->modified_error_max =
|
2014-04-17 00:17:53 +02:00
|
|
|
(av_error * oxcf->two_pass_vbrmax_section) / 100;
|
2014-03-28 00:59:44 +01:00
|
|
|
|
|
|
|
while (input_stats(twopass, &this_frame) != EOF) {
|
|
|
|
twopass->modified_error_total +=
|
|
|
|
calculate_modified_err(cpi, &this_frame);
|
2014-03-27 23:46:32 +01:00
|
|
|
}
|
2014-03-28 00:59:44 +01:00
|
|
|
twopass->modified_error_left = twopass->modified_error_total;
|
|
|
|
|
|
|
|
reset_fpf_position(twopass, start_pos);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2014-04-15 03:06:52 +02:00
|
|
|
|
|
|
|
// Reset the vbr bits off target counter
|
|
|
|
cpi->rc.vbr_bits_off_target = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// This function gives an estimate of how badly we believe the prediction
|
|
|
|
// quality is decaying from frame to frame.
|
2014-01-29 20:26:09 +01:00
|
|
|
static double get_prediction_decay_rate(const VP9_COMMON *cm,
|
|
|
|
const FIRSTPASS_STATS *next_frame) {
|
2012-07-14 00:21:29 +02:00
|
|
|
// Look at the observed drop in prediction quality between the last frame
|
|
|
|
// and the GF buffer (which contains an older frame).
|
2014-01-03 21:11:36 +01:00
|
|
|
const double mb_sr_err_diff = (next_frame->sr_coded_error -
|
2014-01-29 20:26:09 +01:00
|
|
|
next_frame->coded_error) / cm->MBs;
|
2014-01-03 21:11:36 +01:00
|
|
|
const double second_ref_decay = mb_sr_err_diff <= 512.0
|
|
|
|
? fclamp(pow(1.0 - (mb_sr_err_diff / 512.0), 0.5), 0.85, 1.0)
|
|
|
|
: 0.85;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-01-03 21:11:36 +01:00
|
|
|
return MIN(second_ref_decay, next_frame->pcnt_inter);
|
2011-01-21 18:52:00 +01:00
|
|
|
}
|
|
|
|
|
2011-03-08 15:46:22 +01:00
|
|
|
// Function to test for a condition where a complex transition is followed
|
2011-03-07 16:11:09 +01:00
|
|
|
// by a static section. For example in slide shows where there is a fade
|
|
|
|
// between slides. This is to help with more optimal kf and gf positioning.
|
2014-04-09 00:21:30 +02:00
|
|
|
static int detect_transition_to_still(struct twopass_rc *twopass,
|
|
|
|
int frame_interval, int still_interval,
|
2014-02-06 00:11:12 +01:00
|
|
|
double loop_decay_rate,
|
|
|
|
double last_decay_rate) {
|
2013-04-16 00:24:39 +02:00
|
|
|
int trans_to_still = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Break clause to detect very still sections after motion
|
|
|
|
// For example a static image after a fade or other transition
|
|
|
|
// instead of a clean scene cut.
|
2013-05-09 03:13:46 +02:00
|
|
|
if (frame_interval > MIN_GF_INTERVAL &&
|
|
|
|
loop_decay_rate >= 0.999 &&
|
|
|
|
last_decay_rate < 0.9) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int j;
|
2014-04-09 00:21:30 +02:00
|
|
|
const FIRSTPASS_STATS *position = twopass->stats_in;
|
2012-07-14 00:21:29 +02:00
|
|
|
FIRSTPASS_STATS tmp_next_frame;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Look ahead a few frames to see if static condition persists...
|
2014-02-14 18:18:42 +01:00
|
|
|
for (j = 0; j < still_interval; ++j) {
|
2014-04-09 00:21:30 +02:00
|
|
|
if (EOF == input_stats(twopass, &tmp_next_frame))
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
2011-03-07 16:11:09 +01:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
if (tmp_next_frame.pcnt_inter - tmp_next_frame.pcnt_motion < 0.999)
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
2011-03-07 16:11:09 +01:00
|
|
|
}
|
2014-01-29 20:26:09 +01:00
|
|
|
|
2014-04-09 00:21:30 +02:00
|
|
|
reset_fpf_position(twopass, position);
|
2011-03-07 16:11:09 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Only if it does do we signal a transition to still.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (j == still_interval)
|
2013-04-16 00:24:39 +02:00
|
|
|
trans_to_still = 1;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return trans_to_still;
|
2011-03-07 16:11:09 +01:00
|
|
|
}
|
2011-01-21 18:52:00 +01:00
|
|
|
|
2011-06-28 18:29:47 +02:00
|
|
|
// This function detects a flash through the high relative pcnt_second_ref
|
|
|
|
// score in the frame following a flash frame. The offset passed in should
|
2014-02-13 18:40:45 +01:00
|
|
|
// reflect this.
|
2014-01-29 20:26:09 +01:00
|
|
|
static int detect_flash(const struct twopass_rc *twopass, int offset) {
|
2012-07-14 00:21:29 +02:00
|
|
|
FIRSTPASS_STATS next_frame;
|
|
|
|
|
2013-04-16 00:24:39 +02:00
|
|
|
int flash_detected = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Read the frame data.
|
|
|
|
// The return is FALSE (no flash detected) if not a valid frame
|
2014-01-29 20:26:09 +01:00
|
|
|
if (read_frame_stats(twopass, &next_frame, offset) != EOF) {
|
2012-07-14 00:21:29 +02:00
|
|
|
// What we are looking for here is a situation where there is a
|
|
|
|
// brief break in prediction (such as a flash) but subsequent frames
|
|
|
|
// are reasonably well predicted by an earlier (pre flash) frame.
|
|
|
|
// The recovery after a flash is indicated by a high pcnt_second_ref
|
2014-02-13 18:40:45 +01:00
|
|
|
// compared to pcnt_inter.
|
2013-05-09 03:13:46 +02:00
|
|
|
if (next_frame.pcnt_second_ref > next_frame.pcnt_inter &&
|
|
|
|
next_frame.pcnt_second_ref >= 0.5)
|
2013-04-16 00:24:39 +02:00
|
|
|
flash_detected = 1;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2011-06-28 18:29:47 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return flash_detected;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Update the motion related elements to the GF arf boost calculation.
|
2011-06-28 18:29:47 +02:00
|
|
|
static void accumulate_frame_motion_stats(
|
2012-07-14 00:21:29 +02:00
|
|
|
FIRSTPASS_STATS *this_frame,
|
|
|
|
double *this_frame_mv_in_out,
|
|
|
|
double *mv_in_out_accumulator,
|
|
|
|
double *abs_mv_in_out_accumulator,
|
|
|
|
double *mv_ratio_accumulator) {
|
|
|
|
double motion_pct;
|
|
|
|
|
|
|
|
// Accumulate motion stats.
|
|
|
|
motion_pct = this_frame->pcnt_motion;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Accumulate Motion In/Out of frame stats.
|
2012-07-14 00:21:29 +02:00
|
|
|
*this_frame_mv_in_out = this_frame->mv_in_out_count * motion_pct;
|
|
|
|
*mv_in_out_accumulator += this_frame->mv_in_out_count * motion_pct;
|
2014-01-29 20:26:09 +01:00
|
|
|
*abs_mv_in_out_accumulator += fabs(this_frame->mv_in_out_count * motion_pct);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Accumulate a measure of how uniform (or conversely how random)
|
2014-02-13 18:40:45 +01:00
|
|
|
// the motion field is (a ratio of absmv / mv).
|
2012-07-14 00:21:29 +02:00
|
|
|
if (motion_pct > 0.05) {
|
2014-01-29 20:26:09 +01:00
|
|
|
const double this_frame_mvr_ratio = fabs(this_frame->mvr_abs) /
|
2012-07-14 00:21:29 +02:00
|
|
|
DOUBLE_DIVIDE_CHECK(fabs(this_frame->MVr));
|
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
const double this_frame_mvc_ratio = fabs(this_frame->mvc_abs) /
|
2012-07-14 00:21:29 +02:00
|
|
|
DOUBLE_DIVIDE_CHECK(fabs(this_frame->MVc));
|
|
|
|
|
2014-01-23 21:36:19 +01:00
|
|
|
*mv_ratio_accumulator += (this_frame_mvr_ratio < this_frame->mvr_abs)
|
2012-07-14 00:21:29 +02:00
|
|
|
? (this_frame_mvr_ratio * motion_pct)
|
|
|
|
: this_frame->mvr_abs * motion_pct;
|
|
|
|
|
2014-01-23 21:36:19 +01:00
|
|
|
*mv_ratio_accumulator += (this_frame_mvc_ratio < this_frame->mvc_abs)
|
2012-07-14 00:21:29 +02:00
|
|
|
? (this_frame_mvc_ratio * motion_pct)
|
|
|
|
: this_frame->mvc_abs * motion_pct;
|
|
|
|
}
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate a baseline boost number for the current frame.
|
2014-01-23 21:36:19 +01:00
|
|
|
static double calc_frame_boost(VP9_COMP *cpi, FIRSTPASS_STATS *this_frame,
|
|
|
|
double this_frame_mv_in_out) {
|
2012-07-14 00:21:29 +02:00
|
|
|
double frame_boost;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Underlying boost factor is based on inter intra error ratio.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (this_frame->intra_error > cpi->twopass.gf_intra_err_min)
|
|
|
|
frame_boost = (IIFACTOR * this_frame->intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(this_frame->coded_error));
|
|
|
|
else
|
|
|
|
frame_boost = (IIFACTOR * cpi->twopass.gf_intra_err_min /
|
|
|
|
DOUBLE_DIVIDE_CHECK(this_frame->coded_error));
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Increase boost for frames where new data coming into frame (e.g. zoom out).
|
|
|
|
// Slightly reduce boost if there is a net balance of motion out of the frame
|
|
|
|
// (zoom in). The range for this_frame_mv_in_out is -1.0 to +1.0.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (this_frame_mv_in_out > 0.0)
|
|
|
|
frame_boost += frame_boost * (this_frame_mv_in_out * 2.0);
|
2014-02-13 18:40:45 +01:00
|
|
|
// In the extreme case the boost is halved.
|
2012-07-14 00:21:29 +02:00
|
|
|
else
|
|
|
|
frame_boost += frame_boost * (this_frame_mv_in_out / 2.0);
|
|
|
|
|
2014-01-23 21:36:19 +01:00
|
|
|
return MIN(frame_boost, GF_RMAX);
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2013-05-09 03:13:46 +02:00
|
|
|
static int calc_arf_boost(VP9_COMP *cpi, int offset,
|
|
|
|
int f_frames, int b_frames,
|
|
|
|
int *f_boost, int *b_boost) {
|
2012-07-14 00:21:29 +02:00
|
|
|
FIRSTPASS_STATS this_frame;
|
2014-01-29 20:26:09 +01:00
|
|
|
struct twopass_rc *const twopass = &cpi->twopass;
|
2012-07-14 00:21:29 +02:00
|
|
|
int i;
|
|
|
|
double boost_score = 0.0;
|
|
|
|
double mv_ratio_accumulator = 0.0;
|
|
|
|
double decay_accumulator = 1.0;
|
|
|
|
double this_frame_mv_in_out = 0.0;
|
|
|
|
double mv_in_out_accumulator = 0.0;
|
|
|
|
double abs_mv_in_out_accumulator = 0.0;
|
|
|
|
int arf_boost;
|
2013-04-16 00:24:39 +02:00
|
|
|
int flash_detected = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Search forward from the proposed arf/next gf position.
|
2014-02-14 18:18:42 +01:00
|
|
|
for (i = 0; i < f_frames; ++i) {
|
2014-01-29 20:26:09 +01:00
|
|
|
if (read_frame_stats(twopass, &this_frame, (i + offset)) == EOF)
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Update the motion related elements to the boost calculation.
|
2013-08-01 01:59:15 +02:00
|
|
|
accumulate_frame_motion_stats(&this_frame,
|
2012-07-14 00:21:29 +02:00
|
|
|
&this_frame_mv_in_out, &mv_in_out_accumulator,
|
2013-10-06 02:10:54 +02:00
|
|
|
&abs_mv_in_out_accumulator,
|
|
|
|
&mv_ratio_accumulator);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
// We want to discount the flash frame itself and the recovery
|
2012-07-14 00:21:29 +02:00
|
|
|
// frame that follows as both will have poor scores.
|
2014-01-29 20:26:09 +01:00
|
|
|
flash_detected = detect_flash(twopass, i + offset) ||
|
|
|
|
detect_flash(twopass, i + offset + 1);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Accumulate the effect of prediction quality decay.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!flash_detected) {
|
2014-01-29 20:26:09 +01:00
|
|
|
decay_accumulator *= get_prediction_decay_rate(&cpi->common, &this_frame);
|
2012-12-14 18:49:46 +01:00
|
|
|
decay_accumulator = decay_accumulator < MIN_DECAY_FACTOR
|
|
|
|
? MIN_DECAY_FACTOR : decay_accumulator;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
boost_score += (decay_accumulator *
|
|
|
|
calc_frame_boost(cpi, &this_frame, this_frame_mv_in_out));
|
|
|
|
}
|
|
|
|
|
2012-11-05 23:22:59 +01:00
|
|
|
*f_boost = (int)boost_score;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Reset for backward looking loop.
|
2012-07-14 00:21:29 +02:00
|
|
|
boost_score = 0.0;
|
|
|
|
mv_ratio_accumulator = 0.0;
|
|
|
|
decay_accumulator = 1.0;
|
|
|
|
this_frame_mv_in_out = 0.0;
|
|
|
|
mv_in_out_accumulator = 0.0;
|
|
|
|
abs_mv_in_out_accumulator = 0.0;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Search backward towards last gf position.
|
2014-02-14 18:18:42 +01:00
|
|
|
for (i = -1; i >= -b_frames; --i) {
|
2014-01-29 20:26:09 +01:00
|
|
|
if (read_frame_stats(twopass, &this_frame, (i + offset)) == EOF)
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Update the motion related elements to the boost calculation.
|
2013-08-01 01:59:15 +02:00
|
|
|
accumulate_frame_motion_stats(&this_frame,
|
2012-07-14 00:21:29 +02:00
|
|
|
&this_frame_mv_in_out, &mv_in_out_accumulator,
|
2013-10-06 02:10:54 +02:00
|
|
|
&abs_mv_in_out_accumulator,
|
|
|
|
&mv_ratio_accumulator);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// We want to discount the the flash frame itself and the recovery
|
|
|
|
// frame that follows as both will have poor scores.
|
2014-01-29 20:26:09 +01:00
|
|
|
flash_detected = detect_flash(twopass, i + offset) ||
|
|
|
|
detect_flash(twopass, i + offset + 1);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Cumulative effect of prediction quality decay.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!flash_detected) {
|
2014-01-29 20:26:09 +01:00
|
|
|
decay_accumulator *= get_prediction_decay_rate(&cpi->common, &this_frame);
|
2012-12-14 18:49:46 +01:00
|
|
|
decay_accumulator = decay_accumulator < MIN_DECAY_FACTOR
|
2013-05-09 03:13:46 +02:00
|
|
|
? MIN_DECAY_FACTOR : decay_accumulator;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2011-06-28 18:29:47 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
boost_score += (decay_accumulator *
|
|
|
|
calc_frame_boost(cpi, &this_frame, this_frame_mv_in_out));
|
|
|
|
}
|
2012-11-05 23:22:59 +01:00
|
|
|
*b_boost = (int)boost_score;
|
2011-06-28 18:29:47 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
arf_boost = (*f_boost + *b_boost);
|
|
|
|
if (arf_boost < ((b_frames + f_frames) * 20))
|
|
|
|
arf_boost = ((b_frames + f_frames) * 20);
|
2012-05-15 16:28:02 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return arf_boost;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
// Work out the frame coding order for a GF or an ARF group.
|
|
|
|
// The current implementation codes frames in their natural order for a
|
|
|
|
// GF group, and inserts additional ARFs into an ARF group using a
|
|
|
|
// binary split approach.
|
|
|
|
// NOTE: this function is currently implemented recursively.
|
|
|
|
static void schedule_frames(VP9_COMP *cpi, const int start, const int end,
|
|
|
|
const int arf_idx, const int gf_or_arf_group,
|
|
|
|
const int level) {
|
|
|
|
int i, abs_end, half_range;
|
|
|
|
int *cfo = cpi->frame_coding_order;
|
|
|
|
int idx = cpi->new_frame_coding_order_period;
|
|
|
|
|
|
|
|
// If (end < 0) an ARF should be coded at position (-end).
|
|
|
|
assert(start >= 0);
|
|
|
|
|
|
|
|
// printf("start:%d end:%d\n", start, end);
|
|
|
|
|
|
|
|
// GF Group: code frames in logical order.
|
|
|
|
if (gf_or_arf_group == 0) {
|
|
|
|
assert(end >= start);
|
|
|
|
for (i = start; i <= end; ++i) {
|
|
|
|
cfo[idx] = i;
|
|
|
|
cpi->arf_buffer_idx[idx] = arf_idx;
|
|
|
|
cpi->arf_weight[idx] = -1;
|
|
|
|
++idx;
|
|
|
|
}
|
|
|
|
cpi->new_frame_coding_order_period = idx;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// ARF Group: Work out the ARF schedule and mark ARF frames as negative.
|
2013-04-03 00:08:50 +02:00
|
|
|
if (end < 0) {
|
|
|
|
// printf("start:%d end:%d\n", -end, -end);
|
|
|
|
// ARF frame is at the end of the range.
|
|
|
|
cfo[idx] = end;
|
|
|
|
// What ARF buffer does this ARF use as predictor.
|
|
|
|
cpi->arf_buffer_idx[idx] = (arf_idx > 2) ? (arf_idx - 1) : 2;
|
|
|
|
cpi->arf_weight[idx] = level;
|
|
|
|
++idx;
|
|
|
|
abs_end = -end;
|
|
|
|
} else {
|
|
|
|
abs_end = end;
|
|
|
|
}
|
|
|
|
|
|
|
|
half_range = (abs_end - start) >> 1;
|
|
|
|
|
|
|
|
// ARFs may not be adjacent, they must be separated by at least
|
|
|
|
// MIN_GF_INTERVAL non-ARF frames.
|
|
|
|
if ((start + MIN_GF_INTERVAL) >= (abs_end - MIN_GF_INTERVAL)) {
|
|
|
|
// printf("start:%d end:%d\n", start, abs_end);
|
|
|
|
// Update the coding order and active ARF.
|
|
|
|
for (i = start; i <= abs_end; ++i) {
|
|
|
|
cfo[idx] = i;
|
|
|
|
cpi->arf_buffer_idx[idx] = arf_idx;
|
|
|
|
cpi->arf_weight[idx] = -1;
|
|
|
|
++idx;
|
|
|
|
}
|
|
|
|
cpi->new_frame_coding_order_period = idx;
|
|
|
|
} else {
|
|
|
|
// Place a new ARF at the mid-point of the range.
|
|
|
|
cpi->new_frame_coding_order_period = idx;
|
|
|
|
schedule_frames(cpi, start, -(start + half_range), arf_idx + 1,
|
|
|
|
gf_or_arf_group, level + 1);
|
|
|
|
schedule_frames(cpi, start + half_range + 1, abs_end, arf_idx,
|
|
|
|
gf_or_arf_group, level + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define FIXED_ARF_GROUP_SIZE 16
|
|
|
|
|
|
|
|
void define_fixed_arf_period(VP9_COMP *cpi) {
|
|
|
|
int i;
|
|
|
|
int max_level = INT_MIN;
|
|
|
|
|
|
|
|
assert(cpi->multi_arf_enabled);
|
|
|
|
assert(cpi->oxcf.lag_in_frames >= FIXED_ARF_GROUP_SIZE);
|
|
|
|
|
|
|
|
// Save the weight of the last frame in the sequence before next
|
|
|
|
// sequence pattern overwrites it.
|
|
|
|
cpi->this_frame_weight = cpi->arf_weight[cpi->sequence_number];
|
|
|
|
assert(cpi->this_frame_weight >= 0);
|
|
|
|
|
2013-12-13 18:32:05 +01:00
|
|
|
cpi->twopass.gf_zeromotion_pct = 0;
|
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
// Initialize frame coding order variables.
|
|
|
|
cpi->new_frame_coding_order_period = 0;
|
|
|
|
cpi->next_frame_in_order = 0;
|
|
|
|
cpi->arf_buffered = 0;
|
|
|
|
vp9_zero(cpi->frame_coding_order);
|
|
|
|
vp9_zero(cpi->arf_buffer_idx);
|
|
|
|
vpx_memset(cpi->arf_weight, -1, sizeof(cpi->arf_weight));
|
|
|
|
|
2013-12-13 18:32:05 +01:00
|
|
|
if (cpi->rc.frames_to_key <= (FIXED_ARF_GROUP_SIZE + 8)) {
|
2013-04-03 00:08:50 +02:00
|
|
|
// Setup a GF group close to the keyframe.
|
2013-12-13 18:32:05 +01:00
|
|
|
cpi->rc.source_alt_ref_pending = 0;
|
|
|
|
cpi->rc.baseline_gf_interval = cpi->rc.frames_to_key;
|
2013-11-06 22:13:59 +01:00
|
|
|
schedule_frames(cpi, 0, (cpi->rc.baseline_gf_interval - 1), 2, 0, 0);
|
2013-04-03 00:08:50 +02:00
|
|
|
} else {
|
|
|
|
// Setup a fixed period ARF group.
|
2013-12-13 18:32:05 +01:00
|
|
|
cpi->rc.source_alt_ref_pending = 1;
|
2013-11-06 22:13:59 +01:00
|
|
|
cpi->rc.baseline_gf_interval = FIXED_ARF_GROUP_SIZE;
|
|
|
|
schedule_frames(cpi, 0, -(cpi->rc.baseline_gf_interval - 1), 2, 1, 0);
|
2013-04-03 00:08:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Replace level indicator of -1 with correct level.
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
if (cpi->arf_weight[i] > max_level) {
|
|
|
|
max_level = cpi->arf_weight[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++max_level;
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
if (cpi->arf_weight[i] == -1) {
|
|
|
|
cpi->arf_weight[i] = max_level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cpi->max_arf_level = max_level;
|
|
|
|
#if 0
|
|
|
|
printf("\nSchedule: ");
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
printf("%4d ", cpi->frame_coding_order[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("ARFref: ");
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
printf("%4d ", cpi->arf_buffer_idx[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("Weight: ");
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
printf("%4d ", cpi->arf_weight[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Analyse and define a gf/arf group.
|
2012-10-31 01:53:32 +01:00
|
|
|
static void define_gf_group(VP9_COMP *cpi, FIRSTPASS_STATS *this_frame) {
|
2014-04-09 00:21:30 +02:00
|
|
|
RATE_CONTROL *const rc = &cpi->rc;
|
2014-04-18 20:01:36 +02:00
|
|
|
const VP9EncoderConfig *const oxcf = &cpi->oxcf;
|
2014-04-09 00:21:30 +02:00
|
|
|
struct twopass_rc *const twopass = &cpi->twopass;
|
2013-08-15 20:37:56 +02:00
|
|
|
FIRSTPASS_STATS next_frame = { 0 };
|
2014-03-07 03:58:17 +01:00
|
|
|
const FIRSTPASS_STATS *start_pos;
|
2012-07-14 00:21:29 +02:00
|
|
|
int i;
|
|
|
|
double boost_score = 0.0;
|
|
|
|
double old_boost_score = 0.0;
|
|
|
|
double gf_group_err = 0.0;
|
|
|
|
double gf_first_frame_err = 0.0;
|
|
|
|
double mod_frame_err = 0.0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
double mv_ratio_accumulator = 0.0;
|
|
|
|
double decay_accumulator = 1.0;
|
|
|
|
double zero_motion_accumulator = 1.0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
double loop_decay_rate = 1.00;
|
2012-07-14 00:21:29 +02:00
|
|
|
double last_loop_decay_rate = 1.00;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
double this_frame_mv_in_out = 0.0;
|
|
|
|
double mv_in_out_accumulator = 0.0;
|
|
|
|
double abs_mv_in_out_accumulator = 0.0;
|
2013-03-26 15:40:24 +01:00
|
|
|
double mv_ratio_accumulator_thresh;
|
2014-04-09 00:21:30 +02:00
|
|
|
// Max bits for a single frame.
|
|
|
|
const int max_bits = frame_max_bits(rc, oxcf);
|
|
|
|
unsigned int allow_alt_ref = oxcf->play_alternate && oxcf->lag_in_frames;
|
2011-01-20 19:01:20 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
int f_boost = 0;
|
|
|
|
int b_boost = 0;
|
2012-12-14 21:35:33 +01:00
|
|
|
int flash_detected;
|
2013-03-06 12:33:43 +01:00
|
|
|
int active_max_gf_interval;
|
2011-06-28 18:29:47 +02:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
twopass->gf_group_bits = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-14 00:49:21 +01:00
|
|
|
vp9_clear_system_state();
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
start_pos = twopass->stats_in;
|
2010-06-11 20:33:49 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Load stats for the current frame.
|
|
|
|
mod_frame_err = calculate_modified_err(cpi, this_frame);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Note the error of the frame at the start of the group. This will be
|
|
|
|
// the GF frame error if we code a normal gf.
|
2012-07-14 00:21:29 +02:00
|
|
|
gf_first_frame_err = mod_frame_err;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-06 18:05:47 +01:00
|
|
|
// If this is a key frame or the overlay from a previous arf then
|
2014-02-13 18:40:45 +01:00
|
|
|
// the error score / cost of this frame has already been accounted for.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (cpi->common.frame_type == KEY_FRAME || rc->source_alt_ref_active)
|
2012-07-14 00:21:29 +02:00
|
|
|
gf_group_err -= gf_first_frame_err;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-03-26 15:40:24 +01:00
|
|
|
// Motion breakout threshold for loop below depends on image size.
|
|
|
|
mv_ratio_accumulator_thresh = (cpi->common.width + cpi->common.height) / 10.0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-03-06 12:33:43 +01:00
|
|
|
// Work out a maximum interval for the GF.
|
|
|
|
// If the image appears completely static we can extend beyond this.
|
|
|
|
// The value chosen depends on the active Q range. At low Q we have
|
|
|
|
// bits to spare and are better with a smaller interval and smaller boost.
|
|
|
|
// At high Q when there are few bits to spare we are better with a longer
|
|
|
|
// interval to spread the cost of the GF.
|
2013-12-13 18:32:05 +01:00
|
|
|
//
|
2013-03-06 12:33:43 +01:00
|
|
|
active_max_gf_interval =
|
2014-01-15 21:46:18 +01:00
|
|
|
12 + ((int)vp9_convert_qindex_to_q(rc->last_q[INTER_FRAME]) >> 5);
|
2013-03-06 12:33:43 +01:00
|
|
|
|
2014-02-13 23:09:55 +01:00
|
|
|
if (active_max_gf_interval > rc->max_gf_interval)
|
|
|
|
active_max_gf_interval = rc->max_gf_interval;
|
2013-03-06 12:33:43 +01:00
|
|
|
|
2013-03-26 15:40:24 +01:00
|
|
|
i = 0;
|
2014-03-11 01:29:15 +01:00
|
|
|
while (i < rc->static_scene_max_gf_interval && i < rc->frames_to_key) {
|
2014-02-14 18:18:42 +01:00
|
|
|
++i;
|
2012-05-15 19:01:44 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Accumulate error score of frames in this gf group.
|
2012-07-14 00:21:29 +02:00
|
|
|
mod_frame_err = calculate_modified_err(cpi, this_frame);
|
|
|
|
gf_group_err += mod_frame_err;
|
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
if (EOF == input_stats(twopass, &next_frame))
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
// Test for the case where there is a brief flash but the prediction
|
|
|
|
// quality back to an earlier frame is then restored.
|
2014-01-29 20:26:09 +01:00
|
|
|
flash_detected = detect_flash(twopass, 0);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Update the motion related elements to the boost calculation.
|
2013-08-01 01:59:15 +02:00
|
|
|
accumulate_frame_motion_stats(&next_frame,
|
2012-07-14 00:21:29 +02:00
|
|
|
&this_frame_mv_in_out, &mv_in_out_accumulator,
|
2013-10-06 02:10:54 +02:00
|
|
|
&abs_mv_in_out_accumulator,
|
|
|
|
&mv_ratio_accumulator);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Accumulate the effect of prediction quality decay.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (!flash_detected) {
|
|
|
|
last_loop_decay_rate = loop_decay_rate;
|
2014-01-29 20:26:09 +01:00
|
|
|
loop_decay_rate = get_prediction_decay_rate(&cpi->common, &next_frame);
|
2012-07-14 00:21:29 +02:00
|
|
|
decay_accumulator = decay_accumulator * loop_decay_rate;
|
|
|
|
|
|
|
|
// Monitor for static sections.
|
|
|
|
if ((next_frame.pcnt_inter - next_frame.pcnt_motion) <
|
|
|
|
zero_motion_accumulator) {
|
2014-01-29 20:26:09 +01:00
|
|
|
zero_motion_accumulator = next_frame.pcnt_inter -
|
|
|
|
next_frame.pcnt_motion;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Break clause to detect very still sections after motion. For example,
|
|
|
|
// a static image after a fade or other transition.
|
2014-04-09 00:21:30 +02:00
|
|
|
if (detect_transition_to_still(twopass, i, 5, loop_decay_rate,
|
2012-07-14 00:21:29 +02:00
|
|
|
last_loop_decay_rate)) {
|
2013-04-16 00:24:39 +02:00
|
|
|
allow_alt_ref = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-01-20 19:01:20 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Calculate a boost number for this frame.
|
2014-01-15 21:46:18 +01:00
|
|
|
boost_score += (decay_accumulator *
|
2012-07-14 00:21:29 +02:00
|
|
|
calc_frame_boost(cpi, &next_frame, this_frame_mv_in_out));
|
|
|
|
|
|
|
|
// Break out conditions.
|
|
|
|
if (
|
2014-02-13 18:40:45 +01:00
|
|
|
// Break at cpi->max_gf_interval unless almost totally static.
|
2013-03-06 12:33:43 +01:00
|
|
|
(i >= active_max_gf_interval && (zero_motion_accumulator < 0.995)) ||
|
2012-07-14 00:21:29 +02:00
|
|
|
(
|
2014-02-13 18:40:45 +01:00
|
|
|
// Don't break out with a very short interval.
|
2012-07-14 00:21:29 +02:00
|
|
|
(i > MIN_GF_INTERVAL) &&
|
|
|
|
((boost_score > 125.0) || (next_frame.pcnt_inter < 0.75)) &&
|
|
|
|
(!flash_detected) &&
|
2013-03-26 15:40:24 +01:00
|
|
|
((mv_ratio_accumulator > mv_ratio_accumulator_thresh) ||
|
2012-07-14 00:21:29 +02:00
|
|
|
(abs_mv_in_out_accumulator > 3.0) ||
|
|
|
|
(mv_in_out_accumulator < -2.0) ||
|
2013-10-06 02:10:54 +02:00
|
|
|
((boost_score - old_boost_score) < IIFACTOR)))) {
|
2012-07-14 00:21:29 +02:00
|
|
|
boost_score = old_boost_score;
|
|
|
|
break;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-06-01 01:00:32 +02:00
|
|
|
*this_frame = next_frame;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
old_boost_score = boost_score;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
twopass->gf_zeromotion_pct = (int)(zero_motion_accumulator * 1000.0);
|
2013-09-06 02:10:58 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Don't allow a gf too near the next kf.
|
2014-01-15 21:46:18 +01:00
|
|
|
if ((rc->frames_to_key - i) < MIN_GF_INTERVAL) {
|
|
|
|
while (i < (rc->frames_to_key + !rc->next_key_frame_forced)) {
|
2014-02-14 18:18:42 +01:00
|
|
|
++i;
|
2011-06-02 18:14:51 +02:00
|
|
|
|
2014-01-29 20:26:09 +01:00
|
|
|
if (EOF == input_stats(twopass, this_frame))
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
2011-06-02 18:14:51 +02:00
|
|
|
|
2014-01-15 21:46:18 +01:00
|
|
|
if (i < rc->frames_to_key) {
|
2012-07-14 00:21:29 +02:00
|
|
|
mod_frame_err = calculate_modified_err(cpi, this_frame);
|
|
|
|
gf_group_err += mod_frame_err;
|
|
|
|
}
|
2011-06-02 18:14:51 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
if (cpi->multi_arf_enabled) {
|
|
|
|
// Initialize frame coding order variables.
|
|
|
|
cpi->new_frame_coding_order_period = 0;
|
|
|
|
cpi->next_frame_in_order = 0;
|
|
|
|
cpi->arf_buffered = 0;
|
|
|
|
vp9_zero(cpi->frame_coding_order);
|
|
|
|
vp9_zero(cpi->arf_buffer_idx);
|
|
|
|
vpx_memset(cpi->arf_weight, -1, sizeof(cpi->arf_weight));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-06 18:05:47 +01:00
|
|
|
// Set the interval until the next gf.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (cpi->common.frame_type == KEY_FRAME || rc->source_alt_ref_active)
|
|
|
|
rc->baseline_gf_interval = i - 1;
|
2014-01-06 18:05:47 +01:00
|
|
|
else
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->baseline_gf_interval = i;
|
2014-01-06 18:05:47 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Should we use the alternate reference frame.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (allow_alt_ref &&
|
|
|
|
(i < cpi->oxcf.lag_in_frames) &&
|
|
|
|
(i >= MIN_GF_INTERVAL) &&
|
2014-02-13 18:40:45 +01:00
|
|
|
// For real scene cuts (not forced kfs) don't allow arf very near kf.
|
2014-01-15 21:46:18 +01:00
|
|
|
(rc->next_key_frame_forced ||
|
2014-02-13 15:50:55 +01:00
|
|
|
(i <= (rc->frames_to_key - MIN_GF_INTERVAL)))) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Calculate the boost for alt ref.
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->gfu_boost = calc_arf_boost(cpi, 0, (i - 1), (i - 1), &f_boost,
|
|
|
|
&b_boost);
|
|
|
|
rc->source_alt_ref_pending = 1;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
// Set the ARF schedule.
|
|
|
|
if (cpi->multi_arf_enabled) {
|
2014-01-15 21:46:18 +01:00
|
|
|
schedule_frames(cpi, 0, -(rc->baseline_gf_interval - 1), 2, 1, 0);
|
2013-04-03 00:08:50 +02:00
|
|
|
}
|
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->gfu_boost = (int)boost_score;
|
|
|
|
rc->source_alt_ref_pending = 0;
|
2013-04-03 00:08:50 +02:00
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
// Set the GF schedule.
|
|
|
|
if (cpi->multi_arf_enabled) {
|
2014-01-15 21:46:18 +01:00
|
|
|
schedule_frames(cpi, 0, rc->baseline_gf_interval - 1, 2, 0, 0);
|
2013-11-06 22:13:59 +01:00
|
|
|
assert(cpi->new_frame_coding_order_period ==
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->baseline_gf_interval);
|
2013-04-03 00:08:50 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
if (cpi->multi_arf_enabled && (cpi->common.frame_type != KEY_FRAME)) {
|
|
|
|
int max_level = INT_MIN;
|
|
|
|
// Replace level indicator of -1 with correct level.
|
|
|
|
for (i = 0; i < cpi->frame_coding_order_period; ++i) {
|
|
|
|
if (cpi->arf_weight[i] > max_level) {
|
|
|
|
max_level = cpi->arf_weight[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++max_level;
|
|
|
|
for (i = 0; i < cpi->frame_coding_order_period; ++i) {
|
|
|
|
if (cpi->arf_weight[i] == -1) {
|
|
|
|
cpi->arf_weight[i] = max_level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cpi->max_arf_level = max_level;
|
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
if (cpi->multi_arf_enabled) {
|
|
|
|
printf("\nSchedule: ");
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
printf("%4d ", cpi->frame_coding_order[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("ARFref: ");
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
printf("%4d ", cpi->arf_buffer_idx[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
printf("Weight: ");
|
|
|
|
for (i = 0; i < cpi->new_frame_coding_order_period; ++i) {
|
|
|
|
printf("%4d ", cpi->arf_weight[i]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2013-04-03 00:08:50 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Calculate the bits to be allocated to the group as a whole.
|
2014-02-06 00:11:12 +01:00
|
|
|
if (twopass->kf_group_bits > 0 && twopass->kf_group_error_left > 0) {
|
2014-03-28 00:59:44 +01:00
|
|
|
twopass->gf_group_bits = (int64_t)(twopass->kf_group_bits *
|
|
|
|
(gf_group_err / twopass->kf_group_error_left));
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->gf_group_bits = 0;
|
2013-10-06 02:10:54 +02:00
|
|
|
}
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->gf_group_bits = (twopass->gf_group_bits < 0) ?
|
|
|
|
0 : (twopass->gf_group_bits > twopass->kf_group_bits) ?
|
|
|
|
twopass->kf_group_bits : twopass->gf_group_bits;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Clip cpi->twopass.gf_group_bits based on user supplied data rate
|
2014-02-13 18:40:45 +01:00
|
|
|
// variability limit, cpi->oxcf.two_pass_vbrmax_section.
|
2014-02-06 00:11:12 +01:00
|
|
|
if (twopass->gf_group_bits > (int64_t)max_bits * rc->baseline_gf_interval)
|
|
|
|
twopass->gf_group_bits = (int64_t)max_bits * rc->baseline_gf_interval;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Reset the file position.
|
2014-02-06 00:11:12 +01:00
|
|
|
reset_fpf_position(twopass, start_pos);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Assign bits to the arf or gf.
|
2014-01-15 21:46:18 +01:00
|
|
|
for (i = 0; i <= (rc->source_alt_ref_pending &&
|
|
|
|
cpi->common.frame_type != KEY_FRAME); ++i) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int allocation_chunks;
|
2014-01-15 21:46:18 +01:00
|
|
|
int q = rc->last_q[INTER_FRAME];
|
2012-07-14 00:21:29 +02:00
|
|
|
int gf_bits;
|
|
|
|
|
2014-01-15 21:46:18 +01:00
|
|
|
int boost = (rc->gfu_boost * gfboost_qadjust(q)) / 100;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Set max and minimum boost and hence minimum allocation.
|
2014-01-15 21:46:18 +01:00
|
|
|
boost = clamp(boost, 125, (rc->baseline_gf_interval + 1) * 200);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-01-15 21:46:18 +01:00
|
|
|
if (rc->source_alt_ref_pending && i == 0)
|
|
|
|
allocation_chunks = ((rc->baseline_gf_interval + 1) * 100) + boost;
|
2010-05-18 17:58:33 +02:00
|
|
|
else
|
2014-01-15 21:46:18 +01:00
|
|
|
allocation_chunks = (rc->baseline_gf_interval * 100) + (boost - 100);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Prevent overflow.
|
2013-04-17 00:12:20 +02:00
|
|
|
if (boost > 1023) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int divisor = boost >> 10;
|
|
|
|
boost /= divisor;
|
|
|
|
allocation_chunks /= divisor;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Calculate the number of bits to be spent on the gf or arf based on
|
2014-02-13 18:40:45 +01:00
|
|
|
// the boost number.
|
2014-02-06 00:11:12 +01:00
|
|
|
gf_bits = (int)((double)boost * (twopass->gf_group_bits /
|
|
|
|
(double)allocation_chunks));
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// If the frame that is to be boosted is simpler than the average for
|
|
|
|
// the gf/arf group then use an alternative calculation
|
2014-02-13 18:40:45 +01:00
|
|
|
// based on the error score of the frame itself.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (rc->baseline_gf_interval < 1 ||
|
|
|
|
mod_frame_err < gf_group_err / (double)rc->baseline_gf_interval) {
|
2014-02-06 00:11:12 +01:00
|
|
|
double alt_gf_grp_bits = (double)twopass->kf_group_bits *
|
2014-01-15 21:46:18 +01:00
|
|
|
(mod_frame_err * (double)rc->baseline_gf_interval) /
|
2014-02-06 00:11:12 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(twopass->kf_group_error_left);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-05-09 03:13:46 +02:00
|
|
|
int alt_gf_bits = (int)((double)boost * (alt_gf_grp_bits /
|
2012-07-14 00:21:29 +02:00
|
|
|
(double)allocation_chunks));
|
|
|
|
|
2013-05-09 03:13:46 +02:00
|
|
|
if (gf_bits > alt_gf_bits)
|
2012-07-14 00:21:29 +02:00
|
|
|
gf_bits = alt_gf_bits;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
|
|
|
// If it is harder than other frames in the group make sure it at
|
|
|
|
// least receives an allocation in keeping with its relative error
|
|
|
|
// score, otherwise it may be worse off than an "un-boosted" frame.
|
2014-02-06 00:11:12 +01:00
|
|
|
int alt_gf_bits = (int)((double)twopass->kf_group_bits *
|
2013-05-09 03:13:46 +02:00
|
|
|
mod_frame_err /
|
2014-02-06 00:11:12 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(twopass->kf_group_error_left));
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-05-09 03:13:46 +02:00
|
|
|
if (alt_gf_bits > gf_bits)
|
2012-07-14 00:21:29 +02:00
|
|
|
gf_bits = alt_gf_bits;
|
2011-06-28 18:29:47 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Don't allow a negative value for gf_bits.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (gf_bits < 0)
|
|
|
|
gf_bits = 0;
|
2011-06-16 19:01:27 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
if (i == 0) {
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->gf_bits = gf_bits;
|
2011-06-16 19:01:27 +02:00
|
|
|
}
|
2014-01-15 21:46:18 +01:00
|
|
|
if (i == 1 ||
|
|
|
|
(!rc->source_alt_ref_pending &&
|
2014-02-06 00:11:12 +01:00
|
|
|
cpi->common.frame_type != KEY_FRAME)) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Calculate the per frame bit target for this frame.
|
2014-02-04 20:42:50 +01:00
|
|
|
vp9_rc_set_frame_target(cpi, gf_bits);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2014-02-13 18:40:45 +01:00
|
|
|
// Adjust KF group bits and error remaining.
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->kf_group_error_left -= (int64_t)gf_group_err;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// If this is an arf update we want to remove the score for the overlay
|
|
|
|
// frame at the end which will usually be very cheap to code.
|
|
|
|
// The overlay frame has already, in effect, been coded so we want to spread
|
|
|
|
// the remaining bits among the other frames.
|
2013-12-19 12:38:04 +01:00
|
|
|
// For normal GFs remove the score for the GF itself unless this is
|
|
|
|
// also a key frame in which case it has already been accounted for.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (rc->source_alt_ref_pending) {
|
2014-02-13 22:03:44 +01:00
|
|
|
twopass->gf_group_error_left = (int64_t)(gf_group_err - mod_frame_err);
|
2013-12-19 12:38:04 +01:00
|
|
|
} else if (cpi->common.frame_type != KEY_FRAME) {
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->gf_group_error_left = (int64_t)(gf_group_err
|
2012-11-05 23:22:59 +01:00
|
|
|
- gf_first_frame_err);
|
2013-12-19 12:38:04 +01:00
|
|
|
} else {
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->gf_group_error_left = (int64_t)gf_group_err;
|
2013-12-19 12:38:04 +01:00
|
|
|
}
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// This condition could fail if there are two kfs very close together
|
2014-02-13 18:40:45 +01:00
|
|
|
// despite MIN_GF_INTERVAL and would cause a divide by 0 in the
|
2013-04-17 20:07:12 +02:00
|
|
|
// calculation of alt_extra_bits.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (rc->baseline_gf_interval >= 3) {
|
|
|
|
const int boost = rc->source_alt_ref_pending ? b_boost : rc->gfu_boost;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
if (boost >= 150) {
|
2014-02-06 00:11:12 +01:00
|
|
|
const int pct_extra = MIN(20, (boost - 100) / 50);
|
2014-04-02 02:31:59 +02:00
|
|
|
const int alt_extra_bits = (int)((
|
|
|
|
MAX(twopass->gf_group_bits - twopass->gf_bits, 0) *
|
|
|
|
pct_extra) / 100);
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->gf_group_bits -= alt_extra_bits;
|
2013-04-17 20:07:12 +02:00
|
|
|
}
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cpi->common.frame_type != KEY_FRAME) {
|
|
|
|
FIRSTPASS_STATS sectionstats;
|
|
|
|
|
|
|
|
zero_stats(§ionstats);
|
2014-02-06 00:11:12 +01:00
|
|
|
reset_fpf_position(twopass, start_pos);
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-02-14 18:18:42 +01:00
|
|
|
for (i = 0; i < rc->baseline_gf_interval; ++i) {
|
2014-02-06 00:11:12 +01:00
|
|
|
input_stats(twopass, &next_frame);
|
2012-07-14 00:21:29 +02:00
|
|
|
accumulate_stats(§ionstats, &next_frame);
|
|
|
|
}
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
avg_stats(§ionstats);
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-02-06 00:11:12 +01:00
|
|
|
twopass->section_intra_rating = (int)
|
2012-11-05 23:22:59 +01:00
|
|
|
(sectionstats.intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(sectionstats.coded_error));
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-02-06 00:11:12 +01:00
|
|
|
reset_fpf_position(twopass, start_pos);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate bits to a normal frame that is neither a gf an arf or a key frame.
|
2012-10-31 01:53:32 +01:00
|
|
|
static void assign_std_frame_bits(VP9_COMP *cpi, FIRSTPASS_STATS *this_frame) {
|
2014-04-09 00:21:30 +02:00
|
|
|
struct twopass_rc *twopass = &cpi->twopass;
|
|
|
|
// For a single frame.
|
|
|
|
const int max_bits = frame_max_bits(&cpi->rc, &cpi->oxcf);
|
|
|
|
// Calculate modified prediction error used in bit allocation.
|
|
|
|
const double modified_err = calculate_modified_err(cpi, this_frame);
|
2013-04-03 00:08:50 +02:00
|
|
|
int target_frame_size;
|
|
|
|
double err_fraction;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-09 00:21:30 +02:00
|
|
|
if (twopass->gf_group_error_left > 0)
|
2013-04-03 00:08:50 +02:00
|
|
|
// What portion of the remaining GF group error is used by this frame.
|
2014-04-09 00:21:30 +02:00
|
|
|
err_fraction = modified_err / twopass->gf_group_error_left;
|
2012-07-14 00:21:29 +02:00
|
|
|
else
|
|
|
|
err_fraction = 0.0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
// How many of those bits available for allocation should we give it?
|
2014-04-09 00:21:30 +02:00
|
|
|
target_frame_size = (int)((double)twopass->gf_group_bits * err_fraction);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
// Clip target size to 0 - max_bits (or cpi->twopass.gf_group_bits) at
|
|
|
|
// the top end.
|
2014-01-14 01:27:50 +01:00
|
|
|
target_frame_size = clamp(target_frame_size, 0,
|
2014-04-09 00:21:30 +02:00
|
|
|
MIN(max_bits, (int)twopass->gf_group_bits));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
// Adjust error and bits remaining.
|
2014-04-09 00:21:30 +02:00
|
|
|
twopass->gf_group_error_left -= (int64_t)modified_err;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
// Per frame bit target for this frame.
|
2014-02-04 20:42:50 +01:00
|
|
|
vp9_rc_set_frame_target(cpi, target_frame_size);
|
2014-01-07 00:19:22 +01:00
|
|
|
}
|
|
|
|
|
2014-04-09 00:21:30 +02:00
|
|
|
static int test_candidate_kf(struct twopass_rc *twopass,
|
2014-02-06 00:11:12 +01:00
|
|
|
const FIRSTPASS_STATS *last_frame,
|
|
|
|
const FIRSTPASS_STATS *this_frame,
|
|
|
|
const FIRSTPASS_STATS *next_frame) {
|
2013-04-16 00:24:39 +02:00
|
|
|
int is_viable_kf = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Does the frame satisfy the primary criteria of a key frame?
|
|
|
|
// If so, then examine how well it predicts subsequent frames.
|
2012-07-14 00:21:29 +02:00
|
|
|
if ((this_frame->pcnt_second_ref < 0.10) &&
|
|
|
|
(next_frame->pcnt_second_ref < 0.10) &&
|
|
|
|
((this_frame->pcnt_inter < 0.05) ||
|
2014-02-13 18:40:45 +01:00
|
|
|
(((this_frame->pcnt_inter - this_frame->pcnt_neutral) < 0.35) &&
|
2013-10-06 02:10:54 +02:00
|
|
|
((this_frame->intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(this_frame->coded_error)) < 2.5) &&
|
|
|
|
((fabs(last_frame->coded_error - this_frame->coded_error) /
|
2014-02-13 18:40:45 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(this_frame->coded_error) > 0.40) ||
|
2013-10-06 02:10:54 +02:00
|
|
|
(fabs(last_frame->intra_error - this_frame->intra_error) /
|
2014-02-13 18:40:45 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(this_frame->intra_error) > 0.40) ||
|
2013-10-06 02:10:54 +02:00
|
|
|
((next_frame->intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(next_frame->coded_error)) > 3.5))))) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i;
|
2014-04-09 00:21:30 +02:00
|
|
|
const FIRSTPASS_STATS *start_pos = twopass->stats_in;
|
2014-03-07 03:58:17 +01:00
|
|
|
FIRSTPASS_STATS local_next_frame = *next_frame;
|
2012-07-14 00:21:29 +02:00
|
|
|
double boost_score = 0.0;
|
|
|
|
double old_boost_score = 0.0;
|
|
|
|
double decay_accumulator = 1.0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Examine how well the key frame predicts subsequent frames.
|
2014-02-14 18:18:42 +01:00
|
|
|
for (i = 0; i < 16; ++i) {
|
2014-01-23 21:36:19 +01:00
|
|
|
double next_iiratio = (IIKFACTOR1 * local_next_frame.intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(local_next_frame.coded_error));
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
if (next_iiratio > RMAX)
|
|
|
|
next_iiratio = RMAX;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Cumulative effect of decay in prediction quality.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (local_next_frame.pcnt_inter > 0.85)
|
2014-01-15 21:46:18 +01:00
|
|
|
decay_accumulator *= local_next_frame.pcnt_inter;
|
2012-07-14 00:21:29 +02:00
|
|
|
else
|
2014-01-15 21:46:18 +01:00
|
|
|
decay_accumulator *= (0.85 + local_next_frame.pcnt_inter) / 2.0;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Keep a running total.
|
2012-07-14 00:21:29 +02:00
|
|
|
boost_score += (decay_accumulator * next_iiratio);
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Test various breakout clauses.
|
2012-07-14 00:21:29 +02:00
|
|
|
if ((local_next_frame.pcnt_inter < 0.05) ||
|
|
|
|
(next_iiratio < 1.5) ||
|
|
|
|
(((local_next_frame.pcnt_inter -
|
|
|
|
local_next_frame.pcnt_neutral) < 0.20) &&
|
|
|
|
(next_iiratio < 3.0)) ||
|
|
|
|
((boost_score - old_boost_score) < 3.0) ||
|
2014-02-13 18:40:45 +01:00
|
|
|
(local_next_frame.intra_error < 200)) {
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
old_boost_score = boost_score;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Get the next frame details
|
2014-04-09 00:21:30 +02:00
|
|
|
if (EOF == input_stats(twopass, &local_next_frame))
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-03 00:08:50 +02:00
|
|
|
// If there is tolerable prediction for at least the next 3 frames then
|
|
|
|
// break out else discard this potential key frame and move on
|
2013-10-06 02:10:54 +02:00
|
|
|
if (boost_score > 30.0 && (i > 3)) {
|
2013-04-16 00:24:39 +02:00
|
|
|
is_viable_kf = 1;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2012-07-14 00:21:29 +02:00
|
|
|
// Reset the file position
|
2014-04-09 00:21:30 +02:00
|
|
|
reset_fpf_position(twopass, start_pos);
|
2010-06-11 20:33:49 +02:00
|
|
|
|
2013-04-16 00:24:39 +02:00
|
|
|
is_viable_kf = 0;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
return is_viable_kf;
|
|
|
|
}
|
2013-12-13 18:32:05 +01:00
|
|
|
|
2012-10-31 01:53:32 +01:00
|
|
|
static void find_next_key_frame(VP9_COMP *cpi, FIRSTPASS_STATS *this_frame) {
|
2012-07-14 00:21:29 +02:00
|
|
|
int i, j;
|
2014-03-11 02:03:05 +01:00
|
|
|
RATE_CONTROL *const rc = &cpi->rc;
|
|
|
|
struct twopass_rc *const twopass = &cpi->twopass;
|
|
|
|
const FIRSTPASS_STATS first_frame = *this_frame;
|
|
|
|
const FIRSTPASS_STATS *start_position = twopass->stats_in;
|
2014-04-09 00:21:30 +02:00
|
|
|
FIRSTPASS_STATS next_frame;
|
|
|
|
FIRSTPASS_STATS last_frame;
|
2012-07-14 00:21:29 +02:00
|
|
|
double decay_accumulator = 1.0;
|
|
|
|
double zero_motion_accumulator = 1.0;
|
2014-04-09 00:21:30 +02:00
|
|
|
double boost_score = 0.0;
|
2012-07-14 00:21:29 +02:00
|
|
|
double kf_mod_err = 0.0;
|
|
|
|
double kf_group_err = 0.0;
|
|
|
|
double recent_loop_decay[8] = {1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0};
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-07-25 23:13:44 +02:00
|
|
|
vp9_zero(next_frame);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
cpi->common.frame_type = KEY_FRAME;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Is this a forced key frame by interval.
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->this_key_frame_forced = rc->next_key_frame_forced;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Clear the alt ref active flag as this can never be active on a key frame.
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->source_alt_ref_active = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// KF is always a GF so clear frames till next gf counter.
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->frames_till_gf_update_due = 0;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->frames_to_key = 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_group_bits = 0; // Total bits available to kf group
|
|
|
|
twopass->kf_group_error_left = 0; // Group modified error score.
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
kf_mod_err = calculate_modified_err(cpi, this_frame);
|
2011-03-07 16:11:09 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Find the next keyframe.
|
2012-07-14 00:21:29 +02:00
|
|
|
i = 0;
|
2014-01-16 01:21:38 +01:00
|
|
|
while (twopass->stats_in < twopass->stats_in_end) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Accumulate kf group error.
|
2012-07-14 00:21:29 +02:00
|
|
|
kf_group_err += calculate_modified_err(cpi, this_frame);
|
2011-03-07 16:11:09 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Load the next frame's stats.
|
2013-06-01 01:00:32 +02:00
|
|
|
last_frame = *this_frame;
|
2014-01-16 01:21:38 +01:00
|
|
|
input_stats(twopass, this_frame);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Provided that we are not at the end of the file...
|
2014-01-06 21:46:23 +01:00
|
|
|
if (cpi->oxcf.auto_key &&
|
2014-01-16 01:21:38 +01:00
|
|
|
lookup_next_frame_stats(twopass, &next_frame) != EOF) {
|
2014-04-09 00:21:30 +02:00
|
|
|
double loop_decay_rate;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Check for a scene cut.
|
2014-04-09 00:21:30 +02:00
|
|
|
if (test_candidate_kf(twopass, &last_frame, this_frame, &next_frame))
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
2013-05-09 03:13:46 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// How fast is the prediction quality decaying?
|
2014-01-29 20:26:09 +01:00
|
|
|
loop_decay_rate = get_prediction_decay_rate(&cpi->common, &next_frame);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// We want to know something about the recent past... rather than
|
2014-02-13 18:40:45 +01:00
|
|
|
// as used elsewhere where we are concerned with decay in prediction
|
2012-07-14 00:21:29 +02:00
|
|
|
// quality since the last GF or KF.
|
|
|
|
recent_loop_decay[i % 8] = loop_decay_rate;
|
|
|
|
decay_accumulator = 1.0;
|
2014-02-14 18:18:42 +01:00
|
|
|
for (j = 0; j < 8; ++j)
|
2013-05-09 03:13:46 +02:00
|
|
|
decay_accumulator *= recent_loop_decay[j];
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Special check for transition or high motion followed by a
|
2014-02-13 18:40:45 +01:00
|
|
|
// static scene.
|
2014-04-09 00:21:30 +02:00
|
|
|
if (detect_transition_to_still(twopass, i, cpi->key_frame_frequency - i,
|
2013-05-09 03:13:46 +02:00
|
|
|
loop_decay_rate, decay_accumulator))
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Step on to the next frame.
|
2014-02-14 18:18:42 +01:00
|
|
|
++rc->frames_to_key;
|
2011-01-25 13:29:06 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// If we don't have a real key frame within the next two
|
2014-02-13 18:40:45 +01:00
|
|
|
// key_frame_frequency intervals then break out of the loop.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (rc->frames_to_key >= 2 * (int)cpi->key_frame_frequency)
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2014-02-13 18:40:45 +01:00
|
|
|
++rc->frames_to_key;
|
2013-10-06 02:10:54 +02:00
|
|
|
}
|
2014-02-14 18:18:42 +01:00
|
|
|
++i;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2011-01-25 13:29:06 +01:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// If there is a max kf interval set by the user we must obey it.
|
|
|
|
// We already breakout of the loop above at 2x max.
|
2014-02-13 18:40:45 +01:00
|
|
|
// This code centers the extra kf if the actual natural interval
|
|
|
|
// is between 1x and 2x.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (cpi->oxcf.auto_key &&
|
|
|
|
rc->frames_to_key > (int)cpi->key_frame_frequency) {
|
2014-03-11 02:03:05 +01:00
|
|
|
FIRSTPASS_STATS tmp_frame = first_frame;
|
2011-01-25 13:29:06 +01:00
|
|
|
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->frames_to_key /= 2;
|
2011-01-25 13:29:06 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Reset to the start of the group.
|
2014-01-16 01:21:38 +01:00
|
|
|
reset_fpf_position(twopass, start_position);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
kf_group_err = 0;
|
2011-01-25 13:29:06 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Rescan to get the correct error data for the forced kf group.
|
2014-02-14 18:18:42 +01:00
|
|
|
for (i = 0; i < rc->frames_to_key; ++i) {
|
2012-07-14 00:21:29 +02:00
|
|
|
kf_group_err += calculate_modified_err(cpi, &tmp_frame);
|
2014-01-16 01:21:38 +01:00
|
|
|
input_stats(twopass, &tmp_frame);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->next_key_frame_forced = 1;
|
2014-01-16 01:21:38 +01:00
|
|
|
} else if (twopass->stats_in == twopass->stats_in_end) {
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->next_key_frame_forced = 1;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->next_key_frame_forced = 0;
|
2013-10-06 02:10:54 +02:00
|
|
|
}
|
2014-01-09 17:10:57 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Special case for the last key frame of the file.
|
2014-01-16 01:21:38 +01:00
|
|
|
if (twopass->stats_in >= twopass->stats_in_end) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Accumulate kf group error.
|
2012-07-14 00:21:29 +02:00
|
|
|
kf_group_err += calculate_modified_err(cpi, this_frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate the number of bits that should be assigned to the kf group.
|
2014-01-16 01:21:38 +01:00
|
|
|
if (twopass->bits_left > 0 && twopass->modified_error_left > 0.0) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Maximum number of bits for a single normal frame (not key frame).
|
2014-04-09 00:21:30 +02:00
|
|
|
const int max_bits = frame_max_bits(rc, &cpi->oxcf);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Maximum number of bits allocated to the key frame group.
|
2012-07-14 00:21:29 +02:00
|
|
|
int64_t max_grp_bits;
|
|
|
|
|
|
|
|
// Default allocation based on bits left and relative
|
2014-02-13 18:40:45 +01:00
|
|
|
// complexity of the section.
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_group_bits = (int64_t)(twopass->bits_left *
|
|
|
|
(kf_group_err / twopass->modified_error_left));
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Clip based on maximum per frame rate defined by the user.
|
2014-01-15 21:46:18 +01:00
|
|
|
max_grp_bits = (int64_t)max_bits * (int64_t)rc->frames_to_key;
|
2014-01-16 01:21:38 +01:00
|
|
|
if (twopass->kf_group_bits > max_grp_bits)
|
|
|
|
twopass->kf_group_bits = max_grp_bits;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_group_bits = 0;
|
2013-10-06 02:10:54 +02:00
|
|
|
}
|
2014-02-13 18:40:45 +01:00
|
|
|
// Reset the first pass file position.
|
2014-01-16 01:21:38 +01:00
|
|
|
reset_fpf_position(twopass, start_position);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2013-10-06 02:10:54 +02:00
|
|
|
// Determine how big to make this keyframe based on how well the subsequent
|
|
|
|
// frames use inter blocks.
|
2012-07-14 00:21:29 +02:00
|
|
|
decay_accumulator = 1.0;
|
|
|
|
boost_score = 0.0;
|
|
|
|
|
2013-04-16 19:59:39 +02:00
|
|
|
// Scan through the kf group collating various stats.
|
2014-02-14 18:18:42 +01:00
|
|
|
for (i = 0; i < rc->frames_to_key; ++i) {
|
2014-01-16 01:21:38 +01:00
|
|
|
if (EOF == input_stats(twopass, &next_frame))
|
2012-07-14 00:21:29 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
// Monitor for static sections.
|
|
|
|
if ((next_frame.pcnt_inter - next_frame.pcnt_motion) <
|
2014-03-11 02:03:05 +01:00
|
|
|
zero_motion_accumulator) {
|
|
|
|
zero_motion_accumulator = (next_frame.pcnt_inter -
|
|
|
|
next_frame.pcnt_motion);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2013-04-16 19:59:39 +02:00
|
|
|
// For the first few frames collect data to decide kf boost.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (i <= (rc->max_gf_interval * 2)) {
|
2014-03-11 02:03:05 +01:00
|
|
|
double r;
|
2014-01-16 01:21:38 +01:00
|
|
|
if (next_frame.intra_error > twopass->kf_intra_err_min)
|
2013-04-16 19:59:39 +02:00
|
|
|
r = (IIKFACTOR2 * next_frame.intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(next_frame.coded_error));
|
|
|
|
else
|
2014-01-16 01:21:38 +01:00
|
|
|
r = (IIKFACTOR2 * twopass->kf_intra_err_min /
|
2013-04-16 19:59:39 +02:00
|
|
|
DOUBLE_DIVIDE_CHECK(next_frame.coded_error));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2013-04-16 19:59:39 +02:00
|
|
|
if (r > RMAX)
|
|
|
|
r = RMAX;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// How fast is prediction quality decaying.
|
2014-01-29 20:26:09 +01:00
|
|
|
if (!detect_flash(twopass, 0)) {
|
2014-04-09 00:21:30 +02:00
|
|
|
const double loop_decay_rate = get_prediction_decay_rate(&cpi->common,
|
|
|
|
&next_frame);
|
2014-01-23 21:36:19 +01:00
|
|
|
decay_accumulator *= loop_decay_rate;
|
2014-04-09 00:21:30 +02:00
|
|
|
decay_accumulator = MAX(decay_accumulator, MIN_DECAY_FACTOR);
|
2013-04-16 19:59:39 +02:00
|
|
|
}
|
2012-05-15 19:01:44 +02:00
|
|
|
|
2013-04-16 19:59:39 +02:00
|
|
|
boost_score += (decay_accumulator * r);
|
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
{
|
|
|
|
FIRSTPASS_STATS sectionstats;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
zero_stats(§ionstats);
|
2014-01-16 01:21:38 +01:00
|
|
|
reset_fpf_position(twopass, start_position);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-14 18:18:42 +01:00
|
|
|
for (i = 0; i < rc->frames_to_key; ++i) {
|
2014-01-16 01:21:38 +01:00
|
|
|
input_stats(twopass, &next_frame);
|
2012-07-14 00:21:29 +02:00
|
|
|
accumulate_stats(§ionstats, &next_frame);
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
avg_stats(§ionstats);
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->section_intra_rating = (int) (sectionstats.intra_error /
|
2014-01-15 21:46:18 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(sectionstats.coded_error));
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Reset the first pass file position.
|
2014-01-16 01:21:38 +01:00
|
|
|
reset_fpf_position(twopass, start_position);
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Work out how many bits to allocate for the key frame itself.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (1) {
|
2012-11-05 23:22:59 +01:00
|
|
|
int kf_boost = (int)boost_score;
|
2012-07-14 00:21:29 +02:00
|
|
|
int allocation_chunks;
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-01-15 21:46:18 +01:00
|
|
|
if (kf_boost < (rc->frames_to_key * 3))
|
|
|
|
kf_boost = (rc->frames_to_key * 3);
|
2012-05-30 13:54:34 +02:00
|
|
|
|
2014-02-04 20:42:50 +01:00
|
|
|
if (kf_boost < MIN_KF_BOOST)
|
|
|
|
kf_boost = MIN_KF_BOOST;
|
2012-07-14 00:21:29 +02:00
|
|
|
|
|
|
|
// Make a note of baseline boost and the zero motion
|
|
|
|
// accumulator value for use elsewhere.
|
2014-01-15 21:46:18 +01:00
|
|
|
rc->kf_boost = kf_boost;
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_zeromotion_pct = (int)(zero_motion_accumulator * 100.0);
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Key frame size depends on:
|
|
|
|
// (1) the error score for the whole key frame group,
|
|
|
|
// (2) the key frames' own error if this is smaller than the
|
|
|
|
// average for the group (optional),
|
|
|
|
// (3) insuring that the frame receives at least the allocation it would
|
|
|
|
// have received based on its own error score vs the error score
|
|
|
|
// remaining.
|
|
|
|
// Special case:
|
|
|
|
// If the sequence appears almost totally static we want to spend almost
|
|
|
|
// all of the bits on the key frame.
|
|
|
|
//
|
|
|
|
// We use (cpi->rc.frames_to_key - 1) below because the key frame itself is
|
|
|
|
// taken care of by kf_boost.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (zero_motion_accumulator >= 0.99) {
|
2014-01-16 01:21:38 +01:00
|
|
|
allocation_chunks = ((rc->frames_to_key - 1) * 10) + kf_boost;
|
2012-07-14 00:21:29 +02:00
|
|
|
} else {
|
2014-01-16 01:21:38 +01:00
|
|
|
allocation_chunks = ((rc->frames_to_key - 1) * 100) + kf_boost;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Prevent overflow.
|
2012-07-14 00:21:29 +02:00
|
|
|
if (kf_boost > 1028) {
|
2014-04-09 00:21:30 +02:00
|
|
|
const int divisor = kf_boost >> 10;
|
2012-07-14 00:21:29 +02:00
|
|
|
kf_boost /= divisor;
|
|
|
|
allocation_chunks /= divisor;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-09 00:21:30 +02:00
|
|
|
twopass->kf_group_bits = MAX(0, twopass->kf_group_bits);
|
2014-02-13 18:40:45 +01:00
|
|
|
// Calculate the number of bits to be spent on the key frame.
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_bits = (int)((double)kf_boost *
|
|
|
|
((double)twopass->kf_group_bits / allocation_chunks));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// If the key frame is actually easier than the average for the
|
2014-01-31 00:04:32 +01:00
|
|
|
// kf group (which does sometimes happen, e.g. a blank intro frame)
|
|
|
|
// then use an alternate calculation based on the kf error score
|
2012-07-14 00:21:29 +02:00
|
|
|
// which should give a smaller key frame.
|
2014-01-15 21:46:18 +01:00
|
|
|
if (kf_mod_err < kf_group_err / rc->frames_to_key) {
|
2014-04-09 00:21:30 +02:00
|
|
|
double alt_kf_grp_bits = ((double)twopass->bits_left *
|
2014-01-15 21:46:18 +01:00
|
|
|
(kf_mod_err * (double)rc->frames_to_key) /
|
2014-01-16 01:21:38 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(twopass->modified_error_left));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-09 00:21:30 +02:00
|
|
|
const int alt_kf_bits = (int)((double)kf_boost *
|
2012-07-14 00:21:29 +02:00
|
|
|
(alt_kf_grp_bits / (double)allocation_chunks));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-16 01:21:38 +01:00
|
|
|
if (twopass->kf_bits > alt_kf_bits)
|
|
|
|
twopass->kf_bits = alt_kf_bits;
|
2013-10-06 02:10:54 +02:00
|
|
|
} else {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Else if it is much harder than other frames in the group make sure
|
|
|
|
// it at least receives an allocation in keeping with its relative
|
|
|
|
// error score.
|
2014-04-09 00:21:30 +02:00
|
|
|
const int alt_kf_bits = (int)((double)twopass->bits_left * (kf_mod_err /
|
2014-01-16 01:21:38 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(twopass->modified_error_left)));
|
2012-07-14 00:21:29 +02:00
|
|
|
|
2014-04-09 00:21:30 +02:00
|
|
|
if (alt_kf_bits > twopass->kf_bits)
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_bits = alt_kf_bits;
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_group_bits -= twopass->kf_bits;
|
2014-02-04 20:42:50 +01:00
|
|
|
// Per frame bit target for this frame.
|
|
|
|
vp9_rc_set_frame_target(cpi, twopass->kf_bits);
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Note the total error score of the kf group minus the key frame itself.
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->kf_group_error_left = (int)(kf_group_err - kf_mod_err);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Adjust the count of total modified error left.
|
2013-10-06 02:10:54 +02:00
|
|
|
// The count of bits left is adjusted elsewhere based on real coded frame
|
|
|
|
// sizes.
|
2014-01-16 01:21:38 +01:00
|
|
|
twopass->modified_error_left -= kf_group_err;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2013-11-27 00:47:43 +01:00
|
|
|
|
2014-02-04 20:42:50 +01:00
|
|
|
void vp9_rc_get_first_pass_params(VP9_COMP *cpi) {
|
2014-01-23 01:20:39 +01:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
|
|
|
if (!cpi->refresh_alt_ref_frame &&
|
|
|
|
(cm->current_video_frame == 0 ||
|
2014-04-10 05:56:06 +02:00
|
|
|
(cpi->frame_flags & FRAMEFLAGS_KEY))) {
|
2014-01-23 01:20:39 +01:00
|
|
|
cm->frame_type = KEY_FRAME;
|
|
|
|
} else {
|
|
|
|
cm->frame_type = INTER_FRAME;
|
|
|
|
}
|
2014-02-13 18:40:45 +01:00
|
|
|
// Do not use periodic key frames.
|
2014-01-23 01:20:39 +01:00
|
|
|
cpi->rc.frames_to_key = INT_MAX;
|
|
|
|
}
|
|
|
|
|
2014-04-15 03:06:52 +02:00
|
|
|
// For VBR...adjustment to the frame target based on error from previous frames
|
|
|
|
void vbr_rate_correction(int * this_frame_target,
|
|
|
|
const int64_t vbr_bits_off_target) {
|
2014-04-17 01:53:55 +02:00
|
|
|
int max_delta = (*this_frame_target * 15) / 100;
|
2014-04-15 03:06:52 +02:00
|
|
|
|
|
|
|
// vbr_bits_off_target > 0 means we have extra bits to spend
|
|
|
|
if (vbr_bits_off_target > 0) {
|
|
|
|
*this_frame_target +=
|
|
|
|
(vbr_bits_off_target > max_delta) ? max_delta
|
|
|
|
: (int)vbr_bits_off_target;
|
|
|
|
} else {
|
|
|
|
*this_frame_target -=
|
|
|
|
(vbr_bits_off_target < -max_delta) ? max_delta
|
|
|
|
: (int)-vbr_bits_off_target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-04 20:42:50 +01:00
|
|
|
void vp9_rc_get_second_pass_params(VP9_COMP *cpi) {
|
2014-02-01 01:49:33 +01:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
|
|
|
RATE_CONTROL *const rc = &cpi->rc;
|
|
|
|
struct twopass_rc *const twopass = &cpi->twopass;
|
2014-03-28 00:59:44 +01:00
|
|
|
int frames_left;
|
2014-01-23 01:20:39 +01:00
|
|
|
FIRSTPASS_STATS this_frame;
|
|
|
|
FIRSTPASS_STATS this_frame_copy;
|
|
|
|
|
|
|
|
double this_frame_intra_error;
|
|
|
|
double this_frame_coded_error;
|
2014-02-04 20:42:50 +01:00
|
|
|
int target;
|
2014-03-28 00:59:44 +01:00
|
|
|
LAYER_CONTEXT *lc = NULL;
|
|
|
|
int is_spatial_svc = (cpi->use_svc && cpi->svc.number_temporal_layers == 1);
|
|
|
|
|
|
|
|
if (is_spatial_svc) {
|
|
|
|
lc = &cpi->svc.layer_context[cpi->svc.spatial_layer_id];
|
|
|
|
frames_left = (int)(twopass->total_stats.count -
|
|
|
|
lc->current_video_frame_in_layer);
|
|
|
|
} else {
|
|
|
|
frames_left = (int)(twopass->total_stats.count -
|
|
|
|
cm->current_video_frame);
|
|
|
|
}
|
2014-01-23 01:20:39 +01:00
|
|
|
|
2014-02-01 01:49:33 +01:00
|
|
|
if (!twopass->stats_in)
|
2014-01-23 03:00:08 +01:00
|
|
|
return;
|
2014-02-01 01:49:33 +01:00
|
|
|
|
2014-01-23 01:20:39 +01:00
|
|
|
if (cpi->refresh_alt_ref_frame) {
|
2014-04-15 03:06:52 +02:00
|
|
|
int modified_target = twopass->gf_bits;
|
|
|
|
rc->base_frame_target = twopass->gf_bits;
|
2014-02-01 01:49:33 +01:00
|
|
|
cm->frame_type = INTER_FRAME;
|
2014-04-15 03:06:52 +02:00
|
|
|
#ifdef LONG_TERM_VBR_CORRECTION
|
|
|
|
// Correction to rate target based on prior over or under shoot.
|
2014-04-18 01:09:24 +02:00
|
|
|
if (cpi->oxcf.rc_mode == RC_MODE_VBR)
|
2014-04-15 03:06:52 +02:00
|
|
|
vbr_rate_correction(&modified_target, rc->vbr_bits_off_target);
|
|
|
|
#endif
|
|
|
|
vp9_rc_set_frame_target(cpi, modified_target);
|
2014-01-23 01:20:39 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
vp9_clear_system_state();
|
|
|
|
|
2014-03-28 00:59:44 +01:00
|
|
|
if (is_spatial_svc && twopass->kf_intra_err_min == 0) {
|
|
|
|
twopass->kf_intra_err_min = KF_MB_INTRA_MIN * cpi->common.MBs;
|
|
|
|
twopass->gf_intra_err_min = GF_MB_INTRA_MIN * cpi->common.MBs;
|
|
|
|
}
|
|
|
|
|
2014-04-18 01:09:24 +02:00
|
|
|
if (cpi->oxcf.rc_mode == RC_MODE_CONSTANT_QUALITY) {
|
2014-02-11 02:52:44 +01:00
|
|
|
twopass->active_worst_quality = cpi->oxcf.cq_level;
|
2014-03-28 00:59:44 +01:00
|
|
|
} else if (cm->current_video_frame == 0 ||
|
|
|
|
(is_spatial_svc && lc->current_video_frame_in_layer == 0)) {
|
2014-01-23 01:20:39 +01:00
|
|
|
// Special case code for first frame.
|
2014-02-01 01:49:33 +01:00
|
|
|
const int section_target_bandwidth = (int)(twopass->bits_left /
|
2014-02-04 20:42:50 +01:00
|
|
|
frames_left);
|
2014-04-10 06:06:11 +02:00
|
|
|
const int tmp_q = get_twopass_worst_quality(cpi, &twopass->total_left_stats,
|
2014-02-08 00:52:41 +01:00
|
|
|
section_target_bandwidth);
|
2014-02-11 02:52:44 +01:00
|
|
|
twopass->active_worst_quality = tmp_q;
|
2014-01-23 01:20:39 +01:00
|
|
|
rc->ni_av_qi = tmp_q;
|
|
|
|
rc->avg_q = vp9_convert_qindex_to_q(tmp_q);
|
|
|
|
}
|
|
|
|
vp9_zero(this_frame);
|
2014-02-01 01:49:33 +01:00
|
|
|
if (EOF == input_stats(twopass, &this_frame))
|
2014-01-23 01:20:39 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
this_frame_intra_error = this_frame.intra_error;
|
|
|
|
this_frame_coded_error = this_frame.coded_error;
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Keyframe and section processing.
|
2014-01-23 01:20:39 +01:00
|
|
|
if (rc->frames_to_key == 0 ||
|
2014-04-10 05:56:06 +02:00
|
|
|
(cpi->frame_flags & FRAMEFLAGS_KEY)) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Define next KF group and assign bits to it.
|
2014-01-23 01:20:39 +01:00
|
|
|
this_frame_copy = this_frame;
|
|
|
|
find_next_key_frame(cpi, &this_frame_copy);
|
2014-03-28 00:59:44 +01:00
|
|
|
// Don't place key frame in any enhancement layers in spatial svc
|
|
|
|
if (cpi->use_svc && cpi->svc.number_temporal_layers == 1 &&
|
|
|
|
cpi->svc.spatial_layer_id > 0) {
|
|
|
|
cm->frame_type = INTER_FRAME;
|
|
|
|
}
|
2014-01-23 01:20:39 +01:00
|
|
|
} else {
|
2014-02-01 01:49:33 +01:00
|
|
|
cm->frame_type = INTER_FRAME;
|
2014-01-23 01:20:39 +01:00
|
|
|
}
|
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Is this frame a GF / ARF? (Note: a key frame is always also a GF).
|
2014-01-23 01:20:39 +01:00
|
|
|
if (rc->frames_till_gf_update_due == 0) {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Define next gf group and assign bits to it.
|
2014-01-23 01:20:39 +01:00
|
|
|
this_frame_copy = this_frame;
|
|
|
|
|
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
if (cpi->multi_arf_enabled) {
|
|
|
|
define_fixed_arf_period(cpi);
|
|
|
|
} else {
|
|
|
|
#endif
|
|
|
|
define_gf_group(cpi, &this_frame_copy);
|
|
|
|
#if CONFIG_MULTIPLE_ARF
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-01 01:49:33 +01:00
|
|
|
if (twopass->gf_zeromotion_pct > 995) {
|
2014-01-23 01:20:39 +01:00
|
|
|
// As long as max_thresh for encode breakout is small enough, it is ok
|
2014-02-13 18:40:45 +01:00
|
|
|
// to enable it for show frame, i.e. set allow_encode_breakout to
|
|
|
|
// ENCODE_BREAKOUT_LIMITED.
|
2014-02-01 01:49:33 +01:00
|
|
|
if (!cm->show_frame)
|
2014-02-04 20:09:34 +01:00
|
|
|
cpi->allow_encode_breakout = ENCODE_BREAKOUT_DISABLED;
|
2014-01-23 01:20:39 +01:00
|
|
|
else
|
2014-02-04 20:09:34 +01:00
|
|
|
cpi->allow_encode_breakout = ENCODE_BREAKOUT_LIMITED;
|
2014-01-23 01:20:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
rc->frames_till_gf_update_due = rc->baseline_gf_interval;
|
|
|
|
cpi->refresh_golden_frame = 1;
|
|
|
|
} else {
|
2014-02-13 18:40:45 +01:00
|
|
|
// Otherwise this is an ordinary frame.
|
|
|
|
// Assign bits from those allocated to the GF group.
|
2014-01-23 01:20:39 +01:00
|
|
|
this_frame_copy = this_frame;
|
|
|
|
assign_std_frame_bits(cpi, &this_frame_copy);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep a globally available copy of this and the next frame's iiratio.
|
2014-02-01 01:49:33 +01:00
|
|
|
twopass->this_iiratio = (int)(this_frame_intra_error /
|
2014-01-23 01:20:39 +01:00
|
|
|
DOUBLE_DIVIDE_CHECK(this_frame_coded_error));
|
|
|
|
{
|
|
|
|
FIRSTPASS_STATS next_frame;
|
2014-02-01 01:49:33 +01:00
|
|
|
if (lookup_next_frame_stats(twopass, &next_frame) != EOF) {
|
|
|
|
twopass->next_iiratio = (int)(next_frame.intra_error /
|
|
|
|
DOUBLE_DIVIDE_CHECK(next_frame.coded_error));
|
2014-01-23 01:20:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-04 20:42:50 +01:00
|
|
|
if (cpi->common.frame_type == KEY_FRAME)
|
|
|
|
target = vp9_rc_clamp_iframe_target_size(cpi, rc->this_frame_target);
|
|
|
|
else
|
|
|
|
target = vp9_rc_clamp_pframe_target_size(cpi, rc->this_frame_target);
|
2014-04-15 03:06:52 +02:00
|
|
|
|
|
|
|
rc->base_frame_target = target;
|
|
|
|
#ifdef LONG_TERM_VBR_CORRECTION
|
|
|
|
// Correction to rate target based on prior over or under shoot.
|
2014-04-18 01:09:24 +02:00
|
|
|
if (cpi->oxcf.rc_mode == RC_MODE_VBR)
|
2014-04-15 03:06:52 +02:00
|
|
|
vbr_rate_correction(&target, rc->vbr_bits_off_target);
|
|
|
|
#endif
|
2014-02-04 20:42:50 +01:00
|
|
|
vp9_rc_set_frame_target(cpi, target);
|
2014-01-23 01:20:39 +01:00
|
|
|
|
2014-02-13 18:40:45 +01:00
|
|
|
// Update the total stats remaining structure.
|
2014-02-01 01:49:33 +01:00
|
|
|
subtract_stats(&twopass->total_left_stats, &this_frame);
|
2014-01-23 01:20:39 +01:00
|
|
|
}
|
|
|
|
|
2014-04-02 02:31:59 +02:00
|
|
|
void vp9_twopass_postencode_update(VP9_COMP *cpi) {
|
2014-04-15 03:06:52 +02:00
|
|
|
RATE_CONTROL *const rc = &cpi->rc;
|
|
|
|
#ifdef LONG_TERM_VBR_CORRECTION
|
|
|
|
// In this experimental mode, the VBR correction is done exclusively through
|
|
|
|
// rc->vbr_bits_off_target. Based on the sign of this value, a limited %
|
|
|
|
// adjustment is made to the target rate of subsequent frames, to try and
|
|
|
|
// push it back towards 0. This mode is less likely to suffer from
|
|
|
|
// extreme behaviour at the end of a clip or group of frames.
|
|
|
|
const int bits_used = rc->base_frame_target;
|
|
|
|
rc->vbr_bits_off_target += rc->base_frame_target - rc->projected_frame_size;
|
2014-04-03 19:22:58 +02:00
|
|
|
#else
|
2014-04-15 03:06:52 +02:00
|
|
|
// In this mode, VBR correction is acheived by altering bits_left,
|
|
|
|
// kf_group_bits & gf_group_bits to reflect any deviation from the target
|
|
|
|
// rate in this frame. This alters the allocation of bits to the
|
|
|
|
// remaning frames in the group / clip.
|
2014-04-17 01:53:55 +02:00
|
|
|
//
|
2014-04-15 03:06:52 +02:00
|
|
|
// This method can give rise to unstable behaviour near the end of a clip
|
|
|
|
// or kf/gf group of frames where any accumulated error is corrected over an
|
2014-04-17 01:53:55 +02:00
|
|
|
// ever decreasing number of frames. Hence we change the balance of target
|
|
|
|
// vs. actual bitrate gradually as we progress towards the end of the
|
|
|
|
// sequence in order to mitigate this effect.
|
|
|
|
const double progress =
|
|
|
|
(double)(cpi->twopass.stats_in - cpi->twopass.stats_in_start) /
|
|
|
|
(cpi->twopass.stats_in_end - cpi->twopass.stats_in_start);
|
|
|
|
const int bits_used = progress * cpi->rc.this_frame_target +
|
|
|
|
(1.0 - progress) * cpi->rc.projected_frame_size;
|
2014-04-03 19:22:58 +02:00
|
|
|
#endif
|
2014-04-15 03:06:52 +02:00
|
|
|
|
2014-04-02 02:31:59 +02:00
|
|
|
cpi->twopass.bits_left -= bits_used;
|
|
|
|
cpi->twopass.bits_left = MAX(cpi->twopass.bits_left, 0);
|
2014-04-15 03:06:52 +02:00
|
|
|
|
|
|
|
#ifdef LONG_TERM_VBR_CORRECTION
|
|
|
|
if (cpi->common.frame_type != KEY_FRAME) {
|
|
|
|
#else
|
2014-04-02 02:31:59 +02:00
|
|
|
if (cpi->common.frame_type == KEY_FRAME) {
|
|
|
|
// For key frames kf_group_bits already had the target bits subtracted out.
|
|
|
|
// So now update to the correct value based on the actual bits used.
|
|
|
|
cpi->twopass.kf_group_bits += cpi->rc.this_frame_target - bits_used;
|
|
|
|
} else {
|
2014-04-15 03:06:52 +02:00
|
|
|
#endif
|
2014-04-02 02:31:59 +02:00
|
|
|
cpi->twopass.kf_group_bits -= bits_used;
|
|
|
|
cpi->twopass.gf_group_bits -= bits_used;
|
2014-02-04 20:42:50 +01:00
|
|
|
cpi->twopass.gf_group_bits = MAX(cpi->twopass.gf_group_bits, 0);
|
|
|
|
}
|
2014-04-02 02:31:59 +02:00
|
|
|
cpi->twopass.kf_group_bits = MAX(cpi->twopass.kf_group_bits, 0);
|
2013-11-27 00:47:43 +01:00
|
|
|
}
|