Changeset 54 in 3DVCSoftware for tags/0.5/source


Ignore:
Timestamp:
5 Apr 2012, 14:45:33 (13 years ago)
Author:
tech
Message:
  • added decoder fix related to FCO and video only coding
  • renamed FCO related encoder cfg-parameters
  • added newlines at end of some files
Location:
tags/0.5/source/App
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tags/0.5/source/App/TAppDecoder/TAppDecTop.cpp

    r48 r54  
    289289
    290290      }
    291       if (bCountDepthViewIdx == false )
     291       if (m_bUsingDepth && bCountDepthViewIdx == false )
    292292      {
    293293        bCountDepthViewIdx = true;
     
    315315        }
    316316
    317         if (iViewIdx >= m_acTDecTopList.size() || iDepthViewIdx >= m_acTDecDepthTopList.size())
     317         if (iViewIdx >= m_acTDecTopList.size() || (m_bUsingDepth && iDepthViewIdx >= m_acTDecDepthTopList.size()))
    318318        {
    319319          bFirstDepth = false;
  • tags/0.5/source/App/TAppEncoder/TAppEncCfg.cpp

    r48 r54  
    204204
    205205#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")
    208208#endif
    209209
Note: See TracChangeset for help on using the changeset viewer.