~ubuntu-branches/ubuntu/precise/v4l-utils/precise-updates

« back to all changes in this revision

Viewing changes to utils/v4l2-dbg/v4l2-dbg.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gregor Jasny
  • Date: 2011-01-26 22:35:38 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110126223538-v4qdqz7ihlrbc9up
Tags: 0.8.2-1
* Imported Upstream version 0.8.2
* Removed patches that got applied upstream
* Keytable maps file got renamed upstream. Adjusted sed command line.
* Updated copyright file
* Use upstream manpage for ir-keytable

Show diffs side-by-side

added added

removed removed

Lines of Context:
539
539
                printf("\tDriver name   : %s\n", vcap.driver);
540
540
                printf("\tCard type     : %s\n", vcap.card);
541
541
                printf("\tBus info      : %s\n", vcap.bus_info);
542
 
                printf("\tDriver version: %d\n", vcap.version);
 
542
                printf("\tDriver version: %d.%d.%d\n",
 
543
                                vcap.version >> 16,
 
544
                                (vcap.version >> 8) & 0xff,
 
545
                                vcap.version & 0xff);
543
546
                printf("\tCapabilities  : 0x%08X\n", vcap.capabilities);
544
547
                printf("%s", cap2s(vcap.capabilities).c_str());
545
548
        }
620
623
        }
621
624
 
622
625
        if (options[OptGetRegister]) {
623
 
                int stride = 1;
624
 
 
625
626
                get_reg.match = match;
626
627
                printf("ioctl: VIDIOC_DBG_G_REGISTER\n");
627
628