From 0fcdcdb3265b7e60ab8aa9443c50d0e367a3a2d1 Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Fri, 6 Jun 2025 16:11:18 -0500 Subject: [PATCH] Removing debug code --- src/FFmpegWriter.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/FFmpegWriter.cpp b/src/FFmpegWriter.cpp index 2de65257..79cbc21c 100644 --- a/src/FFmpegWriter.cpp +++ b/src/FFmpegWriter.cpp @@ -1336,7 +1336,6 @@ void FFmpegWriter::open_audio(AVFormatContext *oc, AVStream *st) { // Audio encoding does not typically use more than 2 threads (most codecs use 1 thread) audio_codec_ctx->thread_count = std::min(FF_AUDIO_NUM_PROCESSORS, 2); - std::cout << "FFmpegWriter audio thread_count: " << audio_codec_ctx->thread_count << std::endl; // Find the audio encoder codec = avcodec_find_encoder_by_name(info.acodec.c_str());