Changeset 1282 in SHVCSoftware


Ignore:
Timestamp:
16 Jul 2015, 04:16:56 (9 years ago)
Author:
seregin
Message:

address compiler warnings

Location:
branches/SHM-dev/source
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppDecoder/TAppDecCfg.h

    r1259 r1282  
    129129
    130130#if CONFORMANCE_BITSTREAM_MODE
    131   Bool const getConfModeFlag() { return m_confModeFlag;  }
    132   std::string const getConfPrefix() { return m_confPrefix;}
    133   std::string const getMetadataFileName() { return m_metadataFileName; }
    134   Bool const getMetadataFileRefresh() {return m_metadataFileRefresh; }
    135   Void setMetadataFileRefresh(Bool const x) {m_metadataFileRefresh = x; }
    136   Void setDecodedYuvLayerFileName(Int layerId, std::string x) {  m_decodedYuvLayerFileName[layerId] = x; }
    137   std::string const getDecodedYuvLayerFileName(Int layerId) {  return m_decodedYuvLayerFileName[layerId]; }
    138   Bool const getDecodedYuvLayerRefresh(Int const layerId) {return m_decodedYuvLayerRefresh[layerId]; }
    139   Void setDecodedYuvLayerRefresh(Int const layerId, Bool const x) {m_decodedYuvLayerRefresh[layerId] = x; }
     131  Bool        getConfModeFlag() const        { return m_confModeFlag;       }
     132  std::string getConfPrefix() const          { return m_confPrefix;         }
     133  std::string getMetadataFileName() const    { return m_metadataFileName;   }
     134  Bool        getMetadataFileRefresh() const {return m_metadataFileRefresh; }
     135
     136  std::string getDecodedYuvLayerFileName(Int layerId) const        { return m_decodedYuvLayerFileName[layerId]; }
     137  Bool        getDecodedYuvLayerRefresh(const Int layerId) const   { return m_decodedYuvLayerRefresh[layerId];  }
     138
     139  Void setMetadataFileRefresh(const Bool x)                        { m_metadataFileRefresh = x;              }
     140  Void setDecodedYuvLayerFileName(Int layerId, std::string x)      { m_decodedYuvLayerFileName[layerId] = x; }
     141  Void setDecodedYuvLayerRefresh(const Int layerId, const Bool x)  { m_decodedYuvLayerRefresh[layerId] = x;  }
    140142#endif
    141143#endif
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r1278 r1282  
    13211321        if( is16bit )
    13221322        {
    1323             uiPos <<= 1;
     1323          uiPos <<= 1;
    13241324        }
    13251325
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecTop.h

    r1263 r1282  
    251251
    252252#if CONFORMANCE_BITSTREAM_MODE
    253   std::vector<TComPic>* getConfListPic() {return &m_confListPic; }
    254   Bool      const getConfModeFlag() { return m_confModeFlag; }
    255   Void      setConfModeFlag(Bool x) { m_confModeFlag = x; }
     253  std::vector<TComPic>* getConfListPic() { return &m_confListPic; }
     254  Bool      getConfModeFlag() const      { return m_confModeFlag; }
     255  Void      setConfModeFlag(Bool x)      { m_confModeFlag = x;    }
    256256#endif
    257257#endif //SVC_EXTENSION
Note: See TracChangeset for help on using the changeset viewer.