Changeset 296 in 3DVCSoftware for trunk/source/Lib/TLibEncoder/TEncCavlc.h
- Timestamp:
- 20 Feb 2013, 22:07:43 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/Lib/TLibEncoder/TEncCavlc.h
r210 r296 88 88 Void xWriteUnaryMaxSymbol ( UInt uiSymbol, UInt uiMaxSymbol ); 89 89 90 #if RPS_IN_SPS91 90 Void codeShortTermRefPicSet ( TComSPS* pcSPS, TComReferencePictureSet* pcRPS ); 92 #else93 Void codeShortTermRefPicSet ( TComPPS* pcPPS, TComReferencePictureSet* pcRPS );94 #endif95 91 96 92 UInt xConvertToUInt ( Int iValue ) { return ( iValue <= 0) ? -iValue<<1 : (iValue<<1)-1; } … … 118 114 #endif 119 115 120 #if HHI_MPI 116 #if HHI_MPI || OL_QTLIMIT_PREDCODING_B0068 121 117 Void codeSPS ( TComSPS* pcSPS, Bool bIsDepth ); 122 118 #else … … 129 125 Void codeTileMarkerFlag(TComSlice* pcSlice); 130 126 131 #if TILES_WPP_ENTRY_POINT_SIGNALLING132 127 Void codeTilesWPPEntryPoint( TComSlice* pSlice ); 133 #else134 Void codeSliceHeaderSubstreamTable( TComSlice* pcSlice );135 #endif136 128 Void codeTerminatingBit ( UInt uilsLast ); 137 129 Void codeSliceFinish (); … … 139 131 Void encodeStart () {} 140 132 141 #if H HI_INTER_VIEW_MOTION_PRED133 #if H3D_IVMP 142 134 Void codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList, Int iNum ); 143 135 #else … … 148 140 Void codeAlfSvlc ( Int iCode ); 149 141 Void codeAlfCtrlDepth(); 150 #if LCU_SYNTAX_ALF151 142 Void codeAPSAlflag(UInt uiCode); 152 143 Void codeAlfFixedLengthIdx( UInt idx, UInt numFilterSetsInBuffer); 153 #endif154 144 Void codeSaoFlag ( UInt uiCode ); 155 145 Void codeSaoUvlc ( UInt uiCode ); 156 146 Void codeSaoSvlc ( Int iCode ); 157 #if SAO_UNIT_INTERLEAVING158 147 Void codeSaoRun ( UInt uiCode, UInt maxValue ); 159 148 Void codeSaoMergeLeft ( UInt uiCode, UInt compIdx ){;} … … 161 150 Void codeSaoTypeIdx ( UInt uiCode ){ xWriteUvlc(uiCode );} 162 151 Void codeSaoUflc ( UInt uiCode ){ assert(uiCode < 32); xWriteCode(uiCode, 5);} 163 #endif164 152 165 153 Void codeSkipFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); … … 169 157 Void codeMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); 170 158 Void codeMergeIndex ( TComDataCU* pcCU, UInt uiAbsPartIdx ); 171 #if H HI_INTER_VIEW_RESIDUAL_PRED159 #if H3D_IVRP 172 160 Void codeResPredFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx ); 173 161 #endif … … 189 177 Void codePredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx ); 190 178 191 #if BURST_IPCM192 179 Void codeIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx, Int numIPCM, Bool firstIPCMFlag); 193 #else194 Void codeIPCMInfo ( TComDataCU* pcCU, UInt uiAbsPartIdx );195 #endif196 180 197 181 Void codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx );
Note: See TracChangeset for help on using the changeset viewer.