Changeset 50 in 3DVCSoftware for branches/0.3-nokia/source/App/TAppEncoder
- Timestamp:
- 4 Apr 2012, 16:55:35 (13 years ago)
- Location:
- branches/0.3-nokia/source/App/TAppEncoder
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.3-nokia/source/App/TAppEncoder/TAppEncCfg.cpp
r34 r50 203 203 204 204 #if FLEX_CODING_ORDER 205 (" 3DVFlexOrder",m_b3DVFlexOrder, false, "flexible coding order flag" )206 (" 3DVCodingOrder",cfg_JointCodingOrdering, string(""), "The coding order for joint texture-depth coding")207 208 #endif 205 ("FCO", m_b3DVFlexOrder, false, "flexible coding order flag" ) 206 ("CodingOrder", cfg_JointCodingOrdering, string(""), "The coding order for joint texture-depth coding") 207 #endif 208 209 209 /* Unit definition parameters */ 210 210 ("MaxCUWidth", m_uiMaxCUWidth, 64u) … … 394 394 m_pchdQPFile = cfg_dQPFile.empty() ? NULL : strdup(cfg_dQPFile.c_str()); 395 395 396 #if FLEX_CODING_ORDER && HHI_VSO 396 397 #if FLEX_CODING_ORDER 397 398 m_pchMVCJointCodingOrder = cfg_JointCodingOrdering.empty()?NULL:strdup(cfg_JointCodingOrdering.c_str()); 398 399 // If flexible order is enabled and if depth comes before the texture for a view, disable VSO 400 401 #if HHI_VSO && DISABLE_FCO_FOR_VSO 399 402 Bool depthComesFirst = false; 400 403 if ( m_b3DVFlexOrder ) … … 425 428 } 426 429 #endif 427 430 #endif 428 431 429 432 // GT FIX -
branches/0.3-nokia/source/App/TAppEncoder/TAppEncTop.cpp
r34 r50 145 145 #endif 146 146 147 #if BITSTREAM_EXTRACTION 148 m_acTEncTopList[iViewIdx]->setLayerId ( ( (UInt)iViewIdx ) << 1 ); 149 #endif 147 150 m_acTEncTopList[iViewIdx]->setViewId ( (UInt)iViewIdx ); 148 151 m_acTEncTopList[iViewIdx]->setViewOrderIdx ( m_cCameraData.getViewOrderIndex()[ iViewIdx ] ); … … 337 340 #endif 338 341 342 #if BITSTREAM_EXTRACTION 343 m_acTEncDepthTopList[iViewIdx]->setLayerId ( ( ( (UInt)iViewIdx ) << 1 ) + 1 ); 344 #endif 339 345 m_acTEncDepthTopList[iViewIdx]->setViewId ( (UInt)iViewIdx ); 340 346 m_acTEncDepthTopList[iViewIdx]->setViewOrderIdx ( m_cCameraData.getViewOrderIndex()[ iViewIdx ] );
Note: See TracChangeset for help on using the changeset viewer.