Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.

comment out an empty loop #77

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/lepton/idct.cc
Expand Up @@ -148,9 +148,9 @@ idct_scalar(const AlignedBlock &block, const uint16_t q[64], int16_t outp[64], b
outp[8*6+x] = (y3 - y2) >> 11;
outp[8*7+x] = (y7 - y1) >> 11;
}
for (int i = 0; i < 64;++i) {
//outp[i]>>=3;
}
//for (int i = 0; i < 64;++i) {
// outp[i]>>=3;
//}
}
#else /* At least SSE2 is available { */

Expand Down