Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrogerdpack <rogerpack2005@gmail.com>2015-06-25 09:24:31 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-06-25 15:18:31 +0300
commit87961eff23abf710b575488ac62ee7d121a4ea07 (patch)
treee6d5d6080005eb5a47dadb7f8b930c976f08a7d3 /ffmpeg.c
parent803bdc546942890ce71e6bbcd339b964fb076c79 (diff)
modify exit message when signaled
Signed-off-by: rogerdpack <rogerpack2005@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index fae5f0f08c..f537ce9c5d 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -530,7 +530,7 @@ static void ffmpeg_cleanup(int ret)
avformat_network_deinit();
if (received_sigterm) {
- av_log(NULL, AV_LOG_INFO, "Received signal %d: terminating.\n",
+ av_log(NULL, AV_LOG_INFO, "Exiting normally, received signal %d.\n",
(int) received_sigterm);
} else if (ret && transcode_init_done) {
av_log(NULL, AV_LOG_INFO, "Conversion failed!\n");