Changeset 464 in SHVCSoftware for branches/SHM-4.0-dev/source/App/TAppEncoder
- Timestamp:
- 13 Nov 2013, 03:10:08 (11 years ago)
- Location:
- branches/SHM-4.0-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-4.0-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r457 r464 509 509 ("FrameRate%d,-fr%d", cfg_FrameRate, 0, MAX_LAYERS, "Frame rate for layer %d") 510 510 ("LambdaModifier%d,-LM%d", m_adLambdaModifier, ( double )1.0, MAX_TLAYER, "Lambda modifier for temporal layer %d") 511 #if O0215_PHASE_ALIGNMENT 512 ("PhaseAlignment", m_phaseAlignFlag, false, "indicate the sample location alignment between layers (0: zero position aligned, 1: central position aligned)") 513 #endif 511 514 #if REPN_FORMAT_IN_VPS 512 515 ("RepFormatIdx%d", cfg_repFormatIdx, -1, MAX_LAYERS, "Index to the representation format structure used from the VPS") … … 594 597 ("FrameSkip,-fs", m_FrameSkip, 0u, "Number of frames to skip at start of input YUV") 595 598 ("FramesToBeEncoded,f", m_framesToBeEncoded, 0, "Number of frames to be encoded (default=all)") 596 597 599 // Profile and level 598 600 ("Profile", m_profile, Profile::NONE, "Profile to be used when encoding (Incomplete)") … … 2399 2401 printf("Internal bit depth : (Y:%d, C:%d)\n", m_internalBitDepthY, m_internalBitDepthC ); 2400 2402 printf("PCM sample bit depth : (Y:%d, C:%d)\n", g_uiPCMBitDepthLuma, g_uiPCMBitDepthChroma ); 2403 #if O0215_PHASE_ALIGNMENT 2404 printf("cross-layer sample alignment : %d\n", m_phaseAlignFlag); 2405 #endif 2401 2406 #if RATE_CONTROL_LAMBDA_DOMAIN 2402 2407 #if !RC_SHVC_HARMONIZATION -
branches/SHM-4.0-dev/source/App/TAppEncoder/TAppEncCfg.h
r448 r464 381 381 UInt m_ilcIdc[1024]; 382 382 #endif 383 #if O0215_PHASE_ALIGNMENT 384 bool m_phaseAlignFlag; 385 #endif 383 386 public: 384 387 TAppEncCfg(); -
branches/SHM-4.0-dev/source/App/TAppEncoder/TAppEncTop.cpp
r461 r464 1139 1139 #endif 1140 1140 #endif 1141 1142 #if O0215_PHASE_ALIGNMENT 1143 vps->setPhaseAlignFlag( m_phaseAlignFlag ); 1144 #endif 1145 1141 1146 #else //SVC_EXTENSION 1142 1147 m_cTEncTop.init(isFieldCoding);
Note: See TracChangeset for help on using the changeset viewer.