Replace tabs with spaces.
This commit is contained in:
@ -77,7 +77,7 @@ struct Chanpat
|
|||||||
|
|
||||||
struct Pattern
|
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 transformed; // if 0, deltas are unsigned and no transform; otherwise, signed and transformed
|
||||||
int mode; // associated mode value
|
int mode; // associated mode value
|
||||||
int modebits; // number of mode bits
|
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);
|
decompress_endpts(compressed, uncompressed, p);
|
||||||
|
|
||||||
for (int j=0; j<NREGIONS_TWO; ++j)
|
for (int j=0; j<NREGIONS_TWO; ++j)
|
||||||
|
{
|
||||||
for (int i=0; i<NCHANNELS; ++i)
|
for (int i=0; i<NCHANNELS; ++i)
|
||||||
{
|
{
|
||||||
if (orig[j].A[i] != uncompressed[j].A[i]) return false;
|
if (orig[j].A[i] != uncompressed[j].A[i]) return false;
|
||||||
if (orig[j].B[i] != uncompressed[j].B[i]) return false;
|
if (orig[j].B[i] != uncompressed[j].B[i]) return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user