ref: 47f558dd29d07520691530df42359f93cbe0818c
parent: 8075dea1e521b1776574f2aca00bf8a13c8cdea6
parent: 9f02ba36847738ebf824a6dcd609d354c08859ed
author: Jingning Han <[email protected]>
date: Wed Oct 24 20:01:35 EDT 2018
Merge "Fix frame offset computation for GOP extension"
--- a/vp9/encoder/vp9_encoder.c
+++ b/vp9/encoder/vp9_encoder.c
@@ -5382,6 +5382,7 @@
int arf_stack_size = 0;
int extend_frame_count = 0;
int pframe_qindex = cpi->tpl_stats[2].base_qindex;
+ int frame_gop_offset = 0;
RefCntBuffer *frame_bufs = cm->buffer_pool->frame_bufs;
int8_t recon_frame_index[REFS_PER_FRAME + MAX_ARF_LAYERS];
@@ -5435,9 +5436,9 @@
// Initialize P frames
for (frame_idx = 2; frame_idx < MAX_ARF_GOP_SIZE; ++frame_idx) {
- const int frame_gop_offset = gf_group->frame_gop_index[frame_idx];
- struct lookahead_entry *buf =
- vp9_lookahead_peek(cpi->lookahead, frame_gop_offset - 1);
+ struct lookahead_entry *buf;
+ frame_gop_offset = gf_group->frame_gop_index[frame_idx];
+ buf = vp9_lookahead_peek(cpi->lookahead, frame_gop_offset - 1);
if (buf == NULL) break;
@@ -5476,11 +5477,12 @@
alt_index = -1;
++frame_idx;
+ ++frame_gop_offset;
// Extend two frames outside the current gf group.
for (; frame_idx < MAX_LAG_BUFFERS && extend_frame_count < 2; ++frame_idx) {
struct lookahead_entry *buf =
- vp9_lookahead_peek(cpi->lookahead, frame_idx - 2);
+ vp9_lookahead_peek(cpi->lookahead, frame_gop_offset - 1);
if (buf == NULL) break;
@@ -5493,6 +5495,7 @@
lst_index = frame_idx;
++*tpl_group_frames;
++extend_frame_count;
+ ++frame_gop_offset;
}
}
--- a/vp9/encoder/vp9_ratectrl.c
+++ b/vp9/encoder/vp9_ratectrl.c
@@ -1486,7 +1486,7 @@
int idx;
const int gf_index = cpi->twopass.gf_group.index;
- for (idx = 1; idx < gop_length; ++idx) {
+ for (idx = 1; idx <= gop_length; ++idx) {
TplDepFrame *tpl_frame = &cpi->tpl_stats[idx];
int target_rate = cpi->twopass.gf_group.bit_allocation[idx];
cpi->twopass.gf_group.index = idx;