diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 12:42:18 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-04-11 13:05:06 +0200 |
commit | a1e798ef0a5f5c4cfa58cef436a02e07fb238733 (patch) | |
tree | 3e8902b51da7dade6a8cbc7e8c9227e811150942 /libavfilter | |
parent | c66c92add6fa07c4d21af1379c2681c402ad981c (diff) | |
download | ffmpeg-a1e798ef0a5f5c4cfa58cef436a02e07fb238733.tar.gz |
lavfi/curves: fix a spacing weirdness.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_curves.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_curves.c b/libavfilter/vf_curves.c index 5cd3f52c18..d0a8ebc4e3 100644 --- a/libavfilter/vf_curves.c +++ b/libavfilter/vf_curves.c @@ -77,7 +77,7 @@ static const AVOption curves_options[] = { { "g", "set green points coordinates", OFFSET(comp_points_str[1]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS }, { "blue", "set blue points coordinates", OFFSET(comp_points_str[2]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS }, { "b", "set blue points coordinates", OFFSET(comp_points_str[2]), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS }, - { "all", "set points coordinates for all components", OFFSET(comp_points_str_all),AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS }, + { "all", "set points coordinates for all components", OFFSET(comp_points_str_all), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS }, { NULL } }; |