Changeset 1079 in 3DVCSoftware
- Timestamp:
- 21 Oct 2014, 23:01:55 (10 years ago)
- Location:
- branches/HTM-12.1-dev0/source
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-12.1-dev0/source/App/TAppEncoder/TAppEncCfg.cpp
r1078 r1079 386 386 ("DLT", m_useDLT, true, "Depth lookup table") 387 387 #endif 388 #if MTK_SINGLE_DEPTH_MODE_I0095388 #if H_3D 389 389 ("SingleDepthMode", m_useSingleDepthMode, true, "Single depth mode") 390 390 #endif … … 2617 2617 printf("DLT:%d ", m_useDLT ); 2618 2618 #endif 2619 #if MTK_SINGLE_DEPTH_MODE_I00952619 #if H_3D 2620 2620 printf("SingleDepthMode:%d ", m_useSingleDepthMode); 2621 2621 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecCAVLC.cpp
r1078 r1079 2763 2763 } 2764 2764 assert( ( m_pcBitstream->getNumBitsRead() - posFollSliceSegHeaderExtLen ) == rpcSlice->getSliceSegmentHeaderExtensionLength() * 8 ); 2765 } 2765 2766 #else 2766 2767 READ_UVLC( uiCode, "slice_header_extension_length" ); … … 2770 2771 READ_CODE(8,ignore,"slice_header_extension_data_byte"); 2771 2772 } 2772 }2773 else2774 {2775 rpcSlice->setSliceSegmentHeaderExtensionLength( 0 );2776 rpcSlice->setPocMsbValPresentFlag( false );2777 2773 } 2778 2774 #endif -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecGop.cpp
r976 r1079 248 248 calcAndPrintHashStatus(*rpcPic->getPicYuvRec(), hash); 249 249 } 250 #if !H_MV 251 #if SETTING_PIC_OUTPUT_MARK 252 rpcPic->setOutputMark(rpcPic->getSlice(0)->getPicOutputFlag() ? true : false); 253 #else 254 rpcPic->setOutputMark(true); 255 #endif 256 rpcPic->setReconMark(true); 257 #endif 250 258 } 251 259 -
branches/HTM-12.1-dev0/source/Lib/TLibDecoder/TDecTop.cpp
r1078 r1079 1173 1173 #endif 1174 1174 #endif 1175 // For generalized B1176 1175 #if H_MV 1177 1176 if( m_layerId > 0 && !pcSlice->isIntra() && pcSlice->getEnableTMVPFlag() ) -
branches/HTM-12.1-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp
r1076 r1079 2300 2300 WRITE_FLAG(ptl->getFrameOnlyConstraintFlag(), "general_frame_only_constraint_flag"); 2301 2301 2302 #if H_MV 2302 2303 if( ptl->getV2ConstraintsPresentFlag() ) 2303 2304 { … … 2329 2330 WRITE_FLAG(0, "reserved_zero_bit"); 2330 2331 } 2332 #else 2333 WRITE_CODE(0 , 16, "XXX_reserved_zero_44bits[0..15]"); 2334 WRITE_CODE(0 , 16, "XXX_reserved_zero_44bits[16..31]"); 2335 WRITE_CODE(0 , 12, "XXX_reserved_zero_44bits[32..43]"); 2336 #endif 2331 2337 } 2332 2338
Note: See TracChangeset for help on using the changeset viewer.