Changeset 262 in 3DVCSoftware for branches/HTM-5.1-dev2-Sony/source/Lib/TLibDecoder
- Timestamp:
- 7 Feb 2013, 06:01:05 (12 years ago)
- Location:
- branches/HTM-5.1-dev2-Sony/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-5.1-dev2-Sony/source/Lib/TLibDecoder/TDecCAVLC.cpp
r254 r262 1458 1458 } 1459 1459 } 1460 #if INTER_VIEW_VECTOR_SCALING_C0115 1461 READ_FLAG( uiCode, "inter_view_vector_scaling_flag" ); pcVPS->setIVScalingFlag( uiCode ? true:false); 1462 #endif 1460 1463 } 1461 1464 -
branches/HTM-5.1-dev2-Sony/source/Lib/TLibDecoder/TDecTop.cpp
r254 r262 254 254 m_iMaxRefPicNum = 0; 255 255 m_uiValidPS = 0; 256 #if SONY_COLPIC_AVAILABILITY257 m_iViewOrderIdx = 0;258 #endif259 256 #if ENC_DEC_TRACE 260 257 g_hTrace = fopen( "TraceDec.txt", "wb" ); … … 687 684 } 688 685 689 #if SONY_COLPIC_AVAILABILITY690 m_apcSlicePilot->setViewOrderIdx( m_apcSlicePilot->getSPS()->getViewOrderIdx());691 #endif692 693 686 #if NAL_REF_FLAG 694 687 m_apcSlicePilot->setReferenced(nalu.m_nalRefFlag); … … 768 761 xGetNewPicBuffer (m_apcSlicePilot, pcPic); 769 762 770 #if SONY_COLPIC_AVAILABILITY 771 pcPic->setViewOrderIdx( m_apcSlicePilot->getSPS()->getViewOrderIdx() ); 772 #endif 773 763 #if INTER_VIEW_VECTOR_SCALING_C0115 764 pcPic->setViewOrderIdx( m_apcSlicePilot->getVPS()->getViewOrderIdx(nalu.m_layerId) ); // will be changed to view_id 765 #endif 774 766 /* transfer any SEI messages that have been received to the picture */ 775 767 pcPic->setSEIs(m_SEIs); … … 996 988 #endif 997 989 998 #if SONY_COLPIC_AVAILABILITY990 #if INTER_VIEW_VECTOR_SCALING_C0115 999 991 #if VIDYO_VPS_INTEGRATION 1000 pcSlice->setViewOrderIdx( pcSlice->getVPS()->getViewOrderIdx(nalu.m_layerId) ); 992 pcSlice->setViewOrderIdx( pcSlice->getVPS()->getViewOrderIdx(nalu.m_layerId) ); // will be changed to view_id 1001 993 #else 1002 994 pcSlice->setViewOrderIdx( pcPic->getViewOrderIdx() ); 1003 995 #endif 996 #endif 997 998 #if INTER_VIEW_VECTOR_SCALING_C0115 999 pcSlice->setIVScalingFlag( pcSlice->getVPS()->getIVScalingFlag()); 1004 1000 #endif 1005 1001 -
branches/HTM-5.1-dev2-Sony/source/Lib/TLibDecoder/TDecTop.h
r210 r262 118 118 119 119 SEImessages *m_SEIs; ///< "all" SEI messages. If not NULL, we own the object. 120 121 #if SONY_COLPIC_AVAILABILITY122 Int m_iViewOrderIdx;123 #endif124 120 125 121 // functional classes … … 187 183 Void setIsDepth( Bool isDepth ) { m_isDepth = isDepth; } 188 184 189 #if SONY_COLPIC_AVAILABILITY190 Void setViewOrderIdx(Int i) { m_iViewOrderIdx = i ;}191 Int getViewOrderIdx() { return m_iViewOrderIdx ; }192 #endif193 194 185 #if DEPTH_MAP_GENERATION 195 186 TComDepthMapGenerator* getDepthMapGenerator () { return &m_cDepthMapGenerator; }
Note: See TracChangeset for help on using the changeset viewer.