Ignore:
Timestamp:
8 Feb 2014, 01:07:38 (11 years ago)
Author:
tech
Message:

Further fixes.

Location:
branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComPic.cpp

    r837 r838  
    111111  memcpy(m_numReorderPics, numReorderPics, MAX_TLAYER*sizeof(Int));
    112112
    113   /* initialize the texture to depth reference status */
    114113#if H_3D_FCO
     114/* initialize the texture to depth reference status */
    115115  for (int j=0; j<2; j++)
    116116  {
  • branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComPic.h

    r837 r838  
    192192  Window&       getDefDisplayWindow()   { return m_defaultDisplayWindow; }
    193193
     194  Bool          getSAOMergeAvailability(Int currAddr, Int mergeAddr);
    194195
    195196  /* field coding parameters*/
  • branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComPicSym.cpp

    r837 r838  
    123123    m_puiInverseCUOrderMap[i] = i;
    124124  }
     125
     126  m_saoBlkParams = new SAOBlkParam[m_uiNumCUsInFrame];
    125127}
    126128
  • branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComRom.cpp

    r837 r838  
    327327UInt g_uiPCMBitDepthChroma   = 8;    // PCM bit-depth
    328328
     329#if H_3D_DIM_DMM
    329330// ====================================================================================================================
    330331// Depth coding modes
    331332// ====================================================================================================================
    332 #if H_3D_DIM_DMM
    333333const WedgeResolution g_dmmWedgeResolution[6] =
    334334{
  • branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TComTrQuant.h

    r837 r838  
    150150
    151151#if RDOQ_CHROMA_LAMBDA
     152  Void setLambdas ( const Double lambdas[3] ) { for (Int component = 0; component < 3; component++) m_lambdas[component] = lambdas[component]; }
    152153  Void setLambda(Double dLambdaLuma, Double dLambdaChroma) { m_dLambdaLuma = dLambdaLuma; m_dLambdaChroma = dLambdaChroma; }
    153154  Void selectLambda(TextType eTType) { m_dLambda = (eTType == TEXT_LUMA) ? m_lambdas[0] : ((eTType == TEXT_CHROMA_U) ? m_lambdas[1] : m_lambdas[2]); }
  • branches/HTM-10.0rc1-dev0/source/Lib/TLibCommon/TypeDef.h

    r837 r838  
    551551};
    552552
     553enum SAOComponentIdx
     554{
     555  SAO_Y =0,
     556  SAO_Cb,
     557  SAO_Cr,
     558  NUM_SAO_COMPONENTS
     559};
    553560
    554561enum SAOMode //mode
Note: See TracChangeset for help on using the changeset viewer.