From: Steinar H. Gunderson Date: Thu, 7 Sep 2023 19:45:56 +0000 (+0200) Subject: Fix a warning wording in FFmpegCapture. X-Git-Tag: 2.3.0~19 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=685a74b4a2e928670eb5fb53919bbcffca45c8e3 Fix a warning wording in FFmpegCapture. --- 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;