Changeset 152 in SHVCSoftware for branches/SHM-2.0-dev/source/App


Ignore:
Timestamp:
4 May 2013, 01:18:19 (12 years ago)
Author:
seregin
Message:

decoded picture output for SYNTAX_OUTPU

Location:
branches/SHM-2.0-dev/source/App
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-2.0-dev/source/App/TAppDecoder/TAppDecTop.cpp

    r133 r152  
    574574        const Window &conf = pcPic->getConformanceWindow();
    575575        const Window &defDisp = m_respectDefDispWindow ? pcPic->getDefDisplayWindow() : Window();
     576#if SYNTAX_OUTPUT && ILP_DECODED_PICTURE
     577      m_cTVideoIOYuvReconFile.write( pcPic->getPicYuvRec() );
     578#else
    576579        m_cTVideoIOYuvReconFile.write( pcPic->getPicYuvRec(),
    577580                                       conf.getWindowLeftOffset() + defDisp.getWindowLeftOffset(),
     
    579582                                       conf.getWindowTopOffset() + defDisp.getWindowTopOffset(),
    580583                                       conf.getWindowBottomOffset() + defDisp.getWindowBottomOffset() );
     584#endif
    581585      }
    582586     
  • branches/SHM-2.0-dev/source/App/TAppEncoder/TAppEncTop.cpp

    r133 r152  
    13161316    if (m_pchReconFile)
    13171317    {
     1318#if SYNTAX_OUTPUT && ILP_DECODED_PICTURE
     1319      m_cTVideoIOYuvReconFile.write( pcPicYuvRec );
     1320#else
    13181321      m_cTVideoIOYuvReconFile.write( pcPicYuvRec, m_confLeft, m_confRight, m_confTop, m_confBottom );
     1322#endif
    13191323    }
    13201324
Note: See TracChangeset for help on using the changeset viewer.