/alps/ufodecode

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ufodecode

« back to all changes in this revision

Viewing changes to src/ufodecode.c

  • Committer: Matthias Vogelgesang
  • Date: 2012-07-26 10:17:34 UTC
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: matthias.vogelgesang@kit.edu-20120726101734-oxfbdiwy2i0xcmym
Undo last commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
159
159
#ifdef CHECKS
160
160
        int header = (info >> 30) & 0x03;
161
161
        const int bpp = (info >> 16) & 0x0F;
 
162
        int err;
162
163
        CHECK_FLAG("raw header magick", header == 2, header);
163
164
        CHECK_FLAG("row number, only %i rows requested", row < num_rows, row, num_rows);
164
165
        CHECK_FLAG("pixel size, only 10 bits are supported", bpp == 10, bpp);