Update flow control to print CTU stats to stats file when the stats-file-prefix is set

This commit is contained in:
José Pedro 2024-01-19 09:52:16 +01:00
parent e5e32d67f4
commit 9bc8e59bcf

View file

@ -53,6 +53,7 @@
#include "threadqueue.h"
#include "videoframe.h"
#include "reshape.h"
#include "rate_control.h"
#define JVET_S0266_VUI_length 1
#define LUMA_ADAPTIVE_DEBLOCKING_FILTER_QP_OFFSET 1
@ -1574,6 +1575,9 @@ static void encoder_state_write_bitstream_main(encoder_state_t * const state)
state->frame->total_bits_coded = state->previous_encoder_state->frame->total_bits_coded;
}
state->frame->total_bits_coded += newpos - curpos;
if(state->encoder_control->cfg.stats_file_prefix) {
uvg_update_after_picture(state);
}
state->frame->cur_gop_bits_coded = state->previous_encoder_state->frame->cur_gop_bits_coded;
state->frame->cur_gop_bits_coded += newpos - curpos;