Replace tabs with spaces.

This commit is contained in:
castano 2010-06-24 07:17:36 +00:00
parent ed3feef32b
commit 581a1e67d9
2 changed files with 1117 additions and 1115 deletions

View File

@ -77,7 +77,7 @@ struct Chanpat
struct Pattern
{
Chanpat chan[NCHANNELS];// allow different bit patterns per channel -- but we still want constant precision per channel
Chanpat chan[NCHANNELS]; // allow different bit patterns per channel -- but we still want constant precision per channel
int transformed; // if 0, deltas are unsigned and no transform; otherwise, signed and transformed
int mode; // associated mode value
int modebits; // number of mode bits
@ -239,11 +239,13 @@ static bool endpts_fit(const IntEndpts orig[NREGIONS_TWO], const ComprEndpts com
decompress_endpts(compressed, uncompressed, p);
for (int j=0; j<NREGIONS_TWO; ++j)
{
for (int i=0; i<NCHANNELS; ++i)
{
if (orig[j].A[i] != uncompressed[j].A[i]) return false;
if (orig[j].B[i] != uncompressed[j].B[i]) return false;
}
}
return true;
}