From 934fe00680a1139cbc0950641655af5923dd7763 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 10 Dec 2011 21:00:38 +0100 Subject: [PATCH] ffmpeg: better warning about loop_input Signed-off-by: Michael Niedermayer --- ffmpeg.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 9ba9d778a8..ee79e32039 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -3395,7 +3395,10 @@ static int opt_input_file(OptionsContext *o, const char *opt, const char *filena ic->interrupt_callback = int_cb; if (loop_input) { - av_log(NULL, AV_LOG_WARNING, "-loop_input is deprecated, use -loop 1\n"); + av_log(NULL, AV_LOG_WARNING, + "-loop_input is deprecated, use -loop 1\n" + "Note, both loop options only work with -f image2\n" + ); ic->loop_input = loop_input; }