diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-07-21 10:44:40 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-22 10:28:23 +0200 |
commit | 295e0e4b4f68c8ddee3e58579698c84dacb7e8c4 (patch) | |
tree | 64719d25d4902e2b982a7c2685c703715290b0b4 /libavdevice | |
parent | 2fd880449a181b67e905b48fcbf08963312d2f0c (diff) | |
download | ffmpeg-295e0e4b4f68c8ddee3e58579698c84dacb7e8c4.tar.gz |
lavd/caca: extend error message for -list_dither option
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/caca.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavdevice/caca.c b/libavdevice/caca.c index 2cd9e56a96..4ea34bbfbd 100644 --- a/libavdevice/caca.c +++ b/libavdevice/caca.c @@ -102,7 +102,8 @@ static int caca_write_header(AVFormatContext *s) list_dither_antialias(c); } else { av_log(s, AV_LOG_ERROR, - "Invalid value '%s', for 'list_dither' option\n", + "Invalid argument '%s', for 'list_dither' option\n" + "Argument must be one of 'algorithms, 'antialiases', 'charsets', 'colors'\n", c->list_dither); return AVERROR(EINVAL); } |