- Timestamp:
- 4 May 2013, 01:18:19 (12 years ago)
- 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 574 574 const Window &conf = pcPic->getConformanceWindow(); 575 575 const Window &defDisp = m_respectDefDispWindow ? pcPic->getDefDisplayWindow() : Window(); 576 #if SYNTAX_OUTPUT && ILP_DECODED_PICTURE 577 m_cTVideoIOYuvReconFile.write( pcPic->getPicYuvRec() ); 578 #else 576 579 m_cTVideoIOYuvReconFile.write( pcPic->getPicYuvRec(), 577 580 conf.getWindowLeftOffset() + defDisp.getWindowLeftOffset(), … … 579 582 conf.getWindowTopOffset() + defDisp.getWindowTopOffset(), 580 583 conf.getWindowBottomOffset() + defDisp.getWindowBottomOffset() ); 584 #endif 581 585 } 582 586 -
branches/SHM-2.0-dev/source/App/TAppEncoder/TAppEncTop.cpp
r133 r152 1316 1316 if (m_pchReconFile) 1317 1317 { 1318 #if SYNTAX_OUTPUT && ILP_DECODED_PICTURE 1319 m_cTVideoIOYuvReconFile.write( pcPicYuvRec ); 1320 #else 1318 1321 m_cTVideoIOYuvReconFile.write( pcPicYuvRec, m_confLeft, m_confRight, m_confTop, m_confBottom ); 1322 #endif 1319 1323 } 1320 1324 -
branches/SHM-2.0-dev/source/Lib/TLibCommon/TypeDef.h
r151 r152 111 111 #endif 112 112 #else 113 #define ILP_DECODED_PICTURE 0 113 114 #define SYNTAX_OUTPUT 0 114 115 #endif -
branches/SHM-2.0-dev/source/Lib/TLibDecoder/TDecTop.cpp
r151 r152 851 851 #endif 852 852 853 #endif //SVC_EXTENSION 854 853 855 // For generalized B 854 856 // 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.