Changeset 56 in 3DVCSoftware for trunk/source/App/TAppRenderer/TAppRendererTop.cpp
- Timestamp:
- 11 May 2012, 21:20:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/App/TAppRenderer/TAppRendererTop.cpp
r5 r56 188 188 { 189 189 m_apcTVideoIOYuvVideoInput[iBaseViewIdx]->read( apcPicYuvBaseVideo[iBaseViewIdx], aiPad ) ; 190 190 191 apcPicYuvBaseVideo[iBaseViewIdx]->extendPicBorder(); 192 191 193 bAnyEOS |= m_apcTVideoIOYuvVideoInput[iBaseViewIdx]->isEof(); 192 194 … … 209 211 } 210 212 211 m_cCameraData.update( (UInt)iFrame );213 m_cCameraData.update( (UInt)iFrame - m_iFrameSkip ); 212 214 213 215 for(Int iSynthViewIdx=0; iSynthViewIdx < m_iNumberOfOutputViews; iSynthViewIdx++ ) … … 423 425 424 426 // Write Output 427 428 #if PIC_CROPPING 429 m_apcTVideoIOYuvSynthOutput[m_bSweep ? 0 : iSynthViewIdx]->write( pcPicYuvSynthOut, 0, 0, 0, 0 ); 430 #else 425 431 m_apcTVideoIOYuvSynthOutput[m_bSweep ? 0 : iSynthViewIdx]->write( pcPicYuvSynthOut, aiPad ); 432 #endif 426 433 } 427 434 iFrame++; … … 645 652 646 653 // Write Output 654 #if PIC_CROPPING 655 m_apcTVideoIOYuvSynthOutput[m_bSweep ? 0 : iModelNum]->write( pcPicYuvSynthOut, 0 ,0 ,0, 0 ); 656 #else 647 657 m_apcTVideoIOYuvSynthOutput[m_bSweep ? 0 : iModelNum]->write( pcPicYuvSynthOut, aiPad ); 658 #endif 648 659 } 649 660 } … … 837 848 838 849 // Write Output 850 #if PIC_CROPPING 851 m_apcTVideoIOYuvSynthOutput[m_bSweep ? 0 : iSynthViewIdx]->write( pcPicYuvSynthOut, 0, 0, 0, 0 ); 852 #else 839 853 m_apcTVideoIOYuvSynthOutput[m_bSweep ? 0 : iSynthViewIdx]->write( pcPicYuvSynthOut, aiPad ); 854 #endif 840 855 } 841 856 iFrame++; … … 963 978 964 979 // Write Output 980 #if PIC_CROPPING 981 m_apcTVideoIOYuvSynthOutput[iViewIdx-1]->write( pcPicYuvSynthOut, 0, 0, 0 ); 982 #else 965 983 m_apcTVideoIOYuvSynthOutput[iViewIdx-1]->write( pcPicYuvSynthOut, aiPad ); 984 #endif 966 985 967 986 }
Note: See TracChangeset for help on using the changeset viewer.