Changeset 930 in SHVCSoftware for branches/SHM-dev/source/Lib/TLibDecoder


Ignore:
Timestamp:
17 Dec 2014, 01:38:36 (11 years ago)
Author:
seregin
Message:

fix compiler warnings

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

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecGop.cpp

    r924 r930  
    5252
    5353#if CONFORMANCE_BITSTREAM_MODE
    54 Bool pocCompareFunction( TComPic &pic1, TComPic &pic2 )
    55 {
    56   return (pic1.getPOC() < pic2.getPOC());
     54Bool pocCompareFunction( const TComPic &pic1, const TComPic &pic2 )
     55{
     56  return (const_cast<TComPic&>(pic1).getPOC() < const_cast<TComPic&>(pic2).getPOC());
    5757}
    5858#endif
  • branches/SHM-dev/source/Lib/TLibDecoder/TDecGop.h

    r856 r930  
    115115  Void  filterPicture  (TComPic*& rpcPic );
    116116
    117   void setDecodedPictureHashSEIEnabled(Int enabled) { m_decodedPictureHashSEIEnabled = enabled; }
     117  Void setDecodedPictureHashSEIEnabled(Int enabled) { m_decodedPictureHashSEIEnabled = enabled; }
    118118#if Q0074_COLOUR_REMAPPING_SEI
    119   void setColourRemappingInfoSEIEnabled(Int enabled) { m_colourRemapSEIEnabled = enabled; }
     119  Void setColourRemappingInfoSEIEnabled(Int enabled) { m_colourRemapSEIEnabled = enabled; }
    120120#endif
    121121#if SVC_EXTENSION
Note: See TracChangeset for help on using the changeset viewer.