Changeset 1283 in SHVCSoftware


Ignore:
Timestamp:
16 Jul 2015, 23:55:03 (9 years ago)
Author:
seregin
Message:

port rev 4313

Location:
branches/SHM-dev/source/Lib
Files:
4 edited

Legend:

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

    r1269 r1283  
    5151#include "TypeDef.h"
    5252
     53#ifdef _MSC_VER
     54#if _MSC_VER <= 1500
     55inline Int64 abs (Int64 x) { return _abs64(x); };
     56#endif
     57#endif
     58
    5359//! \ingroup TLibCommon
    5460//! \{
     
    6066#if SVC_EXTENSION
    6167#include <vector>
    62 #define NV_VERSION        "9.0 (HM-16.3)"                 ///< Current software version
    63 #else
    64 #define NV_VERSION        "16.3"                ///< Current software version
     68#define NV_VERSION        "9.0 (HM-16.3)"        ///< Current SHM software version
     69#else
     70#define NV_VERSION        "16.3"                 ///< Current software version
    6571#endif
    6672
  • branches/SHM-dev/source/Lib/TLibCommon/TComTrQuant.cpp

    r1260 r1283  
    17021702      {
    17031703        pcCoeff[coefficientIndex] = encoderSideDelta;
    1704         reconstructedDelta        = encoderSideDelta;
     1704        reconstructedDelta        = (Pel) encoderSideDelta;
    17051705      }
    17061706      else
  • branches/SHM-dev/source/Lib/TLibEncoder/TEncSearch.cpp

    r1260 r1283  
    364364    Int isubShift = 0;
    365365    // motion cost
    366     UInt uiBitCost = m_pcRdCost->getCost( iSearchX, iSearchY );
     366    Distortion uiBitCost = m_pcRdCost->getCost( iSearchX, iSearchY );
    367367
    368368    if ( m_cDistParam.iRows > 32 )
  • branches/SHM-dev/source/Lib/TLibVideoIO/TVideoIOYuv.cpp

    r1260 r1283  
    218218  /* fall back to consuming the input */
    219219  Char buf[512];
    220   const UInt offset_mod_bufsize = offset % sizeof(buf);
     220  const streamoff offset_mod_bufsize = offset % sizeof(buf);
    221221  for (streamoff i = 0; i < offset - offset_mod_bufsize; i += sizeof(buf))
    222222  {
Note: See TracChangeset for help on using the changeset viewer.