From 685a74b4a2e928670eb5fb53919bbcffca45c8e3 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 7 Sep 2023 21:45:56 +0200 Subject: [PATCH] Fix a warning wording in FFmpegCapture. --- nageru/ffmpeg_capture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nageru/ffmpeg_capture.cpp b/nageru/ffmpeg_capture.cpp index 384ecdb..79fba7b 100644 --- a/nageru/ffmpeg_capture.cpp +++ b/nageru/ffmpeg_capture.cpp @@ -657,7 +657,7 @@ bool FFmpegCapture::play_video(const string &pathname) pathname, video_stream_index, audio_stream_index, subtitle_stream_index, audio_frame.get(), &audio_format, &audio_pts, &error); if (error) { if (++consecutive_errors >= 100) { - fprintf(stderr, "More than 100 consecutive video frames, aborting playback.\n"); + fprintf(stderr, "More than 100 consecutive error video frames, aborting playback.\n"); return false; } else { continue; -- 2.39.2