decoder/ffmpeg: improve "decoding failed" message
"Frame skipped" might cause the impression that the decoding of a whole song failed.
This commit is contained in:
parent
8b6b25220d
commit
cca9bc5176
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue