~ubuntu-branches/debian/sid/v4l-utils/sid

« back to all changes in this revision

Viewing changes to utils/dvb/dvb-format-convert.c

  • Committer: Package Import Robot
  • Author(s): Gregor Jasny
  • Date: 2012-04-14 19:42:06 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20120414194206-nmgagyd9wc5dz0br
Tags: 0.8.8-1
* Imported Upstream version 0.8.8
  - Revert Lenovo X201 upside down table entry (Closes: #667958)
  - libv4lconvert: Use bytesperline instead of width
  - libv4lconver: Add 06f8:301b pac7302 based cam to the quirk table
  - tinyjpeg: Better luminance quantization table for Pixart JPEG
  - tinyjpeg: Fix out of bounds array usage
* Add DVB tools package

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
                .options = options,
100
100
                .parser = parse_opt,
101
101
                .doc = "scan DVB services using the channel file",
102
 
                .args_doc = "<initial file>",
 
102
                .args_doc = "<input file> <output file>",
103
103
        };
104
104
 
105
105
        memset(&args, 0, sizeof(args));
113
113
        if (args.input_format == FILE_UNKNOWN) {
114
114
                fprintf(stderr, "ERROR: Please specify a valid input format\n");
115
115
                missing = 1;
116
 
        } else if (!args.output_file) {
 
116
        } else if (!args.input_file) {
117
117
                fprintf(stderr, "ERROR: Please specify a valid input file\n");
118
118
                missing = 1;
119
119
        } else if (args.output_format == FILE_UNKNOWN) {