From 62497c66f68816914f1397f69ce5cf883a9a34b4 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 7 Sep 2024 20:19:07 +1000 Subject: [PATCH] MediaCapture: Log video size --- src/util/media_capture.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/media_capture.cpp b/src/util/media_capture.cpp index a7f8c1bfc..49cf7852b 100644 --- a/src/util/media_capture.cpp +++ b/src/util/media_capture.cpp @@ -218,8 +218,8 @@ bool MediaCaptureBase::BeginCapture(float fps, float aspect, u32 width, u32 heig INFO_LOG("Initializing capture:"); if (capture_video) { - INFO_LOG(" Video: FPS={}, Aspect={}, Codec={}, Bitrate={}, Args={}", fps, aspect, video_codec, video_bitrate, - video_codec_args); + INFO_LOG(" Video: {}x{} FPS={}, Aspect={}, Codec={}, Bitrate={}, Args={}", width, height, fps, aspect, video_codec, + video_bitrate, video_codec_args); } if (capture_audio) {