comparison Framework/Outputs/HierarchicalTiffWriter.cpp @ 145:0b7e7be7d655

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 23 Apr 2018 16:21:58 +0200
parents a0f9a3df1110
children 6b8ccfc02051
comparison
equal deleted inserted replaced
144:95832e6c4368 145:0b7e7be7d655
384 ImageCompression compression, 384 ImageCompression compression,
385 unsigned int tileWidth, 385 unsigned int tileWidth,
386 unsigned int tileHeight) : 386 unsigned int tileHeight) :
387 PyramidWriterBase(pixelFormat, compression, tileWidth, tileHeight), 387 PyramidWriterBase(pixelFormat, compression, tileWidth, tileHeight),
388 currentLevel_(0), 388 currentLevel_(0),
389 nextX_(0),
390 nextY_(0),
389 isFirst_(true) 391 isFirst_(true)
390 { 392 {
391 tiff_ = TIFFOpen(path.c_str(), "w"); 393 tiff_ = TIFFOpen(path.c_str(), "w");
392 if (tiff_ == NULL) 394 if (tiff_ == NULL)
393 { 395 {