Skip to content
Snippets Groups Projects
Commit fed0aceb authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

ffmpeg: print an error at the end if conversion failed


Fixes Ticket3477

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 68c3e602
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment