Changeset 1253 in SHVCSoftware
- Timestamp:
- 14 Jul 2015, 01:51:28 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/TComTrQuant.cpp
r1246 r1253 1653 1653 const UInt uiSizeMinus1 = (uiWidth * uiHeight) - 1; 1654 1654 1655 Pel reconstructedResi[MAX_TU_SIZE * MAX_TU_SIZE];1656 1657 1655 UInt uiX = 0; 1658 1656 UInt uiY = 0; … … 1693 1691 uiAbsSum += abs(pcCoeff[coefficientIndex]); 1694 1692 1695 if (mode == RDPCM_OFF) 1696 { 1697 reconstructedResi[sampleIndex] = reconstructedDelta; 1698 } 1699 else 1693 if (mode != RDPCM_OFF) 1700 1694 { 1701 1695 accumulatorValue += reconstructedDelta; 1702 reconstructedResi[sampleIndex] = (Pel) Clip3<TCoeff>(pelMin, pelMax, accumulatorValue);1703 1696 } 1704 1697 }
Note: See TracChangeset for help on using the changeset viewer.