Changeset 1064 in 3DVCSoftware for branches/HTM-12.0-dev1/source/Lib


Ignore:
Timestamp:
10 Oct 2014, 21:05:07 (11 years ago)
Author:
tech
Message:
  • Further fixes
  • Updated cfg files
Location:
branches/HTM-12.0-dev1/source/Lib/TLibCommon
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-12.0-dev1/source/Lib/TLibCommon/TComDataCU.cpp

    r1048 r1064  
    61646164  TComMv cMv;
    61656165#if MTK_I0093
    6166   Int iDisp     = getSlice()->getDepthToDisparityB( 0 )[ 1 << ( getSlice()->getSPS()->getBitDepthY() - 1 ) ];
     6166#if H_3D_FIX_64BIT_SHIFT
     6167  Int iDisp     = getSlice()->getDepthToDisparityB( 0 )[ (Int64) (1 << ( getSlice()->getSPS()->getBitDepthY() - 1 )) ];
     6168#else
     6169  Int iDisp     = getSlice()->getDepthToDisparityB( 0 )[  1 << ( getSlice()->getSPS()->getBitDepthY() - 1 ) ];
     6170#endif
    61676171#else
    61686172  Int iDisp     = getSlice()->getDepthToDisparityB( 0 )[ 128 ];
  • branches/HTM-12.0-dev1/source/Lib/TLibCommon/TComSlice.cpp

    r1063 r1064  
    23092309  for ( i = 0; i < iNumViews ; i++ )
    23102310  {
     2311#if H_3D_FIX_UNINIT
     2312    m_bCamParPresent[i] = false;
     2313#endif
    23112314    m_bCamParInSliceHeader[i] = false;
    23122315    m_aaaiCodedScale[i] = new Int*[ 2 ];
  • branches/HTM-12.0-dev1/source/Lib/TLibCommon/TypeDef.h

    r1062 r1064  
    5555
    5656#ifndef HEVC_EXT
    57 #define HEVC_EXT                    1
     57#define HEVC_EXT                    2
    5858#endif
    5959
     
    228228#endif
    229229
     230#define H_3D_FIX_UNINIT                   1   // Fix uninitialized flag
    230231#define H_3D_INTER_SDC                    1   // INTER SDC, Inter simplified depth coding
    231232                                              // LGE_INTER_SDC_E0156 Enable inter SDC for depth coding
     
    281282#define SEC_HLS_CLEANUP_I0100             1
    282283
     284#define H_3D_FIX_64BIT_SHIFT              1
    283285#endif // H_3D
    284286
     
    405407#define H_MV_HLS10_AUX                       1 // Auxiliary pictures
    406408#define H_MV_HLS10_GEN_FIX                   1
     409#define H_MV_FIX_LOOP_GOPSIZE                1
     410#define H_MV_FIX_SUB_LAYERS_MAX_MINUS1       1
    407411
    408412#define H_MV_HLS10_GEN_VSP_CONF_WIN          1  // VPS conformance window
     
    415419#define H_MV_HLS10_PTL                       1  // profile tier level
    416420#define H_MV_HLS10_PTL_FIX                   1  // profile tier level fix
     421#define H_MV_HLS10_PTL_INBL_FIX              1  // profile tier level fix
    417422#define H_MV_HLS10_PTL_INFER_FIX             1  // fix inference ptl
    418423#define H_MV_HLS10_MULTILAYERSPS             1  // multilayer SPS extension
     
    10131018#if H_MV_HLS10_PTL
    10141019    MULTIVIEWMAIN = 6,
    1015     MAIN3D = 5,
    10161020#if H_3D
    10171021    MAIN3D = 8,
Note: See TracChangeset for help on using the changeset viewer.