Changeset 1070 in SHVCSoftware for branches/SHM-dev/source
- Timestamp:
- 5 Mar 2015, 02:48:56 (10 years ago)
- Location:
- branches/SHM-dev/source
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r1067 r1070 1272 1272 ("OutputInternalColourSpace", m_outputInternalColourSpace, false, "If true, then no colour space conversion is applied for reconstructed video, otherwise inverse of input is applied.") 1273 1273 ("InputChromaFormat", tmpInputChromaFormat, 420, "InputChromaFormatIDC") 1274 #endif //SVC_EXTENSION 1274 1275 ("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") 1275 1276 ("PrintFrameMSE", m_printFrameMSE, false, "0 (default) emit only bit count and PSNRs for each frame, 1 = also emit MSE values") 1276 1277 ("PrintSequenceMSE", m_printSequenceMSE, false, "0 (default) emit only bit rate and PSNRs for the whole sequence, 1 = also emit MSE values") 1277 1278 ("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 1278 1280 ("ChromaFormatIDC,-cf", tmpChromaFormat, 0, "ChromaFormatIDC (400|420|422|444 or set 0 (default) for same as InputChromaFormat)") 1279 1281 ("ConformanceMode", m_conformanceWindowMode, 0, "Deprecated alias of ConformanceWindowMode") -
branches/SHM-dev/source/Lib/TLibCommon/SEI.h
r1046 r1070 545 545 PayloadType payloadType() const { return SCALABLE_NESTING; } 546 546 547 SEIScalableNesting() {} 547 SEIScalableNesting() 548 : m_callerOwnsSEIs(false) 549 {} 548 550 virtual ~SEIScalableNesting() 549 551 { … … 645 647 PayloadType payloadType() const { return OUTPUT_LAYER_SET_NESTING; } 646 648 647 SEIOutputLayerSetNesting() {} 649 SEIOutputLayerSetNesting() 650 : m_callerOwnsSEIs(false) 651 {} 652 648 653 virtual ~SEIOutputLayerSetNesting() 649 654 { … … 866 871 867 872 #if O0164_MULTI_LAYER_HRD 868 869 873 class SEIBspNesting : public SEI 870 874 { … … 872 876 PayloadType payloadType() const { return BSP_NESTING; } 873 877 874 SEIBspNesting() {} 878 SEIBspNesting() 879 : m_callerOwnsSEIs(false) 880 {} 875 881 virtual ~SEIBspNesting() 876 882 {
Note: See TracChangeset for help on using the changeset viewer.