Message ID | 1456331128-7036-5-git-send-email-sakari.ailus@linux.intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Sakari, Thank you for the patch. On Wednesday 24 February 2016 18:25:28 Sakari Ailus wrote: > Add a new topic option for -h to allow listing supported media bus codes > in conversion functions. This is useful in figuring out which media bus > codes are actually supported by the library. The numeric values of the > codes are listed as well. > > Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> > --- > utils/media-ctl/options.c | 39 +++++++++++++++++++++++++++++++++++---- > 1 file changed, 35 insertions(+), 4 deletions(-) > > diff --git a/utils/media-ctl/options.c b/utils/media-ctl/options.c > index 0afc9c2..ac78564 100644 > --- a/utils/media-ctl/options.c > +++ b/utils/media-ctl/options.c > @@ -22,7 +22,9 @@ > #include <getopt.h> > #include <stdio.h> > #include <stdlib.h> > +#include <string.h> > #include <unistd.h> > +#include <v4l2subdev.h> > > #include <linux/videodev2.h> > > @@ -48,6 +50,7 @@ static void usage(const char *argv0) > printf("-h, --help Show verbose help and exit\n"); > printf("-i, --interactive Modify links interactively\n"); > printf("-l, --links links Comma-separated list of link descriptors to > setup\n"); > + printf(" --known-mbus-fmts List known media bus formats and their > numeric values\n"); I still prefer help topics :-( The rest looks good to me, so Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> but if we can convince Hans about --help= please use that :-) > printf("-p, --print-topology Print the device topology\n"); > printf(" --print-dot Print the device topology as a dot > graph\n"); > printf("-r, --reset Reset all links to inactive\n"); > @@ -88,9 +91,10 @@ static void usage(const char *argv0) > v4l2_subdev_field_to_string(i)); > } > > -#define OPT_PRINT_DOT 256 > -#define OPT_GET_FORMAT 257 > -#define OPT_SET_DV 258 > +#define OPT_PRINT_DOT 256 > +#define OPT_GET_FORMAT 257 > +#define OPT_SET_DV 258 > +#define OPT_LIST_KNOWN_MBUS_FMTS 259 > > static struct option opts[] = { > {"device", 1, 0, 'd'}, > @@ -103,6 +107,7 @@ static struct option opts[] = { > {"help", 0, 0, 'h'}, > {"interactive", 0, 0, 'i'}, > {"links", 1, 0, 'l'}, > + {"known-mbus-fmts", 0, 0, OPT_LIST_KNOWN_MBUS_FMTS}, > {"print-dot", 0, 0, OPT_PRINT_DOT}, > {"print-topology", 0, 0, 'p'}, > {"reset", 0, 0, 'r'}, > @@ -110,6 +115,27 @@ static struct option opts[] = { > { }, > }; > > +static void list_known_mbus_formats(void) > +{ > + unsigned int ncodes; > + const unsigned int *code = v4l2_subdev_pixelcode_list(&ncodes); > + > + while (ncodes--) { > + const char *str = v4l2_subdev_pixelcode_to_string(*code); > + int spaces = 30 - (int)strlen(str); > + > + if (*code == 0) > + break; > + > + if (spaces < 0) > + spaces = 0; > + > + printf("%s %*c 0x%8.8x\n", str, spaces, ' ', *code); > + > + code++; > + } > +} > + > int parse_cmdline(int argc, char **argv) > { > int opt; > @@ -120,7 +146,8 @@ int parse_cmdline(int argc, char **argv) > } > > /* parse options */ > - while ((opt = getopt_long(argc, argv, "d:e:f:hil:prvV:", opts, NULL)) != > -1) { > + while ((opt = getopt_long(argc, argv, "d:e:f:hil:prvV:", > + opts, NULL)) != -1) { > switch (opt) { > case 'd': > media_opts.devname = optarg; > @@ -177,6 +204,10 @@ int parse_cmdline(int argc, char **argv) > media_opts.dv_pad = optarg; > break; > > + case OPT_LIST_KNOWN_MBUS_FMTS: > + list_known_mbus_formats(); > + exit(0); > + > default: > printf("Invalid option -%c\n", opt); > printf("Run %s -h for help.\n", argv[0]);
Hi Laurent and Hans, On Thu, Feb 25, 2016 at 11:38:02PM +0200, Laurent Pinchart wrote: ... > > @@ -48,6 +50,7 @@ static void usage(const char *argv0) > > printf("-h, --help Show verbose help and exit\n"); > > printf("-i, --interactive Modify links interactively\n"); > > printf("-l, --links links Comma-separated list of link descriptors to > > setup\n"); > > + printf(" --known-mbus-fmts List known media bus formats and their > > numeric values\n"); > > I still prefer help topics :-( The rest looks good to me, so > > Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > > but if we can convince Hans about --help= please use that :-) Hans: would you be even slightly convincible? GCC, for instance, does that as well, and I believe it's not the only one: 23:46:52 lanttu sailus [/tmp]gcc --help|grep help --help Display this information --target-help Display target specific command line options --help={common|optimizers|params|target|warnings|[^]{joined|separate|undocumented}}[,...] (Use '-v --help' to display command line options of sub-processes)
Hi Laurent, On Thu, Feb 25, 2016 at 11:38:02PM +0200, Laurent Pinchart wrote: ... > > +static void list_known_mbus_formats(void) > > +{ > > + unsigned int ncodes; > > + const unsigned int *code = v4l2_subdev_pixelcode_list(&ncodes); > > + > > + while (ncodes--) { > > + const char *str = v4l2_subdev_pixelcode_to_string(*code); > > + int spaces = 30 - (int)strlen(str); > > + > > + if (*code == 0) > > + break; > > + > > + if (spaces < 0) > > + spaces = 0; > > + > > + printf("%s %*c 0x%8.8x\n", str, spaces, ' ', *code); > > + > > + code++; > > + } > > +} I remember I intended to change s/8\.8/4.4/ but I forgot to do that to this version. I'll resubmit.
diff --git a/utils/media-ctl/options.c b/utils/media-ctl/options.c index 0afc9c2..ac78564 100644 --- a/utils/media-ctl/options.c +++ b/utils/media-ctl/options.c @@ -22,7 +22,9 @@ #include <getopt.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> +#include <v4l2subdev.h> #include <linux/videodev2.h> @@ -48,6 +50,7 @@ static void usage(const char *argv0) printf("-h, --help Show verbose help and exit\n"); printf("-i, --interactive Modify links interactively\n"); printf("-l, --links links Comma-separated list of link descriptors to setup\n"); + printf(" --known-mbus-fmts List known media bus formats and their numeric values\n"); printf("-p, --print-topology Print the device topology\n"); printf(" --print-dot Print the device topology as a dot graph\n"); printf("-r, --reset Reset all links to inactive\n"); @@ -88,9 +91,10 @@ static void usage(const char *argv0) v4l2_subdev_field_to_string(i)); } -#define OPT_PRINT_DOT 256 -#define OPT_GET_FORMAT 257 -#define OPT_SET_DV 258 +#define OPT_PRINT_DOT 256 +#define OPT_GET_FORMAT 257 +#define OPT_SET_DV 258 +#define OPT_LIST_KNOWN_MBUS_FMTS 259 static struct option opts[] = { {"device", 1, 0, 'd'}, @@ -103,6 +107,7 @@ static struct option opts[] = { {"help", 0, 0, 'h'}, {"interactive", 0, 0, 'i'}, {"links", 1, 0, 'l'}, + {"known-mbus-fmts", 0, 0, OPT_LIST_KNOWN_MBUS_FMTS}, {"print-dot", 0, 0, OPT_PRINT_DOT}, {"print-topology", 0, 0, 'p'}, {"reset", 0, 0, 'r'}, @@ -110,6 +115,27 @@ static struct option opts[] = { { }, }; +static void list_known_mbus_formats(void) +{ + unsigned int ncodes; + const unsigned int *code = v4l2_subdev_pixelcode_list(&ncodes); + + while (ncodes--) { + const char *str = v4l2_subdev_pixelcode_to_string(*code); + int spaces = 30 - (int)strlen(str); + + if (*code == 0) + break; + + if (spaces < 0) + spaces = 0; + + printf("%s %*c 0x%8.8x\n", str, spaces, ' ', *code); + + code++; + } +} + int parse_cmdline(int argc, char **argv) { int opt; @@ -120,7 +146,8 @@ int parse_cmdline(int argc, char **argv) } /* parse options */ - while ((opt = getopt_long(argc, argv, "d:e:f:hil:prvV:", opts, NULL)) != -1) { + while ((opt = getopt_long(argc, argv, "d:e:f:hil:prvV:", + opts, NULL)) != -1) { switch (opt) { case 'd': media_opts.devname = optarg; @@ -177,6 +204,10 @@ int parse_cmdline(int argc, char **argv) media_opts.dv_pad = optarg; break; + case OPT_LIST_KNOWN_MBUS_FMTS: + list_known_mbus_formats(); + exit(0); + default: printf("Invalid option -%c\n", opt); printf("Run %s -h for help.\n", argv[0]);
Add a new topic option for -h to allow listing supported media bus codes in conversion functions. This is useful in figuring out which media bus codes are actually supported by the library. The numeric values of the codes are listed as well. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> --- utils/media-ctl/options.c | 39 +++++++++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-)