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


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

fix uninitialized variables

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

Legend:

Unmodified
Added
Removed
  • branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp

    r1067 r1070  
    12721272  ("OutputInternalColourSpace",                       m_outputInternalColourSpace,                      false, "If true, then no colour space conversion is applied for reconstructed video, otherwise inverse of input is applied.")
    12731273  ("InputChromaFormat",                               tmpInputChromaFormat,                               420, "InputChromaFormatIDC")
     1274#endif //SVC_EXTENSION
    12741275  ("MSEBasedSequencePSNR",                            m_printMSEBasedSequencePSNR,                      false, "0 (default) emit sequence PSNR only as a linear average of the frame PSNRs, 1 = also emit a sequence PSNR based on an average of the frame MSEs")
    12751276  ("PrintFrameMSE",                                   m_printFrameMSE,                                  false, "0 (default) emit only bit count and PSNRs for each frame, 1 = also emit MSE values")
    12761277  ("PrintSequenceMSE",                                m_printSequenceMSE,                               false, "0 (default) emit only bit rate and PSNRs for the whole sequence, 1 = also emit MSE values")
    12771278  ("CabacZeroWordPaddingEnabled",                     m_cabacZeroWordPaddingEnabled,                    false, "0 (default) do not add conforming cabac-zero-words to bit streams, 1 = add cabac-zero-words")
     1279#if !SVC_EXTENSION
    12781280  ("ChromaFormatIDC,-cf",                             tmpChromaFormat,                                      0, "ChromaFormatIDC (400|420|422|444 or set 0 (default) for same as InputChromaFormat)")
    12791281  ("ConformanceMode",                                 m_conformanceWindowMode,                              0, "Deprecated alias of ConformanceWindowMode")
  • 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.