Changeset 152 in SHVCSoftware for branches


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
Files:
4 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
  • branches/SHM-2.0-dev/source/Lib/TLibCommon/TypeDef.h

    r151 r152  
    111111#endif
    112112#else
     113#define ILP_DECODED_PICTURE              0
    113114#define SYNTAX_OUTPUT                    0
    114115#endif
  • branches/SHM-2.0-dev/source/Lib/TLibDecoder/TDecTop.cpp

    r151 r152  
    851851#endif
    852852
     853#endif //SVC_EXTENSION
     854
    853855    // For generalized B
    854856    // note: maybe not existed case (always L0 is copied to L1 if L1 is empty)
Note: See TracChangeset for help on using the changeset viewer.