Changeset 678 in SHVCSoftware for branches


Ignore:
Timestamp:
15 Apr 2014, 15:55:52 (11 years ago)
Author:
qualcomm
Message:

minor cleaning

Location:
branches/SHM-6-dev/source/Lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibCommon/TCom3DAsymLUT.cpp

    r677 r678  
    193193
    194194    Pel min = - ( 1 << ( getOutputBitDepthY() - 2 ) );
    195     Pel max =  - min /*- 1*/;
     195    Pel max =  - min;
    196196    sPredB.Y = Clip3( min , max , sPredB.Y );
    197197    min = - ( 1 << ( getOutputBitDepthC() - 2 ) );
    198     max =  - min /*- 1*/;
     198    max =  - min;
    199199    sPredB.U = Clip3( min , max , sPredB.U );
    200200    sPredB.V = Clip3( min , max , sPredB.V );
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEnc3DAsymLUT.cpp

    r677 r678  
    340340        v = pIRLV[posIRLUV];
    341341        SColorInfo & rCuboidColorInfoC = m_pColorInfoC[y>>xGetYShift2Idx()][u>>xGetUShift2Idx()][v>>xGetVShift2Idx()];
    342         //sColorInfo.Ys = Y;
    343342        sColorInfo.Us = U;
    344343        sColorInfo.Vs = V;
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r677 r678  
    42544254      i0      += m_iN;
    42554255      div_i0   = (i0 / m_iM);
    4256       //p_src    = &src[j1][ div_i0 - (length >> 1)];
    42574256      p_src    =  p_src_line + ( div_i0 - (length >> 1));
    42584257      p_filter = m_phase_filter[i0 - div_i0 * m_iM]; // phase_filter[i0 % M]
     
    42814280    j0      += m_iN;
    42824281    div_j0   = (j0 / m_iM);
    4283     //p_dst    = dst[j1];
    42844282    p_dst = p_dst_line;
    42854283    p_temp   = &m_temp[div_j0 - (length>>1)];
Note: See TracChangeset for help on using the changeset viewer.