Changeset 38 in SHVCSoftware for branches/SHM-1.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp
- Timestamp:
- 20 Feb 2013, 21:24:20 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SHM-1.1-dev/source/App/TAppEncoder/TAppEncCfg.cpp
r21 r38 229 229 cfg_CroppingMode[layer] = &m_acLayerCfg[layer].m_croppingMode; 230 230 } 231 #if AVC_SYNTAX 232 string cfg_BLSyntaxFile; 233 #endif 231 234 #else 232 235 string cfg_InputFile; … … 259 262 ("InternalBitDepth", m_uiInternalBitDepth, 0u, "Internal bit-depth (BitDepth+BitIncrement)") 260 263 #if AVC_BASE 261 ("InputBLFile,-ibl", *cfg_InputFile[0], string(""), "Original BL rec YUV input file name") 264 ("InputBLFile,-ibl", *cfg_InputFile[0], string(""), "Base layer rec YUV input file name") 265 #if AVC_SYNTAX 266 ("InputBLSyntaxFile,-ibs", cfg_BLSyntaxFile, string(""), "Base layer syntax input file name") 267 #endif 262 268 #endif 263 269 #if REF_IDX_FRAMEWORK … … 516 522 #if SVC_EXTENSION 517 523 m_pchBitstreamFile = cfg_BitstreamFile.empty() ? NULL : strdup(cfg_BitstreamFile.c_str()); 524 #if AVC_SYNTAX 525 m_BLSyntaxFile = cfg_BLSyntaxFile.empty() ? NULL : strdup(cfg_BLSyntaxFile.c_str()); 526 #endif 518 527 #else 519 528 m_pchInputFile = cfg_InputFile.empty() ? NULL : strdup(cfg_InputFile.c_str()); … … 1308 1317 printf("RecalQP:%d ", m_recalculateQPAccordingToLambda ? 1 : 0 ); 1309 1318 #endif 1319 printf("AVC_BASE:%d ", AVC_BASE); 1310 1320 #if REF_IDX_FRAMEWORK 1311 1321 printf("REF_IDX_FRAMEWORK:%d ", REF_IDX_FRAMEWORK); … … 1313 1323 printf("REF_IDX_ME_AROUND_ZEROMV:%d ", REF_IDX_ME_AROUND_ZEROMV); 1314 1324 printf("REF_IDX_ME_ZEROMV: %d", REF_IDX_ME_ZEROMV); 1315 #el se1325 #elif INTRA_BL 1316 1326 printf("INTRA_BL:%d ", INTRA_BL); 1317 printf("AVC_BASE:%d ", AVC_BASE);1318 1327 #if !AVC_BASE 1319 1328 printf("SVC_MVP:%d ", SVC_MVP );
Note: See TracChangeset for help on using the changeset viewer.