Ignore:
Timestamp:
16 Apr 2014, 02:23:24 (11 years ago)
Author:
seregin
Message:

code formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEnc3DAsymLUT.cpp

    r683 r684  
    2828{
    2929  if( m_pColorInfo != NULL )
     30  {
    3031    destroy();
     32  }
     33
    3134  TCom3DAsymLUT::create( nMaxOctantDepth , nInputBitDepth , nInputBitDepthC, nOutputBitDepth , nOutputBitDepthC, nMaxYPartNumLog2 );
    3235  xAllocate3DArray( m_pColorInfo , xGetYSize() , xGetUSize() , xGetVSize() );
     
    4851{
    4952  if( m_dTotalFrameBit != 0 )
     53  {
    5054    printf( "\nTotal CGS bit: %d, %.2lf%%" , m_nTotalCGSBit , m_nTotalCGSBit * 100 / m_dTotalFrameBit );
     55  }
     56
    5157  destroy();
    5258}
     
    95101        Int nP3 = Clip3( nMin , nMax , nP1 + nDeltaP13 );
    96102        Int nP7 = Clip3( nMin , nMax , nP3 + nDeltaP37 );
    97         if ( nP0 & nMask ) 
     103        if ( nP0 & nMask )
     104        {
    98105          nP0 -= ( nP0 & nMask );
    99         if ( nP1 & nMask ) 
     106        }
     107        if ( nP1 & nMask )
     108        {
    100109          nP1 -= ( nP1 & nMask );
    101         if ( nP3 & nMask ) 
     110        }
     111        if ( nP3 & nMask )
     112        {
    102113          nP3 -= ( nP3 & nMask );
    103         if ( nP7 & nMask ) 
     114        }
     115        if ( nP7 & nMask )
     116        {
    104117          nP7 -= ( nP7 & nMask );
     118        }
    105119        assert( !( nP0 & nMask ) && !( nP1 & nMask ) && !( nP3 & nMask ) && !( nP7 & nMask ) );
    106120        Double dError = xxCalEstDist( N , Ys , Yy , Yu , Yv , ys , us , vs , yy , yu , yv , uu , uv , vv , YY , y0 , u0 , v0 , nLengthY , nLengthUV , nP0 , nP1 , nP3 , nP7 );
     
    154168            y0 , u0 , v0 , nLengthY , nLengthUV , rCuboid.P[0].V , rCuboid.P[1].V , rCuboid.P[2].V , rCuboid.P[3].V );
    155169        }
    156     }
     170      }
    157171    }
    158172  }
     
    184198    }
    185199    else
     200    {
    186201      break;
     202    }
    187203  }
    188204  setResQuantBit( nBestResQuanBit );
    189205  xSaveCuboids( m_pBestEncCuboid );
     206
    190207  return( dCurError );
    191208}
     
    211228        Int v0 = vIdx << xGetVShift2Idx();
    212229        for( Int idxVertex = 0 ; idxVertex < 4 ; idxVertex++ )
     230        {
    213231          rCuboid.P[idxVertex] = xGetCuboidVertexPredAll( yIdx , uIdx , vIdx , idxVertex , pCurCuboid );
     232        }
    214233
    215234        if( rCuboidColorInfo.N > 0 )
     
    389408  Int nPartNumLog2 = 4;
    390409  if( pSlice->getBaseColPic( pSlice->getInterLayerPredLayerIdc( 0 ) )->getSlice( 0 )->isIntra() )
     410  {
    391411    nPartNumLog2 = xGetMaxPartNumLog2();
     412  }
    392413  if( m_nPrevFrameBit[nSliceType][nSliceTempLevel] && pSlice->getPPS()->getCGSFlag() )
    393414  {
Note: See TracChangeset for help on using the changeset viewer.