Changeset 1070 in SHVCSoftware for branches/SHM-dev/source/Lib


Ignore:
Timestamp:
5 Mar 2015, 02:48:56 (10 years ago)
Author:
seregin
Message:

fix uninitialized variables

File:
1 edited

Legend:

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

    r1046 r1070  
    545545  PayloadType payloadType() const { return SCALABLE_NESTING; }
    546546
    547   SEIScalableNesting() {}
     547  SEIScalableNesting()
     548    : m_callerOwnsSEIs(false)
     549  {}
    548550  virtual ~SEIScalableNesting()
    549551  {
     
    645647  PayloadType payloadType() const { return OUTPUT_LAYER_SET_NESTING; }
    646648
    647   SEIOutputLayerSetNesting() {}
     649  SEIOutputLayerSetNesting()
     650    : m_callerOwnsSEIs(false)
     651  {}
     652
    648653  virtual ~SEIOutputLayerSetNesting()
    649654  {
     
    866871
    867872#if O0164_MULTI_LAYER_HRD
    868 
    869873class SEIBspNesting : public SEI
    870874{
     
    872876  PayloadType payloadType() const { return BSP_NESTING; }
    873877
    874   SEIBspNesting() {}
     878  SEIBspNesting()
     879    : m_callerOwnsSEIs(false)
     880  {}
    875881  virtual ~SEIBspNesting()
    876882  {
Note: See TracChangeset for help on using the changeset viewer.