Changeset 738 in SHVCSoftware for branches


Ignore:
Timestamp:
25 Apr 2014, 00:33:51 (11 years ago)
Author:
seregin
Message:

code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibCommon/TCom3DAsymLUT.h

    r677 r738  
    100100  p[0] = new T*[xSize*ySize];
    101101  for( Int x = 1 ; x < xSize ; x++ )
     102  {
    102103    p[x] = p[x-1] + ySize;
     104  }
    103105  p[0][0] = new T[xSize*ySize*zSize];
    104106  for( Int x = 0 ; x < xSize ; x++ )
    105107  {
    106108    for( Int y = 0 ; y < ySize ; y++ )
     109    {
    107110      p[x][y] = p[0][0] + x * ySize * zSize + y * zSize;
     111    }
    108112  }
    109113}
     
    117121    {
    118122      if( p[0][0] != NULL )
     123      {
    119124        delete [] p[0][0];
     125      }
    120126      delete [] p[0];
    121127    }
Note: See TracChangeset for help on using the changeset viewer.