Skip to content

Commit

Permalink
Merge pull request #15 from randomze/fix_stats_printing
Browse files Browse the repository at this point in the history
Update flow control to print CTU stats to stats file when the stats-file-prefix is set
  • Loading branch information
Jovasa authored Jan 22, 2024
2 parents e5e32d6 + 9bc8e59 commit 63da667
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/encoder_state-bitstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 63da667

Please sign in to comment.