Changeset 54 in 3DVCSoftware
- Timestamp:
- 5 Apr 2012, 14:45:33 (13 years ago)
- Location:
- tags/0.5
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/0.5/CommonTestConditionsCfgs/baseCfg_2view+depth.cfg
r41 r54 122 122 # VSO configuration string 123 123 #========== flexible coding order (FlexCO) ========== 124 3DVFlexOrder: 0125 3DVCodingOrder: T0D0D1D2T1T2124 FCO : 0 125 CodingOrder : T0D0D1D2T1T2 -
tags/0.5/CommonTestConditionsCfgs/baseCfg_3view+depth.cfg
r41 r54 126 126 # VSO configuration string 127 127 #========== flexible coding order (FlexCO) ========== 128 3DVFlexOrder: 0129 3DVCodingOrder: T0D0D1D2T1T2128 FCO : 0 129 CodingOrder : T0D0D1D2T1T2 130 130 131 131 -
tags/0.5/cfg/encoder_mvd.cfg
r46 r54 18 18 BitstreamFile : BitStreamMV.bin 19 19 20 3DVFlexOrder :021 3DVCodingOrder :T0D0D1D2T1T220 FCO : 0 21 CodingOrder : T0D0D1D2T1T2 22 22 23 23 -
tags/0.5/source/App/TAppDecoder/TAppDecTop.cpp
r48 r54 289 289 290 290 } 291 if (bCountDepthViewIdx == false )291 if (m_bUsingDepth && bCountDepthViewIdx == false ) 292 292 { 293 293 bCountDepthViewIdx = true; … … 315 315 } 316 316 317 if (iViewIdx >= m_acTDecTopList.size() || iDepthViewIdx >= m_acTDecDepthTopList.size())317 if (iViewIdx >= m_acTDecTopList.size() || (m_bUsingDepth && iDepthViewIdx >= m_acTDecDepthTopList.size())) 318 318 { 319 319 bFirstDepth = false; -
tags/0.5/source/App/TAppEncoder/TAppEncCfg.cpp
r48 r54 204 204 205 205 #if FLEX_CODING_ORDER 206 (" 3DVFlexOrder",m_b3DVFlexOrder, false, "flexible coding order flag" )207 (" 3DVCodingOrder", cfg_JointCodingOrdering, string(""), "The coding order for joint texture-depth coding")206 ("FCO", m_b3DVFlexOrder, false, "flexible coding order flag" ) 207 ("CodingOrder", cfg_JointCodingOrdering, string(""), "The coding order for joint texture-depth coding") 208 208 #endif 209 209
Note: See TracChangeset for help on using the changeset viewer.