Changeset 964 in 3DVCSoftware for trunk/source/Lib/TLibDecoder/TDecEntropy.h


Ignore:
Timestamp:
5 Jul 2014, 05:16:45 (10 years ago)
Author:
tech
Message:
  • Merged 11.0-dev0@963. (Update to HM 14.0 + MV-HEVC Draft 8 HLS)
  • Added coding results.
  • Changed version number.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibDecoder/TDecEntropy.h

    r884 r964  
    6767  virtual Void  parseVPS                  ( TComVPS* pcVPS )                       = 0;
    6868#if H_3D
    69   virtual Void  parseSPS                  ( TComSPS* pcSPS, Int viewIndex, Bool depthFlag  )         = 0;
     69  virtual Void  parseSPS                  ( TComSPS* pcSPS, Int viewIndex, Bool depthFlag  )                    = 0;
    7070#else
    7171  virtual Void  parseSPS                  ( TComSPS* pcSPS )                                      = 0;
     
    7777#endif
    7878
     79#if H_MV_HLS_8_HRD_Q0102_08
     80  virtual Void parseSliceHeader          ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, Int targetOlsIdx )       = 0;
     81#else
    7982  virtual Void parseSliceHeader          ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager)       = 0;
     83#endif
    8084
    8185  virtual Void  parseTerminatingBit       ( UInt& ruilsLast )                                     = 0;
     
    125129  virtual Void updateContextTables( SliceType eSliceType, Int iQp ) = 0;
    126130 
    127   virtual ~TDecEntropyIf() {}
     131  virtual ~TDecEntropyIf() {};
    128132};
    129133
     
    160164  Void    decodePPS                   ( TComPPS* pcPPS )    { m_pcEntropyDecoderIf->parsePPS(pcPPS);                    }
    161165#endif
     166#if H_MV_HLS_8_HRD_Q0102_08
     167  Void    decodeSliceHeader           ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, Int targetOlsIdx)  { m_pcEntropyDecoderIf->parseSliceHeader(rpcSlice, parameterSetManager, targetOlsIdx );         }
     168#else
    162169  Void    decodeSliceHeader           ( TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager)  { m_pcEntropyDecoderIf->parseSliceHeader(rpcSlice, parameterSetManager);         }
    163 
     170#endif
    164171  Void    decodeTerminatingBit        ( UInt& ruiIsLast )       { m_pcEntropyDecoderIf->parseTerminatingBit(ruiIsLast);     }
    165172 
Note: See TracChangeset for help on using the changeset viewer.