On Mon, Feb 15, 2016 at 04:44:35PM +0200, Laurent Pinchart wrote: > Hi Sakari, > > Thank you for the patch. > > On Monday 25 January 2016 14:39:45 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@xxxxxxxxxxxxxxx> > > --- > > utils/media-ctl/options.c | 42 ++++++++++++++++++++++++++++++++++++++---- > > 1 file changed, 38 insertions(+), 4 deletions(-) > > > > diff --git a/utils/media-ctl/options.c b/utils/media-ctl/options.c > > index 0afc9c2..c67052d 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> > > > > @@ -45,7 +47,8 @@ static void usage(const char *argv0) > > printf("-V, --set-v4l2 v4l2 Comma-separated list of formats to setup\n"); > > printf(" --get-v4l2 pad Print the active format on a given pad\n"); > > printf(" --set-dv pad Configure DV timings on a given pad\n"); > > - printf("-h, --help Show verbose help and exit\n"); > > + printf("-h, --help[=topic] Show verbose help and exit\n"); > > + printf(" topics: mbus-fmt: List supported media bus pixel > codes\n"); > > printf("-i, --interactive Modify links interactively\n"); > > printf("-l, --links links Comma-separated list of link descriptors to > > setup\n"); printf("-p, --print-topology Print the device topology\n"); > > @@ -100,7 +103,7 @@ static struct option opts[] = { > > {"get-format", 1, 0, OPT_GET_FORMAT}, > > {"get-v4l2", 1, 0, OPT_GET_FORMAT}, > > {"set-dv", 1, 0, OPT_SET_DV}, > > - {"help", 0, 0, 'h'}, > > + {"help", 2, 0, 'h'}, > > {"interactive", 0, 0, 'i'}, > > {"links", 1, 0, 'l'}, > > {"print-dot", 0, 0, OPT_PRINT_DOT}, > > @@ -110,6 +113,27 @@ static struct option opts[] = { > > { }, > > }; > > > > +void list_mbus_formats(void) > > +{ > > + unsigned int i; > > + > > + printf("Supported media bus pixel codes\n"); > > + > > + for (i = 0; ; i++) { > > + unsigned int code = v4l2_subdev_pixelcode_list()[i]; > > How about calling the function outside of the loop ? The function only returns an existing array. I could change it, but please give a reason why. :-) -- Sakari Ailus e-mail: sakari.ailus@xxxxxx XMPP: sailus@xxxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html