1 | /* The copyright in this software is being made available under the BSD |
---|
2 | * License, included below. This software may be subject to other third party |
---|
3 | * and contributor rights, including patent rights, and no such rights are |
---|
4 | * granted under this license. |
---|
5 | * |
---|
6 | * Copyright (c) 2010-2012, ITU/ISO/IEC |
---|
7 | * All rights reserved. |
---|
8 | * |
---|
9 | * Redistribution and use in source and binary forms, with or without |
---|
10 | * modification, are permitted provided that the following conditions are met: |
---|
11 | * |
---|
12 | * * Redistributions of source code must retain the above copyright notice, |
---|
13 | * this list of conditions and the following disclaimer. |
---|
14 | * * Redistributions in binary form must reproduce the above copyright notice, |
---|
15 | * this list of conditions and the following disclaimer in the documentation |
---|
16 | * and/or other materials provided with the distribution. |
---|
17 | * * Neither the name of the ITU/ISO/IEC nor the names of its contributors may |
---|
18 | * be used to endorse or promote products derived from this software without |
---|
19 | * specific prior written permission. |
---|
20 | * |
---|
21 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
---|
22 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
23 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
24 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS |
---|
25 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
26 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
27 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
28 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
29 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
30 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
---|
31 | * THE POSSIBILITY OF SUCH DAMAGE. |
---|
32 | */ |
---|
33 | |
---|
34 | /** \file TEncCfg.h |
---|
35 | \brief encoder configuration class (header) |
---|
36 | */ |
---|
37 | |
---|
38 | #ifndef __TENCCFG__ |
---|
39 | #define __TENCCFG__ |
---|
40 | |
---|
41 | #if _MSC_VER > 1000 |
---|
42 | #pragma once |
---|
43 | #endif // _MSC_VER > 1000 |
---|
44 | |
---|
45 | #include "TLibCommon/CommonDef.h" |
---|
46 | #include <assert.h> |
---|
47 | |
---|
48 | struct GOPEntryMvc |
---|
49 | { |
---|
50 | Int m_POC; |
---|
51 | Int m_QPOffset; |
---|
52 | Double m_QPFactor; |
---|
53 | Int m_temporalId; |
---|
54 | Bool m_refPic; |
---|
55 | Int m_numRefPicsActive; |
---|
56 | Char m_sliceType; |
---|
57 | Int m_numRefPics; |
---|
58 | Int m_referencePics[MAX_NUM_REF_PICS]; |
---|
59 | Int m_usedByCurrPic[MAX_NUM_REF_PICS]; |
---|
60 | Bool m_interRPSPrediction; |
---|
61 | Int m_deltaRIdxMinus1; |
---|
62 | Int m_deltaRPS; |
---|
63 | Int m_numRefIdc; |
---|
64 | Int m_refIdc[MAX_NUM_REF_PICS+1]; |
---|
65 | Int m_numInterViewRefPics; |
---|
66 | Int m_interViewRefs[MAX_NUM_REF_PICS]; |
---|
67 | Int m_interViewRefPosL0[MAX_NUM_REF_PICS]; |
---|
68 | Int m_interViewRefPosL1[MAX_NUM_REF_PICS]; |
---|
69 | GOPEntryMvc() |
---|
70 | : m_POC(-1) |
---|
71 | , m_QPOffset() |
---|
72 | , m_QPFactor() |
---|
73 | , m_temporalId() |
---|
74 | , m_refPic() |
---|
75 | , m_numRefPicsActive() |
---|
76 | , m_sliceType() |
---|
77 | , m_numRefPics() |
---|
78 | , m_interRPSPrediction() |
---|
79 | , m_deltaRIdxMinus1() |
---|
80 | , m_deltaRPS() |
---|
81 | , m_numRefIdc() |
---|
82 | , m_numInterViewRefPics() |
---|
83 | { |
---|
84 | ::memset( m_referencePics, 0, sizeof(m_referencePics) ); |
---|
85 | ::memset( m_usedByCurrPic, 0, sizeof(m_usedByCurrPic) ); |
---|
86 | ::memset( m_refIdc, 0, sizeof(m_refIdc) ); |
---|
87 | ::memset( m_interViewRefs, 0, sizeof(m_interViewRefs) ); |
---|
88 | ::memset( m_interViewRefPosL0, 0, sizeof(m_interViewRefPosL0) ); |
---|
89 | ::memset( m_interViewRefPosL1, 0, sizeof(m_interViewRefPosL1) ); |
---|
90 | } |
---|
91 | }; |
---|
92 | |
---|
93 | std::istringstream &operator>>(std::istringstream &in, GOPEntryMvc &entry); |
---|
94 | |
---|
95 | //! \ingroup TLibEncoder |
---|
96 | //! \{ |
---|
97 | |
---|
98 | // ==================================================================================================================== |
---|
99 | // Class definition |
---|
100 | // ==================================================================================================================== |
---|
101 | |
---|
102 | /// encoder configuration class |
---|
103 | class TEncCfg |
---|
104 | { |
---|
105 | protected: |
---|
106 | //==== File I/O ======== |
---|
107 | Int m_iFrameRate; |
---|
108 | Int m_FrameSkip; |
---|
109 | Int m_iSourceWidth; |
---|
110 | Int m_iSourceHeight; |
---|
111 | #if PIC_CROPPING |
---|
112 | Int m_croppingMode; |
---|
113 | Int m_cropLeft; |
---|
114 | Int m_cropRight; |
---|
115 | Int m_cropTop; |
---|
116 | Int m_cropBottom; |
---|
117 | #endif |
---|
118 | Int m_iFrameToBeEncoded; |
---|
119 | Double m_adLambdaModifier[ MAX_TLAYER ]; |
---|
120 | |
---|
121 | //====== Coding Structure ======== |
---|
122 | UInt m_uiIntraPeriod; |
---|
123 | UInt m_uiDecodingRefreshType; ///< the type of decoding refresh employed for the random access. |
---|
124 | Int m_iGOPSize; |
---|
125 | GOPEntryMvc m_GOPList[MAX_GOP+1]; |
---|
126 | Int m_extraRPSs; |
---|
127 | #if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER |
---|
128 | Int m_maxDecPicBuffering[MAX_TLAYER]; |
---|
129 | Int m_numReorderPics[MAX_TLAYER]; |
---|
130 | #else |
---|
131 | Int m_maxNumberOfReferencePictures; |
---|
132 | Int m_numReorderFrames; |
---|
133 | #endif |
---|
134 | |
---|
135 | Int m_iQP; // if (AdaptiveQP == OFF) |
---|
136 | |
---|
137 | Int m_aiTLayerQPOffset[MAX_TLAYER]; |
---|
138 | Int m_aiPad[2]; |
---|
139 | |
---|
140 | |
---|
141 | Int m_iMaxRefPicNum; ///< this is used to mimic the sliding mechanism used by the decoder |
---|
142 | // TODO: We need to have a common sliding mechanism used by both the encoder and decoder |
---|
143 | |
---|
144 | #if H0566_TLA |
---|
145 | Int m_maxTempLayer; ///< Max temporal layer |
---|
146 | #else |
---|
147 | Bool m_bTLayering; ///< indicates whether temporal IDs are set based on the hierarchical coding structure |
---|
148 | Bool m_abTLayerSwitchingFlag[MAX_TLAYER]; ///< temporal layer switching flags corresponding to temporal layer |
---|
149 | #endif |
---|
150 | Bool m_bDisInter4x4; |
---|
151 | Bool m_useAMP; |
---|
152 | //======= Transform ============= |
---|
153 | UInt m_uiQuadtreeTULog2MaxSize; |
---|
154 | UInt m_uiQuadtreeTULog2MinSize; |
---|
155 | UInt m_uiQuadtreeTUMaxDepthInter; |
---|
156 | UInt m_uiQuadtreeTUMaxDepthIntra; |
---|
157 | |
---|
158 | Bool m_useNSQT; |
---|
159 | |
---|
160 | //====== Loop/Deblock Filter ======== |
---|
161 | Bool m_bLoopFilterDisable; |
---|
162 | Bool m_loopFilterOffsetInAPS; |
---|
163 | Int m_loopFilterBetaOffsetDiv2; |
---|
164 | Int m_loopFilterTcOffsetDiv2; |
---|
165 | #if DBL_CONTROL |
---|
166 | Bool m_DeblockingFilterControlPresent; |
---|
167 | #endif |
---|
168 | Bool m_bUseSAO; |
---|
169 | #if SAO_UNIT_INTERLEAVING |
---|
170 | Int m_maxNumOffsetsPerPic; |
---|
171 | Bool m_saoInterleavingFlag; |
---|
172 | #endif |
---|
173 | |
---|
174 | //====== Lossless ======== |
---|
175 | #if LOSSLESS_CODING |
---|
176 | Bool m_useLossless; |
---|
177 | #endif |
---|
178 | //====== Motion search ======== |
---|
179 | Int m_iFastSearch; // 0:Full search 1:Diamond 2:PMVFAST |
---|
180 | Int m_iSearchRange; // 0:Full frame |
---|
181 | Int m_bipredSearchRange; |
---|
182 | |
---|
183 | //====== Quality control ======== |
---|
184 | Int m_iMaxDeltaQP; // Max. absolute delta QP (1:default) |
---|
185 | Int m_iMaxCuDQPDepth; // Max. depth for a minimum CuDQP (0:default) |
---|
186 | |
---|
187 | Int m_iChromaQpOffset ; // ChromaQpOffset (0:default) |
---|
188 | Int m_iChromaQpOffset2nd; // ChromaQpOffset2nd (0:default) |
---|
189 | |
---|
190 | #if ADAPTIVE_QP_SELECTION |
---|
191 | Bool m_bUseAdaptQpSelect; |
---|
192 | #endif |
---|
193 | |
---|
194 | Bool m_bUseAdaptiveQP; |
---|
195 | Int m_iQPAdaptationRange; |
---|
196 | |
---|
197 | #if HHI_VSO |
---|
198 | //====== View Synthesis Optimization ====== |
---|
199 | Bool m_bUseVSO; |
---|
200 | Bool m_bForceLambdaScale; |
---|
201 | #if HHI_VSO_DIST_INT |
---|
202 | Bool m_bAllowNegDist; |
---|
203 | #endif |
---|
204 | Double m_dLambdaScaleVSO; |
---|
205 | UInt m_uiVSOMode; |
---|
206 | #endif |
---|
207 | #if SAIT_VSO_EST_A0033 |
---|
208 | Bool m_bUseEstimatedVSD; |
---|
209 | Double m_dDispCoeff; |
---|
210 | #endif |
---|
211 | |
---|
212 | |
---|
213 | //====== Tool list ======== |
---|
214 | Bool m_bUseSBACRD; |
---|
215 | Bool m_bUseALF; |
---|
216 | Int m_iALFEncodePassReduction; |
---|
217 | |
---|
218 | Int m_iALFMaxNumberFilters; |
---|
219 | #if LCU_SYNTAX_ALF |
---|
220 | Bool m_bALFParamInSlice; |
---|
221 | Bool m_bALFPicBasedEncode; |
---|
222 | #endif |
---|
223 | |
---|
224 | Bool m_bUseASR; |
---|
225 | Bool m_bUseHADME; |
---|
226 | Bool m_bUseLComb; |
---|
227 | Bool m_bLCMod; |
---|
228 | Bool m_bUseRDOQ; |
---|
229 | #if !PIC_CROPPING |
---|
230 | Bool m_bUsePAD; |
---|
231 | #endif |
---|
232 | Bool m_bUseFastEnc; |
---|
233 | Bool m_bUseEarlyCU; |
---|
234 | |
---|
235 | #if FAST_DECISION_FOR_MRG_RD_COST |
---|
236 | Bool m_useFastDecisionForMerge; |
---|
237 | #endif |
---|
238 | Bool m_bUseCbfFastMode; |
---|
239 | Bool m_bUseLMChroma; |
---|
240 | #if HHI_MPI |
---|
241 | Bool m_bUseMVI; |
---|
242 | #endif |
---|
243 | |
---|
244 | Int* m_aidQP; |
---|
245 | UInt m_uiDeltaQpRD; |
---|
246 | |
---|
247 | Bool m_bUseConstrainedIntraPred; |
---|
248 | Bool m_usePCM; |
---|
249 | UInt m_pcmLog2MaxSize; |
---|
250 | UInt m_uiPCMLog2MinSize; |
---|
251 | //====== Slice ======== |
---|
252 | Int m_iSliceMode; |
---|
253 | Int m_iSliceArgument; |
---|
254 | //====== Entropy Slice ======== |
---|
255 | Int m_iEntropySliceMode; |
---|
256 | Int m_iEntropySliceArgument; |
---|
257 | Int m_iSliceGranularity; |
---|
258 | Bool m_bLFCrossSliceBoundaryFlag; |
---|
259 | |
---|
260 | Bool m_bPCMInputBitDepthFlag; |
---|
261 | UInt m_uiPCMBitDepthLuma; |
---|
262 | UInt m_uiPCMBitDepthChroma; |
---|
263 | Bool m_bPCMFilterDisableFlag; |
---|
264 | Int m_iTileBehaviorControlPresentFlag; |
---|
265 | Bool m_bLFCrossTileBoundaryFlag; |
---|
266 | Int m_iColumnRowInfoPresent; |
---|
267 | Int m_iUniformSpacingIdr; |
---|
268 | Int m_iTileBoundaryIndependenceIdr; |
---|
269 | Int m_iNumColumnsMinus1; |
---|
270 | UInt* m_puiColumnWidth; |
---|
271 | Int m_iNumRowsMinus1; |
---|
272 | UInt* m_puiRowHeight; |
---|
273 | Int m_iTileLocationInSliceHeaderFlag; //< enable(1)/disable(0) transmitssion of tile location in slice header |
---|
274 | |
---|
275 | Int m_iTileMarkerFlag; //< enable(1)/disable(0) transmitssion of light weight tile marker |
---|
276 | Int m_iMaxTileMarkerEntryPoints; //< maximum number of tile markers allowed in a slice (controls degree of parallelism) |
---|
277 | Double m_dMaxTileMarkerOffset; //< Calculated offset. Light weight tile markers will be transmitted for TileIdx= Offset, 2*Offset, 3*Offset ... |
---|
278 | |
---|
279 | Int m_iWaveFrontSynchro; |
---|
280 | Int m_iWaveFrontFlush; |
---|
281 | Int m_iWaveFrontSubstreams; |
---|
282 | |
---|
283 | bool m_pictureDigestEnabled; ///< enable(1)/disable(0) md5 computation and SEI signalling |
---|
284 | |
---|
285 | //====== Weighted Prediction ======== |
---|
286 | Bool m_bUseWeightPred; //< Use of Weighting Prediction (P_SLICE) |
---|
287 | UInt m_uiBiPredIdc; //< Use of Bi-Directional Weighting Prediction (B_SLICE) |
---|
288 | Int m_useScalingListId; ///< Using quantization matrix i.e. 0=off, 1=default, 2=file. |
---|
289 | char* m_scalingListFile; ///< quantization matrix file name |
---|
290 | |
---|
291 | Bool m_bEnableTMVP; |
---|
292 | #if MULTIBITS_DATA_HIDING |
---|
293 | Int m_signHideFlag; |
---|
294 | Int m_signHidingThreshold; |
---|
295 | #endif |
---|
296 | |
---|
297 | #if VIDYO_VPS_INTEGRATION |
---|
298 | UInt m_layerId; |
---|
299 | #endif |
---|
300 | |
---|
301 | Int m_viewId; |
---|
302 | Bool m_isDepth; |
---|
303 | |
---|
304 | #if HHI_INTERVIEW_SKIP |
---|
305 | Bool m_bInterViewSkip; |
---|
306 | #if HHI_INTERVIEW_SKIP_LAMBDA_SCALE |
---|
307 | Double m_dInterViewSkipLambdaScale; |
---|
308 | #endif |
---|
309 | #endif |
---|
310 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
311 | Bool m_bUseDMM; |
---|
312 | #endif |
---|
313 | |
---|
314 | Int m_iViewOrderIdx; |
---|
315 | |
---|
316 | UInt m_uiCamParPrecision; |
---|
317 | Bool m_bCamParInSliceHeader; |
---|
318 | Int** m_aaiCodedScale; |
---|
319 | Int** m_aaiCodedOffset; |
---|
320 | |
---|
321 | #if DEPTH_MAP_GENERATION |
---|
322 | UInt m_uiPredDepthMapGeneration; |
---|
323 | UInt m_uiPdmPrecision; |
---|
324 | Int** m_aaiPdmScaleNomDelta; |
---|
325 | Int** m_aaiPdmOffset; |
---|
326 | #endif |
---|
327 | |
---|
328 | #if HHI_INTER_VIEW_MOTION_PRED |
---|
329 | UInt m_uiMultiviewMvPredMode; |
---|
330 | UInt m_uiMultiviewMvRegMode; |
---|
331 | Double m_dMultiviewMvRegLambdaScale; |
---|
332 | #endif |
---|
333 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
334 | UInt m_uiMultiviewResPredMode; |
---|
335 | #endif |
---|
336 | |
---|
337 | public: |
---|
338 | TEncCfg() {} |
---|
339 | virtual ~TEncCfg() |
---|
340 | { |
---|
341 | if( m_iUniformSpacingIdr == 0 ) |
---|
342 | { |
---|
343 | if( m_iNumColumnsMinus1 ) |
---|
344 | { |
---|
345 | delete[] m_puiColumnWidth; |
---|
346 | m_puiColumnWidth = NULL; |
---|
347 | } |
---|
348 | if( m_iNumRowsMinus1 ) |
---|
349 | { |
---|
350 | delete[] m_puiRowHeight; |
---|
351 | m_puiRowHeight = NULL; |
---|
352 | } |
---|
353 | } |
---|
354 | m_iTileLocationInSliceHeaderFlag = 0; |
---|
355 | m_iTileMarkerFlag = 0; |
---|
356 | } |
---|
357 | |
---|
358 | Void setFrameRate ( Int i ) { m_iFrameRate = i; } |
---|
359 | Void setFrameSkip ( unsigned int i ) { m_FrameSkip = i; } |
---|
360 | Void setSourceWidth ( Int i ) { m_iSourceWidth = i; } |
---|
361 | Void setSourceHeight ( Int i ) { m_iSourceHeight = i; } |
---|
362 | #if PIC_CROPPING |
---|
363 | Void setCroppingMode ( Int i ) { m_croppingMode = i; } |
---|
364 | Void setCropLeft ( Int i ) { m_cropLeft = i; } |
---|
365 | Void setCropRight ( Int i ) { m_cropRight = i; } |
---|
366 | Void setCropTop ( Int i ) { m_cropTop = i; } |
---|
367 | Void setCropBottom ( Int i ) { m_cropBottom = i; } |
---|
368 | #endif |
---|
369 | Void setFrameToBeEncoded ( Int i ) { m_iFrameToBeEncoded = i; } |
---|
370 | |
---|
371 | //====== Coding Structure ======== |
---|
372 | Void setIntraPeriod ( Int i ) { m_uiIntraPeriod = (UInt)i; } |
---|
373 | Void setDecodingRefreshType ( Int i ) { m_uiDecodingRefreshType = (UInt)i; } |
---|
374 | Void setGOPSize ( Int i ) { m_iGOPSize = i; } |
---|
375 | Void setGopList ( GOPEntryMvc* GOPList ) { for( Int i = 0; i < MAX_GOP+1; i++ ) m_GOPList[i] = GOPList[i]; } |
---|
376 | Void setExtraRPSs ( Int i ) { m_extraRPSs = i; } |
---|
377 | GOPEntryMvc getGOPEntry ( Int i ) { return m_GOPList[i]; } |
---|
378 | #if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER |
---|
379 | Void setMaxDecPicBuffering ( UInt u, UInt tlayer ) { m_maxDecPicBuffering[tlayer] = u; } |
---|
380 | Void setNumReorderPics ( Int i, UInt tlayer ) { m_numReorderPics[tlayer] = i; } |
---|
381 | #else |
---|
382 | Void setMaxNumberOfReferencePictures ( Int u ) { m_maxNumberOfReferencePictures = u; } |
---|
383 | Void setNumReorderFrames ( Int i ) { m_numReorderFrames = i; } |
---|
384 | #endif |
---|
385 | |
---|
386 | #if HHI_INTERVIEW_SKIP |
---|
387 | Void setInterViewSkip ( UInt u ) { m_bInterViewSkip = u; } |
---|
388 | Bool getInterViewSkip ( ) { return m_bInterViewSkip ;} |
---|
389 | #if HHI_INTERVIEW_SKIP_LAMBDA_SCALE |
---|
390 | Void setInterViewSkipLambdaScale ( UInt u ) { m_dInterViewSkipLambdaScale = u; } |
---|
391 | Double getInterViewSkipLambdaScale () { return m_dInterViewSkipLambdaScale; } |
---|
392 | #endif |
---|
393 | #endif |
---|
394 | Void setQP ( Int i ) { m_iQP = i; } |
---|
395 | |
---|
396 | Void setTemporalLayerQPOffset ( Int* piTemporalLayerQPOffset ) { for ( Int i = 0; i < MAX_TLAYER; i++ ) m_aiTLayerQPOffset[i] = piTemporalLayerQPOffset[i]; } |
---|
397 | Void setPad ( Int* iPad ) { for ( Int i = 0; i < 2; i++ ) m_aiPad[i] = iPad[i]; } |
---|
398 | |
---|
399 | Int getMaxRefPicNum () { return m_iMaxRefPicNum; } |
---|
400 | Void setMaxRefPicNum ( Int iMaxRefPicNum ) { m_iMaxRefPicNum = iMaxRefPicNum; } |
---|
401 | |
---|
402 | #if H0566_TLA |
---|
403 | Bool getMaxTempLayer () { return m_maxTempLayer; } |
---|
404 | Void setMaxTempLayer ( Int maxTempLayer ) { m_maxTempLayer = maxTempLayer; } |
---|
405 | #else |
---|
406 | Bool getTLayering () { return m_bTLayering; } |
---|
407 | Void setTLayering ( Bool bTLayering ) { m_bTLayering = bTLayering; } |
---|
408 | Bool getTLayerSwitchingFlag ( UInt uiTLayer ) { assert (uiTLayer < MAX_TLAYER ); return m_abTLayerSwitchingFlag[uiTLayer]; } |
---|
409 | Void setTLayerSwitchingFlag ( Bool* pbTLayerSwitchingFlag ) { for ( Int i = 0; i < MAX_TLAYER; i++ ) m_abTLayerSwitchingFlag[i] = pbTLayerSwitchingFlag[i]; } |
---|
410 | #endif |
---|
411 | |
---|
412 | Bool getDisInter4x4 () { return m_bDisInter4x4; } |
---|
413 | Void setDisInter4x4 ( Bool b ) { m_bDisInter4x4 = b; } |
---|
414 | Bool isDepthCoder () { return m_isDepth; } |
---|
415 | |
---|
416 | #if DEPTH_MAP_GENERATION |
---|
417 | Void setPredDepthMapGeneration ( UInt u ) { m_uiPredDepthMapGeneration = u; } |
---|
418 | Void setPdmPrecision ( UInt u ) { m_uiPdmPrecision = u; } |
---|
419 | Void setPdmScaleNomDelta ( Int** p ) { m_aaiPdmScaleNomDelta = p; } |
---|
420 | Void setPdmOffset ( Int** p ) { m_aaiPdmOffset = p; } |
---|
421 | #endif |
---|
422 | |
---|
423 | #if HHI_INTER_VIEW_MOTION_PRED |
---|
424 | Void setMultiviewMvPredMode ( UInt u ) { m_uiMultiviewMvPredMode = u; } |
---|
425 | Void setMultiviewMvRegMode ( UInt u ) { m_uiMultiviewMvRegMode = u; } |
---|
426 | Void setMultiviewMvRegLambdaScale ( Double d) { m_dMultiviewMvRegLambdaScale = d; } |
---|
427 | #endif |
---|
428 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
---|
429 | Void setMultiviewResPredMode ( UInt u ) { m_uiMultiviewResPredMode = u; } |
---|
430 | #endif |
---|
431 | |
---|
432 | //======== Transform ============= |
---|
433 | Void setQuadtreeTULog2MaxSize ( UInt u ) { m_uiQuadtreeTULog2MaxSize = u; } |
---|
434 | Void setQuadtreeTULog2MinSize ( UInt u ) { m_uiQuadtreeTULog2MinSize = u; } |
---|
435 | Void setQuadtreeTUMaxDepthInter ( UInt u ) { m_uiQuadtreeTUMaxDepthInter = u; } |
---|
436 | Void setQuadtreeTUMaxDepthIntra ( UInt u ) { m_uiQuadtreeTUMaxDepthIntra = u; } |
---|
437 | |
---|
438 | Void setUseNSQT( Bool b ) { m_useNSQT = b; } |
---|
439 | Void setUseAMP( Bool b ) { m_useAMP = b; } |
---|
440 | |
---|
441 | //====== Loop/Deblock Filter ======== |
---|
442 | Void setLoopFilterDisable ( Bool b ) { m_bLoopFilterDisable = b; } |
---|
443 | Void setLoopFilterOffsetInAPS ( Bool b ) { m_loopFilterOffsetInAPS = b; } |
---|
444 | Void setLoopFilterBetaOffset ( Int i ) { m_loopFilterBetaOffsetDiv2 = i; } |
---|
445 | Void setLoopFilterTcOffset ( Int i ) { m_loopFilterTcOffsetDiv2 = i; } |
---|
446 | #if DBL_CONTROL |
---|
447 | Void setDeblockingFilterControlPresent ( Bool b ) { m_DeblockingFilterControlPresent = b; } |
---|
448 | #endif |
---|
449 | |
---|
450 | //====== Motion search ======== |
---|
451 | Void setFastSearch ( Int i ) { m_iFastSearch = i; } |
---|
452 | Void setSearchRange ( Int i ) { m_iSearchRange = i; } |
---|
453 | Void setBipredSearchRange ( Int i ) { m_bipredSearchRange = i; } |
---|
454 | |
---|
455 | #if HHI_INTER_VIEW_MOTION_PRED |
---|
456 | UInt getMultiviewMvRegMode () { return m_uiMultiviewMvRegMode; } |
---|
457 | Double getMultiviewMvRegLambdaScale () { return m_dMultiviewMvRegLambdaScale; } |
---|
458 | #endif |
---|
459 | |
---|
460 | #if HHI_VSO |
---|
461 | //==== VSO ========== |
---|
462 | Void setVSOMode ( UInt ui ) { m_uiVSOMode = ui; } |
---|
463 | Void setForceLambdaScaleVSO ( Bool b ) { m_bForceLambdaScale = b; }; |
---|
464 | Void setLambdaScaleVSO ( Double d ) { m_dLambdaScaleVSO = d; }; |
---|
465 | #if HHI_VSO_DIST_INT |
---|
466 | Void setAllowNegDist ( Bool b ) { m_bAllowNegDist = b; }; |
---|
467 | #endif |
---|
468 | #endif |
---|
469 | |
---|
470 | //====== Quality control ======== |
---|
471 | Void setMaxDeltaQP ( Int i ) { m_iMaxDeltaQP = i; } |
---|
472 | Void setMaxCuDQPDepth ( Int i ) { m_iMaxCuDQPDepth = i; } |
---|
473 | |
---|
474 | Void setChromaQpOffset ( Int i ) { m_iChromaQpOffset = i; } |
---|
475 | Void setChromaQpOffset2nd ( Int i ) { m_iChromaQpOffset2nd = i; } |
---|
476 | |
---|
477 | #if ADAPTIVE_QP_SELECTION |
---|
478 | Void setUseAdaptQpSelect ( Bool i ) { m_bUseAdaptQpSelect = i; } |
---|
479 | Bool getUseAdaptQpSelect () { return m_bUseAdaptQpSelect; } |
---|
480 | #endif |
---|
481 | |
---|
482 | Void setUseAdaptiveQP ( Bool b ) { m_bUseAdaptiveQP = b; } |
---|
483 | Void setQPAdaptationRange ( Int i ) { m_iQPAdaptationRange = i; } |
---|
484 | |
---|
485 | //====== Lossless ======== |
---|
486 | #if LOSSLESS_CODING |
---|
487 | Void setUseLossless (Bool b ) { m_useLossless = b; } |
---|
488 | #endif |
---|
489 | //====== Sequence ======== |
---|
490 | Int getFrameRate () { return m_iFrameRate; } |
---|
491 | unsigned int getFrameSkip () { return m_FrameSkip; } |
---|
492 | Int getSourceWidth () { return m_iSourceWidth; } |
---|
493 | Int getSourceHeight () { return m_iSourceHeight; } |
---|
494 | #if PIC_CROPPING |
---|
495 | Int getCroppingMode () { return m_croppingMode; } |
---|
496 | Int getCropLeft () { return m_cropLeft; } |
---|
497 | Int getCropRight () { return m_cropRight; } |
---|
498 | Int getCropTop () { return m_cropTop; } |
---|
499 | Int getCropBottom () { return m_cropBottom; } |
---|
500 | #endif |
---|
501 | Int getFrameToBeEncoded () { return m_iFrameToBeEncoded; } |
---|
502 | void setLambdaModifier ( UInt uiIndex, Double dValue ) { m_adLambdaModifier[ uiIndex ] = dValue; } |
---|
503 | Double getLambdaModifier ( UInt uiIndex ) const { return m_adLambdaModifier[ uiIndex ]; } |
---|
504 | |
---|
505 | //==== Coding Structure ======== |
---|
506 | UInt getIntraPeriod () { return m_uiIntraPeriod; } |
---|
507 | UInt getDecodingRefreshType () { return m_uiDecodingRefreshType; } |
---|
508 | Int getGOPSize () { return m_iGOPSize; } |
---|
509 | #if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER |
---|
510 | Int getMaxDecPicBuffering (UInt tlayer) { return m_maxDecPicBuffering[tlayer]; } |
---|
511 | Int getNumReorderPics (UInt tlayer) { return m_numReorderPics[tlayer]; } |
---|
512 | #else |
---|
513 | Int getMaxNumberOfReferencePictures () { return m_maxNumberOfReferencePictures; } |
---|
514 | Int geNumReorderFrames () { return m_numReorderFrames; } |
---|
515 | #endif |
---|
516 | Int getQP () { return m_iQP; } |
---|
517 | |
---|
518 | Int getTemporalLayerQPOffset ( Int i ) { assert (i < MAX_TLAYER ); return m_aiTLayerQPOffset[i]; } |
---|
519 | Int getPad ( Int i ) { assert (i < 2 ); return m_aiPad[i]; } |
---|
520 | |
---|
521 | //======== Transform ============= |
---|
522 | UInt getQuadtreeTULog2MaxSize () const { return m_uiQuadtreeTULog2MaxSize; } |
---|
523 | UInt getQuadtreeTULog2MinSize () const { return m_uiQuadtreeTULog2MinSize; } |
---|
524 | UInt getQuadtreeTUMaxDepthInter () const { return m_uiQuadtreeTUMaxDepthInter; } |
---|
525 | UInt getQuadtreeTUMaxDepthIntra () const { return m_uiQuadtreeTUMaxDepthIntra; } |
---|
526 | |
---|
527 | //==== Loop/Deblock Filter ======== |
---|
528 | Bool getLoopFilterDisable () { return m_bLoopFilterDisable; } |
---|
529 | Bool getLoopFilterOffsetInAPS () { return m_loopFilterOffsetInAPS; } |
---|
530 | Int getLoopFilterBetaOffset () { return m_loopFilterBetaOffsetDiv2; } |
---|
531 | Int getLoopFilterTcOffset () { return m_loopFilterTcOffsetDiv2; } |
---|
532 | #if DBL_CONTROL |
---|
533 | Bool getDeblockingFilterControlPresent() { return m_DeblockingFilterControlPresent; } |
---|
534 | #endif |
---|
535 | |
---|
536 | //==== Motion search ======== |
---|
537 | Int getFastSearch () { return m_iFastSearch; } |
---|
538 | Int getSearchRange () { return m_iSearchRange; } |
---|
539 | |
---|
540 | #if HHI_VSO |
---|
541 | //==== VSO ========== |
---|
542 | UInt getVSOMode () { return m_uiVSOMode; } |
---|
543 | Bool getForceLambdaScaleVSO () { return m_bForceLambdaScale; } |
---|
544 | Double getLambdaScaleVSO () { return m_dLambdaScaleVSO; } |
---|
545 | #if HHI_VSO_DIST_INT |
---|
546 | Bool getAllowNegDist () { return m_bAllowNegDist; } |
---|
547 | #endif |
---|
548 | #endif |
---|
549 | |
---|
550 | //==== Quality control ======== |
---|
551 | Int getMaxDeltaQP () { return m_iMaxDeltaQP; } |
---|
552 | Int getMaxCuDQPDepth () { return m_iMaxCuDQPDepth; } |
---|
553 | Bool getUseAdaptiveQP () { return m_bUseAdaptiveQP; } |
---|
554 | Int getQPAdaptationRange () { return m_iQPAdaptationRange; } |
---|
555 | //====== Lossless ======== |
---|
556 | #if LOSSLESS_CODING |
---|
557 | Bool getUseLossless () { return m_useLossless; } |
---|
558 | #endif |
---|
559 | |
---|
560 | //==== Tool list ======== |
---|
561 | Void setUseSBACRD ( Bool b ) { m_bUseSBACRD = b; } |
---|
562 | Void setUseASR ( Bool b ) { m_bUseASR = b; } |
---|
563 | Void setUseHADME ( Bool b ) { m_bUseHADME = b; } |
---|
564 | Void setUseALF ( Bool b ) { m_bUseALF = b; } |
---|
565 | Void setUseLComb ( Bool b ) { m_bUseLComb = b; } |
---|
566 | Void setLCMod ( Bool b ) { m_bLCMod = b; } |
---|
567 | Void setUseRDOQ ( Bool b ) { m_bUseRDOQ = b; } |
---|
568 | #if !PIC_CROPPING |
---|
569 | Void setUsePAD ( Bool b ) { m_bUsePAD = b; } |
---|
570 | #endif |
---|
571 | #if HHI_VSO |
---|
572 | Void setUseVSO ( Bool b ) { m_bUseVSO = b; } |
---|
573 | #endif |
---|
574 | |
---|
575 | #if SAIT_VSO_EST_A0033 |
---|
576 | Void setUseEstimatedVSD ( Bool b ) { m_bUseEstimatedVSD = b; } |
---|
577 | Void setDispCoeff ( Double d ) { m_dDispCoeff = d; } |
---|
578 | #endif |
---|
579 | |
---|
580 | Void setUseFastEnc ( Bool b ) { m_bUseFastEnc = b; } |
---|
581 | Void setUseEarlyCU ( Bool b ) { m_bUseEarlyCU = b; } |
---|
582 | #if FAST_DECISION_FOR_MRG_RD_COST |
---|
583 | Void setUseFastDecisionForMerge ( Bool b ) { m_useFastDecisionForMerge = b; } |
---|
584 | #endif |
---|
585 | Void setUseCbfFastMode ( Bool b ) { m_bUseCbfFastMode = b; } |
---|
586 | Void setUseConstrainedIntraPred ( Bool b ) { m_bUseConstrainedIntraPred = b; } |
---|
587 | Void setPCMInputBitDepthFlag ( Bool b ) { m_bPCMInputBitDepthFlag = b; } |
---|
588 | Void setPCMFilterDisableFlag ( Bool b ) { m_bPCMFilterDisableFlag = b; } |
---|
589 | Void setUsePCM ( Bool b ) { m_usePCM = b; } |
---|
590 | Void setPCMLog2MaxSize ( UInt u ) { m_pcmLog2MaxSize = u; } |
---|
591 | Void setPCMLog2MinSize ( UInt u ) { m_uiPCMLog2MinSize = u; } |
---|
592 | Void setdQPs ( Int* p ) { m_aidQP = p; } |
---|
593 | Void setDeltaQpRD ( UInt u ) {m_uiDeltaQpRD = u; } |
---|
594 | Bool getUseSBACRD () { return m_bUseSBACRD; } |
---|
595 | Bool getUseASR () { return m_bUseASR; } |
---|
596 | Bool getUseHADME () { return m_bUseHADME; } |
---|
597 | Bool getUseALF () { return m_bUseALF; } |
---|
598 | Void setALFEncodePassReduction (Int i) { m_iALFEncodePassReduction = i; } |
---|
599 | Int getALFEncodePassReduction () { return m_iALFEncodePassReduction; } |
---|
600 | |
---|
601 | Void setALFMaxNumberFilters (Int i) { m_iALFMaxNumberFilters = i; } |
---|
602 | Int getALFMaxNumberFilters () { return m_iALFMaxNumberFilters; } |
---|
603 | #if LCU_SYNTAX_ALF |
---|
604 | Void setALFParamInSlice (Bool b) {m_bALFParamInSlice = b;} |
---|
605 | Bool getALFParamInSlice () {return m_bALFParamInSlice;} |
---|
606 | Void setALFPicBasedEncode (Bool b) {m_bALFPicBasedEncode = b;} |
---|
607 | Bool getALFPicBasedEncode () {return m_bALFPicBasedEncode;} |
---|
608 | #endif |
---|
609 | |
---|
610 | Bool getUseLComb () { return m_bUseLComb; } |
---|
611 | Bool getLCMod () { return m_bLCMod; } |
---|
612 | Bool getUseRDOQ () { return m_bUseRDOQ; } |
---|
613 | #if !PIC_CROPPING |
---|
614 | Bool getUsePAD () { return m_bUsePAD; } |
---|
615 | #endif |
---|
616 | |
---|
617 | #if HHI_VSO |
---|
618 | Bool getUseVSO () { return m_bUseVSO; } |
---|
619 | #endif |
---|
620 | #if SAIT_VSO_EST_A0033 |
---|
621 | Bool getUseEstimatedVSD () { return m_bUseEstimatedVSD; } |
---|
622 | Double getDispCoeff () { return m_dDispCoeff; } |
---|
623 | #endif |
---|
624 | |
---|
625 | Bool getUseFastEnc () { return m_bUseFastEnc; } |
---|
626 | Bool getUseEarlyCU () { return m_bUseEarlyCU; } |
---|
627 | #if FAST_DECISION_FOR_MRG_RD_COST |
---|
628 | Bool getUseFastDecisionForMerge () { return m_useFastDecisionForMerge; } |
---|
629 | #endif |
---|
630 | Bool getUseCbfFastMode () { return m_bUseCbfFastMode; } |
---|
631 | Bool getUseConstrainedIntraPred () { return m_bUseConstrainedIntraPred; } |
---|
632 | #if NS_HAD |
---|
633 | Bool getUseNSQT () { return m_useNSQT; } |
---|
634 | #endif |
---|
635 | Bool getPCMInputBitDepthFlag () { return m_bPCMInputBitDepthFlag; } |
---|
636 | Bool getPCMFilterDisableFlag () { return m_bPCMFilterDisableFlag; } |
---|
637 | Bool getUsePCM () { return m_usePCM; } |
---|
638 | UInt getPCMLog2MaxSize () { return m_pcmLog2MaxSize; } |
---|
639 | UInt getPCMLog2MinSize () { return m_uiPCMLog2MinSize; } |
---|
640 | |
---|
641 | Bool getUseLMChroma () { return m_bUseLMChroma; } |
---|
642 | Void setUseLMChroma ( Bool b ) { m_bUseLMChroma = b; } |
---|
643 | |
---|
644 | Int* getdQPs () { return m_aidQP; } |
---|
645 | UInt getDeltaQpRD () { return m_uiDeltaQpRD; } |
---|
646 | |
---|
647 | //====== Slice ======== |
---|
648 | Void setSliceMode ( Int i ) { m_iSliceMode = i; } |
---|
649 | Void setSliceArgument ( Int i ) { m_iSliceArgument = i; } |
---|
650 | Int getSliceMode () { return m_iSliceMode; } |
---|
651 | Int getSliceArgument () { return m_iSliceArgument; } |
---|
652 | //====== Entropy Slice ======== |
---|
653 | Void setEntropySliceMode ( Int i ) { m_iEntropySliceMode = i; } |
---|
654 | Void setEntropySliceArgument ( Int i ) { m_iEntropySliceArgument = i; } |
---|
655 | Int getEntropySliceMode () { return m_iEntropySliceMode; } |
---|
656 | Int getEntropySliceArgument () { return m_iEntropySliceArgument;} |
---|
657 | Void setSliceGranularity ( Int i ) { m_iSliceGranularity = i; } |
---|
658 | Int getSliceGranularity () { return m_iSliceGranularity; } |
---|
659 | Void setLFCrossSliceBoundaryFlag ( Bool bValue ) { m_bLFCrossSliceBoundaryFlag = bValue; } |
---|
660 | Bool getLFCrossSliceBoundaryFlag () { return m_bLFCrossSliceBoundaryFlag; } |
---|
661 | |
---|
662 | #if HHI_MPI |
---|
663 | Void setUseMVI (Bool bVal) {m_bUseMVI = bVal;} |
---|
664 | #endif |
---|
665 | Void setUseSAO (Bool bVal) {m_bUseSAO = bVal;} |
---|
666 | Bool getUseSAO () {return m_bUseSAO;} |
---|
667 | #if SAO_UNIT_INTERLEAVING |
---|
668 | Void setMaxNumOffsetsPerPic (Int iVal) { m_maxNumOffsetsPerPic = iVal; } |
---|
669 | Int getMaxNumOffsetsPerPic () { return m_maxNumOffsetsPerPic; } |
---|
670 | Void setSaoInterleavingFlag (bool bVal) { m_saoInterleavingFlag = bVal; } |
---|
671 | Bool getSaoInterleavingFlag () { return m_saoInterleavingFlag; } |
---|
672 | #endif |
---|
673 | Void setTileBehaviorControlPresentFlag ( Int i ) { m_iTileBehaviorControlPresentFlag = i; } |
---|
674 | Int getTileBehaviorControlPresentFlag () { return m_iTileBehaviorControlPresentFlag; } |
---|
675 | Void setLFCrossTileBoundaryFlag ( Bool bValue ) { m_bLFCrossTileBoundaryFlag = bValue; } |
---|
676 | Bool getLFCrossTileBoundaryFlag () { return m_bLFCrossTileBoundaryFlag; } |
---|
677 | Void setColumnRowInfoPresent ( Int i ) { m_iColumnRowInfoPresent = i; } |
---|
678 | Int getColumnRowInfoPresent () { return m_iColumnRowInfoPresent; } |
---|
679 | Void setUniformSpacingIdr ( Int i ) { m_iUniformSpacingIdr = i; } |
---|
680 | Int getUniformSpacingIdr () { return m_iUniformSpacingIdr; } |
---|
681 | #if !REMOVE_TILE_DEPENDENCE |
---|
682 | Void setTileBoundaryIndependenceIdr ( Int i ) { m_iTileBoundaryIndependenceIdr = i; } |
---|
683 | Int getTileBoundaryIndependenceIdr () { return m_iTileBoundaryIndependenceIdr; } |
---|
684 | #endif |
---|
685 | Void setNumColumnsMinus1 ( Int i ) { m_iNumColumnsMinus1 = i; } |
---|
686 | Int getNumColumnsMinus1 () { return m_iNumColumnsMinus1; } |
---|
687 | Void setColumnWidth ( char* str ) |
---|
688 | { |
---|
689 | char *columnWidth; |
---|
690 | int i=0; |
---|
691 | Int m_iWidthInCU = ( m_iSourceWidth%g_uiMaxCUWidth ) ? m_iSourceWidth/g_uiMaxCUWidth + 1 : m_iSourceWidth/g_uiMaxCUWidth; |
---|
692 | |
---|
693 | if( m_iUniformSpacingIdr == 0 && m_iNumColumnsMinus1 > 0 ) |
---|
694 | { |
---|
695 | m_puiColumnWidth = new UInt[m_iNumColumnsMinus1]; |
---|
696 | |
---|
697 | columnWidth = strtok(str, " ,-"); |
---|
698 | while(columnWidth!=NULL) |
---|
699 | { |
---|
700 | if( i>=m_iNumColumnsMinus1 ) |
---|
701 | { |
---|
702 | printf( "The number of columns whose width are defined is larger than the allowed number of columns.\n" ); |
---|
703 | exit( EXIT_FAILURE ); |
---|
704 | } |
---|
705 | *( m_puiColumnWidth + i ) = atoi( columnWidth ); |
---|
706 | printf("col: m_iWidthInCU= %4d i=%4d width= %4d\n",m_iWidthInCU,i,m_puiColumnWidth[i]); //AFU |
---|
707 | columnWidth = strtok(NULL, " ,-"); |
---|
708 | i++; |
---|
709 | } |
---|
710 | if( i<m_iNumColumnsMinus1 ) |
---|
711 | { |
---|
712 | printf( "The width of some columns is not defined.\n" ); |
---|
713 | exit( EXIT_FAILURE ); |
---|
714 | } |
---|
715 | } |
---|
716 | } |
---|
717 | UInt getColumnWidth ( UInt columnidx ) { return *( m_puiColumnWidth + columnidx ); } |
---|
718 | Void setNumRowsMinus1 ( Int i ) { m_iNumRowsMinus1 = i; } |
---|
719 | Int getNumRowsMinus1 () { return m_iNumRowsMinus1; } |
---|
720 | Void setRowHeight (char* str) |
---|
721 | { |
---|
722 | char *rowHeight; |
---|
723 | int i=0; |
---|
724 | Int m_iHeightInCU = ( m_iSourceHeight%g_uiMaxCUHeight ) ? m_iSourceHeight/g_uiMaxCUHeight + 1 : m_iSourceHeight/g_uiMaxCUHeight; |
---|
725 | |
---|
726 | if( m_iUniformSpacingIdr == 0 && m_iNumRowsMinus1 > 0 ) |
---|
727 | { |
---|
728 | m_puiRowHeight = new UInt[m_iNumRowsMinus1]; |
---|
729 | |
---|
730 | rowHeight = strtok(str, " ,-"); |
---|
731 | while(rowHeight!=NULL) |
---|
732 | { |
---|
733 | if( i>=m_iNumRowsMinus1 ) |
---|
734 | { |
---|
735 | printf( "The number of rows whose height are defined is larger than the allowed number of rows.\n" ); |
---|
736 | exit( EXIT_FAILURE ); |
---|
737 | } |
---|
738 | *( m_puiRowHeight + i ) = atoi( rowHeight ); |
---|
739 | printf("row: m_iHeightInCU=%4d i=%4d height=%4d\n",m_iHeightInCU,i,m_puiRowHeight[i]); //AFU |
---|
740 | rowHeight = strtok(NULL, " ,-"); |
---|
741 | i++; |
---|
742 | } |
---|
743 | if( i<m_iNumRowsMinus1 ) |
---|
744 | { |
---|
745 | printf( "The height of some rows is not defined.\n" ); |
---|
746 | exit( EXIT_FAILURE ); |
---|
747 | } |
---|
748 | } |
---|
749 | } |
---|
750 | UInt getRowHeight ( UInt rowIdx ) { return *( m_puiRowHeight + rowIdx ); } |
---|
751 | Void xCheckGSParameters(); |
---|
752 | Int getTileLocationInSliceHeaderFlag () { return m_iTileLocationInSliceHeaderFlag; } |
---|
753 | Void setTileLocationInSliceHeaderFlag ( Int iFlag ) { m_iTileLocationInSliceHeaderFlag = iFlag;} |
---|
754 | Int getTileMarkerFlag () { return m_iTileMarkerFlag; } |
---|
755 | Void setTileMarkerFlag ( Int iFlag ) { m_iTileMarkerFlag = iFlag; } |
---|
756 | Int getMaxTileMarkerEntryPoints () { return m_iMaxTileMarkerEntryPoints; } |
---|
757 | Void setMaxTileMarkerEntryPoints ( Int iCount ) { m_iMaxTileMarkerEntryPoints = iCount; } |
---|
758 | Double getMaxTileMarkerOffset () { return m_dMaxTileMarkerOffset; } |
---|
759 | Void setMaxTileMarkerOffset ( Double dCount ) { m_dMaxTileMarkerOffset = dCount; } |
---|
760 | Void setWaveFrontSynchro(Int iWaveFrontSynchro) { m_iWaveFrontSynchro = iWaveFrontSynchro; } |
---|
761 | Int getWaveFrontsynchro() { return m_iWaveFrontSynchro; } |
---|
762 | Void setWaveFrontFlush(Int iWaveFrontFlush) { m_iWaveFrontFlush = iWaveFrontFlush; } |
---|
763 | Int getWaveFrontFlush() { return m_iWaveFrontFlush; } |
---|
764 | Void setWaveFrontSubstreams(Int iWaveFrontSubstreams) { m_iWaveFrontSubstreams = iWaveFrontSubstreams; } |
---|
765 | Int getWaveFrontSubstreams() { return m_iWaveFrontSubstreams; } |
---|
766 | void setPictureDigestEnabled(bool b) { m_pictureDigestEnabled = b; } |
---|
767 | bool getPictureDigestEnabled() { return m_pictureDigestEnabled; } |
---|
768 | |
---|
769 | Void setUseWP ( Bool b ) { m_bUseWeightPred = b; } |
---|
770 | Void setWPBiPredIdc ( UInt u ) { m_uiBiPredIdc = u; } |
---|
771 | Bool getUseWP () { return m_bUseWeightPred; } |
---|
772 | UInt getWPBiPredIdc () { return m_uiBiPredIdc; } |
---|
773 | Void setUseScalingListId ( Int u ) { m_useScalingListId = u; } |
---|
774 | Int getUseScalingListId () { return m_useScalingListId; } |
---|
775 | Void setScalingListFile ( char* pch ){ m_scalingListFile = pch; } |
---|
776 | char* getScalingListFile () { return m_scalingListFile; } |
---|
777 | |
---|
778 | Void setEnableTMVP ( Bool b ) { m_bEnableTMVP = b; } |
---|
779 | Bool getEnableTMVP () { return m_bEnableTMVP; } |
---|
780 | #if MULTIBITS_DATA_HIDING |
---|
781 | Void setSignHideFlag( Int signHideFlag ) { m_signHideFlag = signHideFlag; } |
---|
782 | Void setTSIG( Int tsig ) { m_signHidingThreshold = tsig; } |
---|
783 | Int getSignHideFlag() { return m_signHideFlag; } |
---|
784 | Int getTSIG() { return m_signHidingThreshold; } |
---|
785 | #endif |
---|
786 | #if VIDYO_VPS_INTEGRATION |
---|
787 | Void setLayerId ( UInt layerId ) { m_layerId = layerId; } |
---|
788 | UInt getLayerId () { return m_layerId; } |
---|
789 | #endif |
---|
790 | |
---|
791 | Void setViewId ( Int viewId ) { m_viewId = viewId; } |
---|
792 | Int getViewId () { return m_viewId; } |
---|
793 | Void setIsDepth ( Bool isDepth ) { m_isDepth = isDepth; } |
---|
794 | Bool getIsDepth () { return m_isDepth; } |
---|
795 | |
---|
796 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
---|
797 | Void setUseDMM( Bool b) { m_bUseDMM = b; } |
---|
798 | Bool getUseDMM() { return m_bUseDMM; } |
---|
799 | #endif |
---|
800 | |
---|
801 | Void setViewOrderIdx ( Int i ) { m_iViewOrderIdx = i; } |
---|
802 | Void setCamParPrecision ( UInt u ) { m_uiCamParPrecision = u; } |
---|
803 | Void setCamParInSliceHeader ( Bool b ) { m_bCamParInSliceHeader = b; } |
---|
804 | Void setCodedScale ( Int** p ) { m_aaiCodedScale = p; } |
---|
805 | Void setCodedOffset ( Int** p ) { m_aaiCodedOffset = p; } |
---|
806 | |
---|
807 | #if SONY_COLPIC_AVAILABILITY |
---|
808 | Int getViewOrderIdx () { return m_iViewOrderIdx; } |
---|
809 | #endif |
---|
810 | }; |
---|
811 | |
---|
812 | //! \} |
---|
813 | |
---|
814 | #endif // !defined(AFX_TENCCFG_H__6B99B797_F4DA_4E46_8E78_7656339A6C41__INCLUDED_) |
---|