Changeset 56 in 3DVCSoftware for trunk/source/Lib/TLibRenderer/TRenTop.cpp


Ignore:
Timestamp:
11 May 2012, 21:20:17 (13 years ago)
Author:
hschwarz
Message:

updated trunk (move to HM6.1)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/Lib/TLibRenderer/TRenTop.cpp

    r5 r56  
    3232 */
    3333
    34 
    3534#include "TRenImage.h"
    3635#include "TRenTop.h"
     
    152151    PelImagePlane* pcTempPlane = new PelImagePlane(pcOrgInputImage->getPlane(0)->getWidth(), ( pcOrgInputImage->getPlane(0)->getHeight() >> 1), REN_LUMA_MARGIN );
    153152
    154     TRenFilter::sampleVerDown2Tap13(pcOrgInputImage->getPlane(0), pcTempPlane, 12);
     153    TRenFilter::sampleVerDown2Tap13(pcOrgInputImage->getPlane(0), pcTempPlane, PICYUV_PAD);
    155154    pcConvPlane = pcConvInputImage->getPlane(1);
    156155
     
    317316
    318317  PelImage cLeftInputImage   ( pcPicYuvVideoLeft  );
    319   PelImage cLeftInputDepth   ( pcPicYuvDepthLeft, true );
     318  PelImage cLeftInputDepth   ( pcPicYuvDepthLeft,  true );
    320319  PelImage cRightInputImage  ( pcPicYuvVideoRight );
    321   PelImage cRightInputDepth  ( pcPicYuvDepthRight , true );
     320  PelImage cRightInputDepth  ( pcPicYuvDepthRight, true );
    322321  PelImage cOutputImage      ( pcPicYuvSynthOut   );
    323322
     
    338337
    339338  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  );
    341340
    342341  // Render from Left View to Right view
     
    386385
    387386  xBlend(m_pcLeftOutputImage, m_pcRightOutputImage, m_pcLeftFilled, m_pcRightFilled, m_pcLeftOutputDepth, m_pcRightOutputDepth, m_pcOutputImage);
    388 
    389387  xConvertOutputData( m_pcOutputImage, &cOutputImage , false );
     388
    390389  xPostProcessImage  ( &cOutputImage, &cOutputImage);
    391390  xCutMargin( &cOutputImage );
     
    22302229  if(m_aiBlkMoving         != NULL ) delete[] m_aiBlkMoving;
    22312230}
    2232 
Note: See TracChangeset for help on using the changeset viewer.