diff options
author | Lou Logan <lou@lrcd.com> | 2019-09-27 12:19:24 -0800 |
---|---|---|
committer | Lou Logan <lou@lrcd.com> | 2019-10-01 10:43:37 -0800 |
commit | 61b7676bd5a6ae79e4a607a600d3741c84ec6d8a (patch) | |
tree | bc1c6aa6db395dbbd975a581a0759d21cc809bb6 | |
parent | 1b2ed0c392f12ae836ea3b8ae87a8e29ad6e967c (diff) | |
download | ffmpeg-streaming-61b7676bd5a6ae79e4a607a600d3741c84ec6d8a.zip ffmpeg-streaming-61b7676bd5a6ae79e4a607a600d3741c84ec6d8a.tar.gz |
cmdutils: trailing options may be ignored
Signed-off-by: Lou Logan <lou@lrcd.com>
Signed-off-by: mypopy <mypopy@gmail.com>
-rw-r--r-- | fftools/cmdutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index 6f4031f..84f98b7 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -848,8 +848,8 @@ do { \ } if (octx->cur_group.nb_opts || codec_opts || format_opts || resample_opts) - av_log(NULL, AV_LOG_WARNING, "Trailing options were found on the " - "commandline.\n"); + av_log(NULL, AV_LOG_WARNING, "Trailing option(s) found in the " + "command: may be ignored.\n"); av_log(NULL, AV_LOG_DEBUG, "Finished splitting the commandline.\n"); |