Changeset 867 in SHVCSoftware


Ignore:
Timestamp:
13 Aug 2014, 17:30:57 (11 years ago)
Author:
qualcomm
Message:

Fix compiler warnings.

From: Adarsh K. Ramasubramonian <aramasub@…>

Location:
branches/SHM-dev/source/Lib/TLibCommon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibCommon/TComSlice.cpp

    r866 r867  
    30793079#endif
    30803080#if PER_LAYER_PTL
    3081 Int const TComVPS::calculateLenOfSyntaxElement( Int const numVal )
     3081Int TComVPS::calculateLenOfSyntaxElement( Int const numVal )
    30823082{
    30833083  Int numBits = 1;
  • branches/SHM-dev/source/Lib/TLibCommon/TComSlice.h

    r866 r867  
    989989#endif
    990990#if PER_LAYER_PTL
    991   Bool const getNecessaryLayerFlag(Int const i, Int const j) { return m_necessaryLayerFlag[i][j]; }
    992   std::vector< std::vector<Int> >* const getProfileLevelTierIdx() { return &m_profileLevelTierIdx; }
    993   std::vector<Int>* const getProfileLevelTierIdx(Int const olsIdx) { return &m_profileLevelTierIdx[olsIdx]; }
     991  Bool getNecessaryLayerFlag(Int const i, Int const j) { return m_necessaryLayerFlag[i][j]; }
     992  std::vector< std::vector<Int> >* getProfileLevelTierIdx() { return &m_profileLevelTierIdx; }
     993  std::vector<Int>* getProfileLevelTierIdx(Int const olsIdx) { return &m_profileLevelTierIdx[olsIdx]; }
    994994  Int    getProfileLevelTierIdx(Int const olsIdx, Int const layerIdx)     { return m_profileLevelTierIdx[olsIdx][layerIdx]; }
    995995  Void   setProfileLevelTierIdx(Int const olsIdx, Int const layerIdx, Int const ptlIdx)     { m_profileLevelTierIdx[olsIdx][layerIdx] = ptlIdx; }
    996   Int const calculateLenOfSyntaxElement( Int const numVal );
     996  Int calculateLenOfSyntaxElement( Int const numVal );
    997997#else
    998998  Int    getProfileLevelTierIdx(Int i)                        { return m_profileLevelTierIdx[i]; }
Note: See TracChangeset for help on using the changeset viewer.