Commit fed0aceb authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: print an error at the end if conversion failed

Fixes Ticket3477
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 68c3e602
......@@ -517,6 +517,8 @@ static void ffmpeg_cleanup(int ret)
if (received_sigterm) {
av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
(int) received_sigterm);
} else if (ret) {
av_log(NULL, AV_LOG_INFO, "Conversion failed!\n");
}
term_exit();
}
......
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