Commit cca9bc51 authored by Jonathan Neuschäfer's avatar Jonathan Neuschäfer Committed by Max Kellermann

decoder/ffmpeg: improve "decoding failed" message

"Frame skipped" might cause the impression that the decoding of a whole song failed.
parent 8b6b2522
...@@ -344,7 +344,7 @@ ffmpeg_send_packet(struct decoder *decoder, struct input_stream *is, ...@@ -344,7 +344,7 @@ ffmpeg_send_packet(struct decoder *decoder, struct input_stream *is,
if (len < 0) { if (len < 0) {
/* if error, we skip the frame */ /* if error, we skip the frame */
g_message("decoding failed\n"); g_message("decoding failed, frame skipped\n");
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment