]> git.sesse.net Git - nageru/commitdiff
Remove an informational message that has no value to the user.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 1 Oct 2023 09:48:16 +0000 (11:48 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Sun, 1 Oct 2023 09:48:16 +0000 (11:48 +0200)
nageru/quicksync_encoder.cpp

index a1894595e548f577d7ea6eb8a088c057fb642953..9c6e40ceb515baf146fa8743bdf74511d1f213ad 100644 (file)
@@ -1859,7 +1859,6 @@ void QuickSyncEncoderImpl::encode_remaining_frames_as_p(int encoding_frame_num,
                assert(display_frame_num > 0);
                PendingFrame frame = move(pending_frame.second);
                int64_t dts = last_dts + (TIMEBASE / TYPICAL_FPS);
-               printf("Finalizing encode: Encoding leftover frame %d as P-frame instead of B-frame.\n", display_frame_num);
                encode_frame(frame, encoding_frame_num++, display_frame_num, gop_start_display_frame_num, FRAME_P, frame.pts, dts, frame.duration, frame.ycbcr_coefficients);
                last_dts = dts;
        }