From fed0acebade8d27c428da5cad483cd6a5b64b354 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 31 Mar 2014 04:31:28 +0200 Subject: [PATCH] ffmpeg: print an error at the end if conversion failed Fixes Ticket3477 Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ffmpeg.c b/ffmpeg.c index 9edc721688..6f909555f9 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -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(); }