Changeset 1358 in SHVCSoftware
- Timestamp:
- 22 Jul 2015, 04:06:57 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp
r1351 r1358 38 38 #include "NALread.h" 39 39 #include "TDecTop.h" 40 #if RExt__DECODER_DEBUG_BIT_STATISTICS41 #include "TLibCommon/TComCodingStatistics.h"42 #endif43 40 44 41 #if SVC_EXTENSION … … 1966 1963 #endif 1967 1964 xDecodeVPS(nalu.getBitstream().getFifo()); 1968 #if RExt__DECODER_DEBUG_BIT_STATISTICS1969 TComCodingStatistics::IncrementStatisticEP(STATS__BYTE_ALIGNMENT_BITS, nalu.getBitstream().readByteAlignment(), 0);1970 #endif1971 1965 #if SVC_EXTENSION 1972 1966 m_isLastNALWasEos = false; … … 1976 1970 case NAL_UNIT_SPS: 1977 1971 xDecodeSPS(nalu.getBitstream().getFifo()); 1978 #if RExt__DECODER_DEBUG_BIT_STATISTICS1979 TComCodingStatistics::IncrementStatisticEP(STATS__BYTE_ALIGNMENT_BITS, nalu.getBitstream().readByteAlignment(), 0);1980 #endif1981 1972 return false; 1982 1973 … … 1986 1977 #else 1987 1978 xDecodePPS(nalu.getBitstream().getFifo()); 1988 #endif1989 #if RExt__DECODER_DEBUG_BIT_STATISTICS1990 TComCodingStatistics::IncrementStatisticEP(STATS__BYTE_ALIGNMENT_BITS, nalu.getBitstream().readByteAlignment(),0);1991 1979 #endif 1992 1980 return false;
Note: See TracChangeset for help on using the changeset viewer.