Changeset 377 in SHVCSoftware for branches/SHM-3.1-dev/source/App
- Timestamp:
- 30 Aug 2013, 03:29:41 (11 years ago)
- Location:
- branches/SHM-3.1-dev/source/App/TAppEncoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r362 r377 72 72 , m_pRowHeight() 73 73 , m_scalingListFile() 74 #if REF_IDX_FRAMEWORK75 74 , m_elRapSliceBEnabled(0) 76 #endif77 75 { 78 76 for(UInt layer=0; layer<MAX_LAYERS; layer++) … … 514 512 #endif 515 513 #endif 516 #if REF_IDX_FRAMEWORK517 514 ("EnableElRapB,-use-rap-b", m_elRapSliceBEnabled, 0, "Set ILP over base-layer I picture to B picture (default is P picture)") 518 #endif519 515 #if M0457_IL_SAMPLE_PRED_ONLY_FLAG 520 516 ("IlSampleOnlyPred%d", m_ilSampleOnlyPred, 0, MAX_LAYERS, "Set inter_layer_sample_pred_only_flag for all slices") 521 517 #endif 522 #else 518 #else 523 519 ("InputFile,i", cfg_InputFile, string(""), "Original YUV input file name") 524 520 ("BitstreamFile,b", cfg_BitstreamFile, string(""), "Bitstream output file name") … … 2239 2235 printf("AvcBase:%d ", 0); 2240 2236 #endif 2241 #if REF_IDX_FRAMEWORK2242 printf("REF_IDX_FRAMEWORK:%d ", REF_IDX_FRAMEWORK);2243 2237 printf("EL_RAP_SliceType: %d ", m_elRapSliceBEnabled); 2244 2238 printf("REF_IDX_ME_ZEROMV: %d ", REF_IDX_ME_ZEROMV); 2245 2239 printf("ENCODER_FAST_MODE: %d ", ENCODER_FAST_MODE); 2246 2240 printf("REF_IDX_MFM: %d ", REF_IDX_MFM); 2247 #endif2248 2241 #else 2249 2242 printf("RecalQP:%d", m_recalculateQPAccordingToLambda ? 1 : 0 ); -
branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncCfg.h
r345 r377 59 59 // file I/O 60 60 #if SVC_EXTENSION 61 TAppEncLayerCfg m_acLayerCfg [MAX_LAYERS]; 61 TAppEncLayerCfg m_acLayerCfg [MAX_LAYERS]; 62 62 Int m_numLayers; ///< number of layers 63 63 Int m_scalabilityMask[MAX_VPS_NUM_SCALABILITY_TYPES]; ///< scalability_mask … … 340 340 Int m_log2MaxMvLengthVertical; ///< Indicate the maximum absolute value of a decoded vertical MV component in quarter-pel luma units 341 341 342 #if REF_IDX_FRAMEWORK342 #if SVC_EXTENSION 343 343 Int m_elRapSliceBEnabled; 344 344 #endif -
branches/SHM-3.1-dev/source/App/TAppEncoder/TAppEncTop.cpp
r372 r377 475 475 m_acTEncTop[layer].setLog2MaxMvLengthHorizontal( m_log2MaxMvLengthHorizontal ); 476 476 m_acTEncTop[layer].setLog2MaxMvLengthVertical( m_log2MaxMvLengthVertical ); 477 #if REF_IDX_FRAMEWORK478 477 m_acTEncTop[layer].setElRapSliceTypeB(layer == 0? 0 : m_elRapSliceBEnabled); 479 #endif480 478 #if SCALED_REF_LAYER_OFFSETS 481 479 if( layer > 0 )
Note: See TracChangeset for help on using the changeset viewer.