Changeset 56 in 3DVCSoftware for trunk/source/Lib/TLibRenderer/TRenTop.cpp
- Timestamp:
- 11 May 2012, 21:20:17 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibRenderer/TRenTop.cpp
r5 r56 32 32 */ 33 33 34 35 34 #include "TRenImage.h" 36 35 #include "TRenTop.h" … … 152 151 PelImagePlane* pcTempPlane = new PelImagePlane(pcOrgInputImage->getPlane(0)->getWidth(), ( pcOrgInputImage->getPlane(0)->getHeight() >> 1), REN_LUMA_MARGIN ); 153 152 154 TRenFilter::sampleVerDown2Tap13(pcOrgInputImage->getPlane(0), pcTempPlane, 12);153 TRenFilter::sampleVerDown2Tap13(pcOrgInputImage->getPlane(0), pcTempPlane, PICYUV_PAD); 155 154 pcConvPlane = pcConvInputImage->getPlane(1); 156 155 … … 317 316 318 317 PelImage cLeftInputImage ( pcPicYuvVideoLeft ); 319 PelImage cLeftInputDepth ( pcPicYuvDepthLeft, true );318 PelImage cLeftInputDepth ( pcPicYuvDepthLeft, true ); 320 319 PelImage cRightInputImage ( pcPicYuvVideoRight ); 321 PelImage cRightInputDepth ( pcPicYuvDepthRight 320 PelImage cRightInputDepth ( pcPicYuvDepthRight, true ); 322 321 PelImage cOutputImage ( pcPicYuvSynthOut ); 323 322 … … 338 337 339 338 xConvertInputData( &cLeftInputImage, &cLeftInputDepth, m_pcLeftInputImage, m_pcLeftInputDepth ,false ); 340 xConvertInputData( &cRightInputImage, &cRightInputDepth, m_pcRightInputImage, m_pcRightInputDepth ,true );339 xConvertInputData( &cRightInputImage, &cRightInputDepth, m_pcRightInputImage, m_pcRightInputDepth ,true ); 341 340 342 341 // Render from Left View to Right view … … 386 385 387 386 xBlend(m_pcLeftOutputImage, m_pcRightOutputImage, m_pcLeftFilled, m_pcRightFilled, m_pcLeftOutputDepth, m_pcRightOutputDepth, m_pcOutputImage); 388 389 387 xConvertOutputData( m_pcOutputImage, &cOutputImage , false ); 388 390 389 xPostProcessImage ( &cOutputImage, &cOutputImage); 391 390 xCutMargin( &cOutputImage ); … … 2230 2229 if(m_aiBlkMoving != NULL ) delete[] m_aiBlkMoving; 2231 2230 } 2232
Note: See TracChangeset for help on using the changeset viewer.