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:
Jonathan Neuschäfer 2012-05-22 23:40:43 +02:00 committed by Max Kellermann
parent 8b6b25220d
commit cca9bc5176
1 changed files with 1 additions and 1 deletions

View File

@ -344,7 +344,7 @@ ffmpeg_send_packet(struct decoder *decoder, struct input_stream *is,
if (len < 0) {
/* if error, we skip the frame */
g_message("decoding failed\n");
g_message("decoding failed, frame skipped\n");
break;
}