Skip to content

Commit

Permalink
context: print encoder infrmation to log file
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyingWombat committed Jan 5, 2024
1 parent 8f09eff commit 50cda6c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions av1an-core/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,14 @@ impl Av1anContext {
self.args.video_params.join(" ")
);
}
info!(
"Queue {} Workers {} Passes {} Encoder {}\nParams: {}",
chunk_queue.len(),
self.args.workers,
self.args.passes,
self.args.encoder,
self.args.video_params.join(" ")
);

if self.args.verbosity == Verbosity::Normal {
init_progress_bar(self.frames as u64, initial_frames as u64);
Expand Down

0 comments on commit 50cda6c

Please sign in to comment.