Changeset 48 in 3DVCSoftware for branches/0.3-poznan-univ/source/Lib/TLibCommon
- Timestamp:
- 30 Mar 2012, 18:57:41 (13 years ago)
- Location:
- branches/0.3-poznan-univ/source/Lib/TLibCommon
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.3-poznan-univ/source/Lib/TLibCommon/SEI.h
r5 r48 41 41 class SEI 42 42 { 43 #if BITSTREAM_EXTRACTION 44 protected: 45 UInt m_uiLayerId; 46 #endif 47 43 48 public: 44 49 enum PayloadType { … … 51 56 52 57 virtual PayloadType payloadType() const = 0; 58 59 #if BITSTREAM_EXTRACTION 60 Void setLayerId ( UInt u ) { m_uiLayerId = u; } 61 UInt getLayerId () const { return m_uiLayerId; } 62 #endif 53 63 }; 54 64 -
branches/0.3-poznan-univ/source/Lib/TLibCommon/TComLoopFilter.cpp
r28 r48 419 419 UInt uiPartP; 420 420 TComDataCU* pcCUP; 421 UInt uiBs ;421 UInt uiBs = 0; 422 422 423 423 #if MTK_NONCROSS_INLOOP_FILTER -
branches/0.3-poznan-univ/source/Lib/TLibCommon/TComPic.cpp
r28 r48 490 490 491 491 Int x, y; 492 Bool bAvailable = true;493 492 Pel* pAvail = getPicYuvAvail()->getLumaAddr ( iCuAddr, uiAbsZorderIdx ); 494 493 Int CUHeight = g_uiMaxCUHeight >> uiPartDepth; //rpcCU->getHeight(uiAbsZorderIdx); -
branches/0.3-poznan-univ/source/Lib/TLibCommon/TComPrediction.cpp
r41 r48 1640 1640 1641 1641 #if DEPTH_MAP_GENERATION 1642 Int ref_frame0_idx_1st , ref_frame1_idx_1st;1642 Int ref_frame0_idx_1st = 0, ref_frame1_idx_1st = 0; 1643 1643 TComMv mv0_1st,mv1_1st; 1644 1644 #endif … … 1648 1648 Pel aiUTab[MAX_CU_SIZE]; 1649 1649 Pel aiVTab[MAX_CU_SIZE]; 1650 Pel iULast ;1651 Pel iVLast ;1650 Pel iULast = 0; 1651 Pel iVLast = 0; 1652 1652 Pel iTemp; 1653 1653 -
branches/0.3-poznan-univ/source/Lib/TLibCommon/TComSlice.cpp
r46 r48 737 737 } 738 738 739 #if FLEXCO_CAMPARAM_IN_DEPTH 740 Void 741 TComSPS::initMultiviewSPS( UInt uiViewId, Int iViewOrderIdx, UInt uiCamParPrecision, Bool bCamParSlice, Int** aaiScale, Int** aaiOffset , Bool bDepth) 742 #else 739 743 Void 740 744 TComSPS::initMultiviewSPS( UInt uiViewId, Int iViewOrderIdx, UInt uiCamParPrecision, Bool bCamParSlice, Int** aaiScale, Int** aaiOffset ) 745 #endif 741 746 { 742 747 AOT( uiViewId == 0 && iViewOrderIdx != 0 ); … … 746 751 m_uiViewId = uiViewId; 747 752 m_iViewOrderIdx = iViewOrderIdx; 753 #if FLEXCO_CAMPARAM_IN_DEPTH 754 m_bDepth = bDepth; 755 #else 748 756 m_bDepth = false; 757 #endif 749 758 m_uiCamParPrecision = ( m_uiViewId ? uiCamParPrecision : 0 ); 750 759 m_bCamParInSliceHeader = ( m_uiViewId ? bCamParSlice : false ); -
branches/0.3-poznan-univ/source/Lib/TLibCommon/TComSlice.h
r46 r48 221 221 Int* getPad ( ) { return m_aiPad; } 222 222 223 #if FLEX_CODING_ORDER 224 Void initMultiviewSPS ( UInt uiViewId, Int iViewOrderIdx = 0, UInt uiCamParPrecision = 0, Bool bCamParSlice = false, Int** aaiScale = 0, Int** aaiOffset = 0, Bool bDepth = false ); 225 #else 223 226 Void initMultiviewSPS ( UInt uiViewId, Int iViewOrderIdx = 0, UInt uiCamParPrecision = 0, Bool bCamParSlice = false, Int** aaiScale = 0, Int** aaiOffset = 0 ); 227 #endif 224 228 Void initMultiviewSPSDepth ( UInt uiViewId, Int iViewOrderIdx ); 225 229 -
branches/0.3-poznan-univ/source/Lib/TLibCommon/TypeDef.h
r46 r48 44 44 #define FLEX_CODING_ORDER 1 45 45 46 #define FLEXCO_CAMPARAM_IN_DEPTH FLEX_CODING_ORDER // encode pamera parameters in depth SPS 47 46 48 #define SONY_COLPIC_AVAILABILITY 1 47 49
Note: See TracChangeset for help on using the changeset viewer.