diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-12-05 21:36:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-12-05 21:36:53 +0100 |
| commit | 59e358ae25f84314afc6d8235aecaec124822f3f (patch) | |
| tree | 86a353b49bcc8b0cd5d3a9a4db4ca13e4f5f20f0 /src/lib/ffmpeg_decoder.cc | |
| parent | 15add8826db680f0e1ad13246e0411d5f83f5296 (diff) | |
Cleanup: can now remove the _NC log variants.
Diffstat (limited to 'src/lib/ffmpeg_decoder.cc')
| -rw-r--r-- | src/lib/ffmpeg_decoder.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/ffmpeg_decoder.cc b/src/lib/ffmpeg_decoder.cc index 024b87391..3764cbb46 100644 --- a/src/lib/ffmpeg_decoder.cc +++ b/src/lib/ffmpeg_decoder.cc @@ -113,7 +113,7 @@ FFmpegDecoder::flush () switch (_flush_state) { case FlushState::CODECS: if (flush_codecs() == FlushResult::DONE) { - LOG_DEBUG_PLAYER_NC("Finished flushing codecs"); + LOG_DEBUG_PLAYER("Finished flushing codecs"); _flush_state = FlushState::AUDIO_DECODER; } break; @@ -121,12 +121,12 @@ FFmpegDecoder::flush () if (audio) { audio->flush(); } - LOG_DEBUG_PLAYER_NC("Finished flushing audio decoder"); + LOG_DEBUG_PLAYER("Finished flushing audio decoder"); _flush_state = FlushState::FILL; break; case FlushState::FILL: if (flush_fill() == FlushResult::DONE) { - LOG_DEBUG_PLAYER_NC("Finished flushing fills"); + LOG_DEBUG_PLAYER("Finished flushing fills"); return FlushResult::DONE; } break; @@ -562,7 +562,7 @@ FFmpegDecoder::decode_and_process_audio_packet (AVPacket* packet) r = avcodec_receive_frame (context, frame); if (r == AVERROR(EAGAIN)) { /* More input is required */ - LOG_DEBUG_PLAYER_NC("EAGAIN after trying to receive audio frame"); + LOG_DEBUG_PLAYER("EAGAIN after trying to receive audio frame"); return; } @@ -630,7 +630,7 @@ FFmpegDecoder::process_video_frame () ContentTime::from_seconds(pts) ); } else { - LOG_WARNING_NC ("Dropping frame without PTS"); + LOG_WARNING ("Dropping frame without PTS"); } } } |
