Small refactoring.

This commit is contained in:
Pavel Krajcevski 2013-09-30 12:39:26 -04:00
parent 03f693f104
commit 219777687f

View file

@ -156,14 +156,10 @@ static double CompressImageInSerial(
stopWatch.Reset();
stopWatch.Start();
// !FIXME! We're assuming that we have 4x4 blocks here...
CompressionJob cj (imgData, outBuf, imgWidth, imgHeight);
if(fStats && settings.logStream) {
// !FIXME! Actually use the stat manager...
//(*fStats)(cj, *(settings.pStatManager));
(*fStats)(cj, settings.logStream);
}
else {
} else {
(*f)(cj);
}