diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-07-21 10:45:09 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-07-22 10:28:23 +0200 |
commit | d5105278857c4948554a394c822e8d68799188bc (patch) | |
tree | 6a6deedab13cb8d7dbed5608537c8e0ce549c97e /libavdevice/caca.c | |
parent | 295e0e4b4f68c8ddee3e58579698c84dacb7e8c4 (diff) | |
download | ffmpeg-d5105278857c4948554a394c822e8d68799188bc.tar.gz |
lavd/caca: sort arguments for -list_dither
Diffstat (limited to 'libavdevice/caca.c')
-rw-r--r-- | libavdevice/caca.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavdevice/caca.c b/libavdevice/caca.c index 4ea34bbfbd..538b5ff24b 100644 --- a/libavdevice/caca.c +++ b/libavdevice/caca.c @@ -200,10 +200,10 @@ static const AVOption options[] = { { "true", NULL, 0, AV_OPT_TYPE_CONST, {.dbl = 1}, 0, 0, ENC, "list_drivers" }, { "false", NULL, 0, AV_OPT_TYPE_CONST, {.dbl = 0}, 0, 0, ENC, "list_drivers" }, { "list_dither", "list available dither options", OFFSET(list_dither), AV_OPT_TYPE_STRING, {.dbl=0}, 0, 1, ENC, "list_dither" }, - { "colors", NULL, 0, AV_OPT_TYPE_CONST, {.str = "colors"}, 0, 0, ENC, "list_dither" }, - { "charsets", NULL, 0, AV_OPT_TYPE_CONST, {.str = "charsets"}, 0, 0, ENC, "list_dither" }, - { "antialiases", NULL, 0, AV_OPT_TYPE_CONST, {.str = "antialiases"},0, 0, ENC, "list_dither" }, { "algorithms", NULL, 0, AV_OPT_TYPE_CONST, {.str = "algorithms"}, 0, 0, ENC, "list_dither" }, + { "antialiases", NULL, 0, AV_OPT_TYPE_CONST, {.str = "antialiases"},0, 0, ENC, "list_dither" }, + { "charsets", NULL, 0, AV_OPT_TYPE_CONST, {.str = "charsets"}, 0, 0, ENC, "list_dither" }, + { "colors", NULL, 0, AV_OPT_TYPE_CONST, {.str = "colors"}, 0, 0, ENC, "list_dither" }, { NULL }, }; |