Changeset 747 in 3DVCSoftware for branches/HTM-9.0r1-F0122/source/Lib/TLibDecoder
- Timestamp:
- 17 Dec 2013, 21:57:52 (11 years ago)
- Location:
- branches/HTM-9.0r1-F0122/source/Lib/TLibDecoder
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-9.0r1-F0122/source/Lib/TLibDecoder/TDecCAVLC.cpp
r724 r747 813 813 if( depthFlag ) 814 814 { 815 #if H_3DV 815 816 READ_FLAG( uiCode, "use_qtl_flag" ); 816 817 pcSPS->setUseQTL( uiCode ); 817 818 READ_FLAG( uiCode, "use_pc_flag" ); 818 819 pcSPS->setUsePC( uiCode ); 820 #else 821 pcSPS->setUsePC( 0 ); 822 #endif 819 823 } 820 824 #endif … … 1320 1324 } 1321 1325 } 1326 #if H_3DV 1322 1327 READ_FLAG( uiCode, "iv_mv_scaling_flag"); pcVPS->setIvMvScalingFlag( uiCode == 1 ? true : false ); 1328 #endif 1323 1329 } 1324 1330 #endif -
branches/HTM-9.0r1-F0122/source/Lib/TLibDecoder/TDecGop.cpp
r655 r747 224 224 rpcPic->destroyNonDBFilterInfo(); 225 225 } 226 #if H_3D 226 #if H_3DV 227 227 rpcPic->compressMotion(2); 228 228 #endif 229 #if !H_3D 229 #if !H_3DV 230 230 rpcPic->compressMotion(); 231 231 #endif -
branches/HTM-9.0r1-F0122/source/Lib/TLibDecoder/TDecSbac.cpp
r724 r747 851 851 852 852 UInt uiSymbol; 853 #if H_3D_QTLPC 853 #if H_3D_QTLPC && H_3DV 854 854 Bool bParseSplitFlag = true; 855 855 … … 878 878 DTRACE_CABAC_T( "\tSplitFlag\n" ) 879 879 #endif 880 #if H_3D_QTLPC 880 #if H_3D_QTLPC && H_3DV 881 881 } 882 882 else … … 901 901 PartSize eMode; 902 902 903 #if H_3D_QTLPC 903 #if H_3D_QTLPC && H_3DV 904 904 Bool bParsePartSize = true; 905 905 TComSPS *sps = pcCU->getPic()->getSlice(0)->getSPS(); … … 925 925 if ( pcCU->isIntra( uiAbsPartIdx ) ) 926 926 { 927 #if H_3D_QTLPC 927 #if H_3D_QTLPC && H_3DV 928 928 if(bParsePartSize) 929 929 { … … 938 938 } 939 939 eMode = uiSymbol ? SIZE_2Nx2N : SIZE_NxN; 940 #if H_3D_QTLPC 940 #if H_3D_QTLPC && H_3DV 941 941 } 942 942 #endif … … 956 956 else 957 957 { 958 #if H_3D_QTLPC 958 #if H_3D_QTLPC && H_3DV 959 959 if(bParsePartSize) 960 960 { … … 999 999 DTRACE_CU("part_mode", eMode ) 1000 1000 #endif 1001 #if H_3D_QTLPC 1001 #if H_3D_QTLPC && H_3DV 1002 1002 } 1003 1003 #endif
Note: See TracChangeset for help on using the changeset viewer.