Skip to content

Commit

Permalink
fix whitespace to minimize diff
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Leprince <[email protected]>
  • Loading branch information
pleprince committed Feb 20, 2024
1 parent 555131e commit d961e74
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/lib/OpenEXR/ImfCompressor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,17 +104,17 @@ newCompressor (Compression c, size_t maxScanLineSize, const Header& hdr)
case DWAA_COMPRESSION:

return new DwaCompressor (
hdr,
static_cast<int> (maxScanLineSize),
32,
hdr,
static_cast<int> (maxScanLineSize),
32,
DwaCompressor::STATIC_HUFFMAN);

case DWAB_COMPRESSION:

return new DwaCompressor (
hdr,
static_cast<int> (maxScanLineSize),
256,
hdr,
static_cast<int> (maxScanLineSize),
256,
DwaCompressor::STATIC_HUFFMAN);

default: return 0;
Expand Down Expand Up @@ -169,17 +169,17 @@ newTileCompressor (
case DWAA_COMPRESSION:

return new DwaCompressor (
hdr,
static_cast<int> (tileLineSize),
static_cast<int> (numTileLines),
hdr,
static_cast<int> (tileLineSize),
static_cast<int> (numTileLines),
DwaCompressor::DEFLATE);

case DWAB_COMPRESSION:

return new DwaCompressor (
hdr,
static_cast<int> (tileLineSize),
static_cast<int> (numTileLines),
hdr,
static_cast<int> (tileLineSize),
static_cast<int> (numTileLines),
DwaCompressor::STATIC_HUFFMAN);

default: return 0;
Expand Down

0 comments on commit d961e74

Please sign in to comment.