Changeset 1283 in SHVCSoftware
- Timestamp:
- 16 Jul 2015, 23:55:03 (9 years ago)
- Location:
- branches/SHM-dev/source/Lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/Lib/TLibCommon/CommonDef.h
r1269 r1283 51 51 #include "TypeDef.h" 52 52 53 #ifdef _MSC_VER 54 #if _MSC_VER <= 1500 55 inline Int64 abs (Int64 x) { return _abs64(x); }; 56 #endif 57 #endif 58 53 59 //! \ingroup TLibCommon 54 60 //! \{ … … 60 66 #if SVC_EXTENSION 61 67 #include <vector> 62 #define NV_VERSION "9.0 (HM-16.3)" ///< Currentsoftware version63 #else 64 #define NV_VERSION "16.3" ///< Current software version68 #define NV_VERSION "9.0 (HM-16.3)" ///< Current SHM software version 69 #else 70 #define NV_VERSION "16.3" ///< Current software version 65 71 #endif 66 72 -
branches/SHM-dev/source/Lib/TLibCommon/TComTrQuant.cpp
r1260 r1283 1702 1702 { 1703 1703 pcCoeff[coefficientIndex] = encoderSideDelta; 1704 reconstructedDelta = encoderSideDelta;1704 reconstructedDelta = (Pel) encoderSideDelta; 1705 1705 } 1706 1706 else -
branches/SHM-dev/source/Lib/TLibEncoder/TEncSearch.cpp
r1260 r1283 364 364 Int isubShift = 0; 365 365 // motion cost 366 UIntuiBitCost = m_pcRdCost->getCost( iSearchX, iSearchY );366 Distortion uiBitCost = m_pcRdCost->getCost( iSearchX, iSearchY ); 367 367 368 368 if ( m_cDistParam.iRows > 32 ) -
branches/SHM-dev/source/Lib/TLibVideoIO/TVideoIOYuv.cpp
r1260 r1283 218 218 /* fall back to consuming the input */ 219 219 Char buf[512]; 220 const UIntoffset_mod_bufsize = offset % sizeof(buf);220 const streamoff offset_mod_bufsize = offset % sizeof(buf); 221 221 for (streamoff i = 0; i < offset - offset_mod_bufsize; i += sizeof(buf)) 222 222 {
Note: See TracChangeset for help on using the changeset viewer.