diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-03-12 01:02:18 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-03-12 01:24:06 +0100 |
| commit | ef526ea3d6d6196f0e38ac9770504877388fc47a (patch) | |
| tree | e042b4d58fdeed7008db824c17c9b65209df7429 | |
| parent | 2cddb4609214da3264c0b2a68606d20317742f0c (diff) | |
Add a debug note.
| -rw-r--r-- | src/lib/ffmpeg_decoder.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc index 294db777d..d2540d17a 100644 --- a/src/lib/ffmpeg_decoder.cc +++ b/src/lib/ffmpeg_decoder.cc @@ -231,6 +231,8 @@ FFmpegDecoder::pass () av_packet_free (&packet); return flush() == FlushResult::DONE; + } else if (r == AVERROR_INVALIDDATA) { + LOG_DEBUG_PLAYER("DEC: av_read_frame gave INVALIDDATA but we carry on"); } int const si = packet->stream_index; |
