Changeset 310 in SHVCSoftware for trunk/source/Lib/TLibEncoder/TEncTop.h
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/SHM-2.1-dev (added) merged: 193-196,202,204,210-212,214-216,224,226-228,233-251,258,282-309
- Property svn:mergeinfo changed
-
trunk/source
- Property svn:mergeinfo changed
-
trunk/source/Lib/TLibEncoder/TEncTop.h
r191 r310 139 139 Bool m_bMFMEnabledFlag; 140 140 #endif 141 #if M0457_IL_SAMPLE_PRED_ONLY_FLAG 142 Int m_ilSampleOnlyPred; 143 #endif 141 144 #if SCALED_REF_LAYER_OFFSETS 142 Window m_scaledRefLayerWindow; 145 UInt m_numScaledRefLayerOffsets; 146 Window m_scaledRefLayerWindow[MAX_LAYERS]; 143 147 #endif 144 148 protected: … … 195 199 TComPPS* getPPS () { return &m_cPPS; } 196 200 Void selectReferencePictureSet(TComSlice* slice, Int POCCurr, Int GOPid ); 197 #if L0208_SOP_DESCRIPTION_SEI198 201 Int getReferencePictureSetIdxForSOP(TComSlice* slice, Int POCCurr, Int GOPid ); 199 #endif200 202 TComScalingList* getScalingList () { return &m_scalingList; } 201 203 #if SVC_EXTENSION … … 207 209 #endif 208 210 #if SCALED_REF_LAYER_OFFSETS 209 Window& getScaledRefLayerWindow() { return m_scaledRefLayerWindow; } 211 Void setNumScaledRefLayerOffsets(Int x) { m_numScaledRefLayerOffsets = x; } 212 UInt getNumScaledRefLayerOffsets() { return m_numScaledRefLayerOffsets; } 213 Window& getScaledRefLayerWindow(Int x) { return m_scaledRefLayerWindow[x]; } 210 214 #endif 211 215 … … 224 228 Bool getMFMEnabledFlag() {return m_bMFMEnabledFlag;} 225 229 #endif 230 #if M0457_IL_SAMPLE_PRED_ONLY_FLAG 231 Void setIlSampleOnlyPred( Int i ) { m_ilSampleOnlyPred = i; } 232 Int getIlSampleOnlyPred() { return m_ilSampleOnlyPred; } 233 #endif 226 234 #if AVC_SYNTAX 227 235 Void setBLSyntaxFile( fstream* pFile ) { m_pBLSyntaxFile = pFile; } … … 230 238 Void encode( TComPicYuv* pcPicYuvOrg, TComList<TComPicYuv*>& rcListPicYuvRecOut, std::list<AccessUnit>& accessUnitsOut, Int iPicIdInGOP ); 231 239 Void encodePrep( TComPicYuv* pcPicYuvOrg ); 232 #if VPS_EXTN_DIRECT_REF_LAYERS _CONTINUE233 TEncTop* getRefLayerEnc(UInt layerId);240 #if VPS_EXTN_DIRECT_REF_LAYERS 241 TEncTop* getRefLayerEnc(UInt refLayerIdc); 234 242 #endif 235 243 #else
Note: See TracChangeset for help on using the changeset viewer.