Browse Source

lavfi/curves: fix a spacing weirdness.

tags/n2.0
Clément Bœsch 13 years ago
parent
commit
a1e798ef0a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_curves.c

+ 1
- 1
libavfilter/vf_curves.c View File

@@ -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 }
};



Loading…
Cancel
Save