Skip to content

Commit

Permalink
Merge pull request #3 from darealshinji/patch-1
Browse files Browse the repository at this point in the history
comment out unused variables
  • Loading branch information
mawen1250 committed Oct 29, 2014
2 parents d4aa7bc + a13e623 commit a67df07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/MSRCP.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void MSRCPProcess::process_core()
T dFloor = d.fulld ? 0 : 16 << (bps - 8);
//T dFloorC = d.fulld ? 0 : 16 << (bps - 8);
int dNeutral = 128 << (bps - 8);
T dCeil = d.fulld ? (1 << bps) - 1 : 235 << (bps - 8);
//T dCeil = d.fulld ? (1 << bps) - 1 : 235 << (bps - 8);
//T dCeilC = d.fulld ? (1 << bps) - 1 : 240 << (bps - 8);
T dRange = d.fulld ? (1 << bps) - 1 : 219 << (bps - 8);
T dRangeC = d.fulld ? (1 << bps) - 1 : 224 << (bps - 8);
Expand Down Expand Up @@ -421,4 +421,4 @@ void MSRCPProcess::process_core()
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


#endif
#endif
4 changes: 2 additions & 2 deletions source/MSR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ int MSRProcess::MSRKernel(FLType *odata, const FLType *idata) const
{
int i, j, upper;

FLType FloorFL = 0;
FLType CeilFL = 1;
//FLType FloorFL = 0;
//FLType CeilFL = 1;

FLType *gauss = vs_aligned_malloc<FLType>(sizeof(FLType)*pcount, Alignment);

Expand Down

0 comments on commit a67df07

Please sign in to comment.