comparison tools/gfxconv.c @ 1293:1dce9e5f4a2f

Oops, two options were overlapping, fixed.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Aug 2017 20:04:31 +0300
parents 2c4acbc3e7bf
children be30466fbc47
comparison
equal deleted inserted replaced
1292:92e99ea23811 1293:1dce9e5f4a2f
168 { 9, 'S', "scale", "Scale output image by <n> or <x>:<y> integer factor(s). " 168 { 9, 'S', "scale", "Scale output image by <n> or <x>:<y> integer factor(s). "
169 "-S <n> scales both height and width by <n>.", OPT_ARGREQ }, 169 "-S <n> scales both height and width by <n>.", OPT_ARGREQ },
170 { 12, 'P', "paletted", "Use indexed/paletted output IF possible.", OPT_NONE }, 170 { 12, 'P', "paletted", "Use indexed/paletted output IF possible.", OPT_NONE },
171 { 13, 'N', "nplanes", "# of bitplanes (some output formats)", OPT_ARGREQ }, 171 { 13, 'N', "nplanes", "# of bitplanes (some output formats)", OPT_ARGREQ },
172 { 18, 'B', "bpp", "Bits per pixel (some output formats)", OPT_ARGREQ }, 172 { 18, 'B', "bpp", "Bits per pixel (some output formats)", OPT_ARGREQ },
173 { 14, 'P', "planar", "Interleaved/planar output (some output formats)", OPT_NONE }, 173 { 14, 'I', "interleave", "Interleaved/planar output (some output formats)", OPT_NONE },
174 { 16, 'R', "remap", "Remap output image colors (-R <(#RRGGBB|index):index>[,<..>][+remove] | -R @map.txt[+remove])", OPT_ARGREQ }, 174 { 16, 'R', "remap", "Remap output image colors (-R <(#RRGGBB|index):index>[,<..>][+remove] | -R @map.txt[+remove])", OPT_ARGREQ },
175 }; 175 };
176 176
177 static const int optListN = sizeof(optList) / sizeof(optList[0]); 177 static const int optListN = sizeof(optList) / sizeof(optList[0]);
178 178