dvb-format-convert: Fix help message
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sat, 4 Oct 2014 11:55:21 +0000 (08:55 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sat, 4 Oct 2014 11:55:21 +0000 (08:55 -0300)
There are two issues on its help message:

1) There's a cut-and-paste error for the output format help;
2) Output now supports the vdr format.

Fix them.

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
utils/dvb/dvb-format-convert.c

index eecc77a..2b2287f 100644 (file)
@@ -44,8 +44,8 @@ struct arguments {
 };
 
 static const struct argp_option options[] = {
-       {"input-format",        'I',    "format",       0, "Input format: ZAP, CHANNEL, DVBV5", 0},
-       {"output-format",       'O',    "format",       0, "Input format: ZAP, CHANNEL, DVBV5", 0},
+       {"input-format",        'I',    "format",       0, "Valid input formats: ZAP, CHANNEL, DVBV5", 0},
+       {"output-format",       'O',    "format",       0, "Valid output formats: VDR, ZAP, CHANNEL, DVBV5", 0},
        {"delsys",              's',    "system",       0, "Delivery system type. Needed if input or output format is ZAP", 0},
        { 0, 0, 0, 0, 0, 0 }
 };