| 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 TAppEncTop.cpp |
|---|
| 35 | \brief Encoder application class |
|---|
| 36 | */ |
|---|
| 37 | |
|---|
| 38 | #include <list> |
|---|
| 39 | #include <fstream> |
|---|
| 40 | #include <stdlib.h> |
|---|
| 41 | #include <stdio.h> |
|---|
| 42 | #include <fcntl.h> |
|---|
| 43 | #include <assert.h> |
|---|
| 44 | |
|---|
| 45 | #include "TAppEncTop.h" |
|---|
| 46 | #include "TLibEncoder/AnnexBwrite.h" |
|---|
| 47 | |
|---|
| 48 | using namespace std; |
|---|
| 49 | |
|---|
| 50 | //! \ingroup TAppEncoder |
|---|
| 51 | //! \{ |
|---|
| 52 | |
|---|
| 53 | // ==================================================================================================================== |
|---|
| 54 | // Constructor / destructor / initialization / destroy |
|---|
| 55 | // ==================================================================================================================== |
|---|
| 56 | |
|---|
| 57 | TAppEncTop::TAppEncTop() |
|---|
| 58 | { |
|---|
| 59 | m_totalBytes = 0; |
|---|
| 60 | m_essentialBytes = 0; |
|---|
| 61 | } |
|---|
| 62 | |
|---|
| 63 | TAppEncTop::~TAppEncTop() |
|---|
| 64 | { |
|---|
| 65 | } |
|---|
| 66 | |
|---|
| 67 | Void TAppEncTop::xInitLibCfg() |
|---|
| 68 | { |
|---|
| 69 | #if VIDYO_VPS_INTEGRATION |
|---|
| 70 | UInt layerId = 0; |
|---|
| 71 | // TODO: fix the assumption here that the temporal structures are all equal across all layers??? |
|---|
| 72 | m_cVPS.setMaxTLayers( m_maxTempLayer[0] ); |
|---|
| 73 | m_cVPS.setMaxLayers( m_iNumberOfViews * (m_bUsingDepthMaps ? 2:1) ); |
|---|
| 74 | for(Int i = 0; i < MAX_TLAYER; i++) |
|---|
| 75 | { |
|---|
| 76 | m_cVPS.setNumReorderPics( m_numReorderPics[0][i], i ); |
|---|
| 77 | m_cVPS.setMaxDecPicBuffering( m_maxDecPicBuffering[0][i], i ); |
|---|
| 78 | } |
|---|
| 79 | #endif |
|---|
| 80 | |
|---|
| 81 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 82 | { |
|---|
| 83 | m_frameRcvd.push_back(0); |
|---|
| 84 | m_acTEncTopList.push_back(new TEncTop); |
|---|
| 85 | m_acTVideoIOYuvInputFileList.push_back(new TVideoIOYuv); |
|---|
| 86 | m_acTVideoIOYuvReconFileList.push_back(new TVideoIOYuv); |
|---|
| 87 | m_picYuvRec.push_back(new TComList<TComPicYuv*>) ; |
|---|
| 88 | |
|---|
| 89 | m_acTEncTopList[iViewIdx]->setFrameRate ( m_iFrameRate ); |
|---|
| 90 | m_acTEncTopList[iViewIdx]->setFrameSkip ( m_FrameSkip ); |
|---|
| 91 | m_acTEncTopList[iViewIdx]->setSourceWidth ( m_iSourceWidth ); |
|---|
| 92 | m_acTEncTopList[iViewIdx]->setSourceHeight ( m_iSourceHeight ); |
|---|
| 93 | #if PIC_CROPPING |
|---|
| 94 | m_acTEncTopList[iViewIdx]->setCroppingMode ( m_croppingMode ); |
|---|
| 95 | m_acTEncTopList[iViewIdx]->setCropLeft ( m_cropLeft ); |
|---|
| 96 | m_acTEncTopList[iViewIdx]->setCropRight ( m_cropRight ); |
|---|
| 97 | m_acTEncTopList[iViewIdx]->setCropTop ( m_cropTop ); |
|---|
| 98 | m_acTEncTopList[iViewIdx]->setCropBottom ( m_cropBottom ); |
|---|
| 99 | #endif |
|---|
| 100 | m_acTEncTopList[iViewIdx]->setFrameToBeEncoded ( m_iFrameToBeEncoded ); |
|---|
| 101 | m_acTEncTopList[iViewIdx]->setViewId ( iViewIdx ); |
|---|
| 102 | m_acTEncTopList[iViewIdx]->setIsDepth ( false ); |
|---|
| 103 | m_acTEncTopList[iViewIdx]->setViewOrderIdx ( m_cCameraData.getViewOrderIndex()[ iViewIdx ] ); |
|---|
| 104 | #if VIDYO_VPS_INTEGRATION |
|---|
| 105 | layerId = iViewIdx * (m_bUsingDepthMaps ? 2:1); |
|---|
| 106 | m_acTEncTopList[iViewIdx]->setLayerId ( layerId ); |
|---|
| 107 | m_cVPS.setDepthFlag ( false, layerId ); |
|---|
| 108 | m_cVPS.setViewId ( iViewIdx, layerId ); |
|---|
| 109 | m_cVPS.setViewOrderIdx ( m_cCameraData.getViewOrderIndex()[ iViewIdx ], layerId ); |
|---|
| 110 | // TODO: set correct dependentFlag and dependentLayer |
|---|
| 111 | m_cVPS.setDependentFlag ( iViewIdx ? true:false, layerId ); |
|---|
| 112 | m_cVPS.setDependentLayer ( layerId - (m_bUsingDepthMaps ? 2:1), layerId ); |
|---|
| 113 | #endif |
|---|
| 114 | |
|---|
| 115 | m_acTEncTopList[iViewIdx]->setCamParPrecision ( m_cCameraData.getCamParsCodedPrecision () ); |
|---|
| 116 | m_acTEncTopList[iViewIdx]->setCamParInSliceHeader ( m_cCameraData.getVaryingCameraParameters() ); |
|---|
| 117 | m_acTEncTopList[iViewIdx]->setCodedScale ( m_cCameraData.getCodedScale () ); |
|---|
| 118 | m_acTEncTopList[iViewIdx]->setCodedOffset ( m_cCameraData.getCodedOffset () ); |
|---|
| 119 | |
|---|
| 120 | //====== Coding Structure ======== |
|---|
| 121 | m_acTEncTopList[iViewIdx]->setIntraPeriod ( m_iIntraPeriod ); |
|---|
| 122 | m_acTEncTopList[iViewIdx]->setDecodingRefreshType ( m_iDecodingRefreshType ); |
|---|
| 123 | m_acTEncTopList[iViewIdx]->setGOPSize ( m_iGOPSize ); |
|---|
| 124 | m_acTEncTopList[iViewIdx]->setGopList ( m_GOPListsMvc[iViewIdx] ); |
|---|
| 125 | m_acTEncTopList[iViewIdx]->setExtraRPSs ( m_extraRPSs[iViewIdx] ); |
|---|
| 126 | #if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER |
|---|
| 127 | for(Int i = 0; i < MAX_TLAYER; i++) |
|---|
| 128 | { |
|---|
| 129 | m_acTEncTopList[iViewIdx]->setNumReorderPics ( m_numReorderPics[iViewIdx][i], i ); |
|---|
| 130 | m_acTEncTopList[iViewIdx]->setMaxDecPicBuffering ( m_maxDecPicBuffering[iViewIdx][i], i ); |
|---|
| 131 | } |
|---|
| 132 | #else |
|---|
| 133 | m_acTEncTopList[iViewIdx]->setNumReorderFrames ( m_numReorderFrames ); |
|---|
| 134 | m_acTEncTopList[iViewIdx]->setMaxNumberOfReferencePictures ( m_maxNumberOfReferencePictures ); |
|---|
| 135 | #endif |
|---|
| 136 | for( UInt uiLoop = 0; uiLoop < MAX_TLAYER; ++uiLoop ) |
|---|
| 137 | { |
|---|
| 138 | m_acTEncTopList[iViewIdx]->setLambdaModifier( uiLoop, m_adLambdaModifier[ uiLoop ] ); |
|---|
| 139 | } |
|---|
| 140 | m_acTEncTopList[iViewIdx]->setQP ( m_aiQP[0] ); |
|---|
| 141 | |
|---|
| 142 | m_acTEncTopList[iViewIdx]->setTemporalLayerQPOffset ( m_aiTLayerQPOffset ); |
|---|
| 143 | m_acTEncTopList[iViewIdx]->setPad ( m_aiPad ); |
|---|
| 144 | |
|---|
| 145 | #if H0566_TLA |
|---|
| 146 | m_acTEncTopList[iViewIdx]->setMaxTempLayer ( m_maxTempLayer[iViewIdx] ); |
|---|
| 147 | #else |
|---|
| 148 | m_acTEncTopList[iViewIdx]->setTLayering ( m_bTLayering ); |
|---|
| 149 | m_acTEncTopList[iViewIdx]->setTLayerSwitchingFlag ( m_abTLayerSwitchingFlag ); |
|---|
| 150 | #endif |
|---|
| 151 | |
|---|
| 152 | m_acTEncTopList[iViewIdx]->setDisInter4x4 ( m_bDisInter4x4); |
|---|
| 153 | |
|---|
| 154 | m_acTEncTopList[iViewIdx]->setUseNSQT( m_enableNSQT ); |
|---|
| 155 | m_acTEncTopList[iViewIdx]->setUseAMP( m_enableAMP ); |
|---|
| 156 | |
|---|
| 157 | //===== Slice ======== |
|---|
| 158 | |
|---|
| 159 | //====== Loop/Deblock Filter ======== |
|---|
| 160 | m_acTEncTopList[iViewIdx]->setLoopFilterDisable ( m_abLoopFilterDisable[0] ); |
|---|
| 161 | m_acTEncTopList[iViewIdx]->setLoopFilterOffsetInAPS ( m_loopFilterOffsetInAPS ); |
|---|
| 162 | m_acTEncTopList[iViewIdx]->setLoopFilterBetaOffset ( m_loopFilterBetaOffsetDiv2 ); |
|---|
| 163 | m_acTEncTopList[iViewIdx]->setLoopFilterTcOffset ( m_loopFilterTcOffsetDiv2 ); |
|---|
| 164 | #if DBL_CONTROL |
|---|
| 165 | m_acTEncTopList[iViewIdx]->setDeblockingFilterControlPresent( m_DeblockingFilterControlPresent); |
|---|
| 166 | #endif |
|---|
| 167 | |
|---|
| 168 | //====== Motion search ======== |
|---|
| 169 | m_acTEncTopList[iViewIdx]->setFastSearch ( m_iFastSearch ); |
|---|
| 170 | m_acTEncTopList[iViewIdx]->setSearchRange ( m_iSearchRange ); |
|---|
| 171 | m_acTEncTopList[iViewIdx]->setBipredSearchRange ( m_bipredSearchRange ); |
|---|
| 172 | |
|---|
| 173 | //====== Quality control ======== |
|---|
| 174 | m_acTEncTopList[iViewIdx]->setMaxDeltaQP ( m_iMaxDeltaQP ); |
|---|
| 175 | m_acTEncTopList[iViewIdx]->setMaxCuDQPDepth ( m_iMaxCuDQPDepth ); |
|---|
| 176 | |
|---|
| 177 | m_acTEncTopList[iViewIdx]->setChromaQpOffset ( m_iChromaQpOffset ); |
|---|
| 178 | m_acTEncTopList[iViewIdx]->setChromaQpOffset2nd ( m_iChromaQpOffset2nd ); |
|---|
| 179 | |
|---|
| 180 | #if ADAPTIVE_QP_SELECTION |
|---|
| 181 | m_acTEncTopList[iViewIdx]->setUseAdaptQpSelect ( m_bUseAdaptQpSelect ); |
|---|
| 182 | #endif |
|---|
| 183 | |
|---|
| 184 | #if LOSSLESS_CODING |
|---|
| 185 | Int lowestQP; |
|---|
| 186 | #if H0736_AVC_STYLE_QP_RANGE |
|---|
| 187 | lowestQP = - ( (Int)(6*(g_uiBitDepth + g_uiBitIncrement - 8)) ); |
|---|
| 188 | #else |
|---|
| 189 | lowestQP = 0; |
|---|
| 190 | #endif |
|---|
| 191 | if ((m_iMaxDeltaQP == 0 ) && (m_aiQP[0] == lowestQP) && (m_useLossless == true)) |
|---|
| 192 | { |
|---|
| 193 | m_bUseAdaptiveQP = false; |
|---|
| 194 | } |
|---|
| 195 | #endif |
|---|
| 196 | |
|---|
| 197 | m_acTEncTopList[iViewIdx]->setUseAdaptiveQP ( m_bUseAdaptiveQP ); |
|---|
| 198 | m_acTEncTopList[iViewIdx]->setQPAdaptationRange ( m_iQPAdaptationRange ); |
|---|
| 199 | |
|---|
| 200 | #if HHI_VSO |
|---|
| 201 | //====== VSO ========= |
|---|
| 202 | m_acTEncTopList[iViewIdx]->setForceLambdaScaleVSO ( false ); |
|---|
| 203 | m_acTEncTopList[iViewIdx]->setLambdaScaleVSO ( 1 ); |
|---|
| 204 | m_acTEncTopList[iViewIdx]->setVSOMode ( 0 ); |
|---|
| 205 | m_acTEncTopList[iViewIdx]->setUseVSO ( false ); |
|---|
| 206 | #if SAIT_VSO_EST_A0033 |
|---|
| 207 | m_acTEncTopList[iViewIdx]->setUseEstimatedVSD ( false ); |
|---|
| 208 | #endif |
|---|
| 209 | #if LGE_WVSO_A0119 |
|---|
| 210 | m_acTEncTopList[iViewIdx]->setUseWVSO ( false ); |
|---|
| 211 | #endif |
|---|
| 212 | #endif |
|---|
| 213 | |
|---|
| 214 | #if DEPTH_MAP_GENERATION |
|---|
| 215 | m_acTEncTopList[iViewIdx]->setPredDepthMapGeneration ( m_uiPredDepthMapGeneration ); |
|---|
| 216 | m_acTEncTopList[iViewIdx]->setPdmPrecision ( (UInt)m_cCameraData.getPdmPrecision () ); |
|---|
| 217 | m_acTEncTopList[iViewIdx]->setPdmScaleNomDelta ( m_cCameraData.getPdmScaleNomDelta () ); |
|---|
| 218 | m_acTEncTopList[iViewIdx]->setPdmOffset ( m_cCameraData.getPdmOffset () ); |
|---|
| 219 | #endif |
|---|
| 220 | #if HHI_INTER_VIEW_MOTION_PRED |
|---|
| 221 | m_acTEncTopList[iViewIdx]->setMultiviewMvPredMode ( m_uiMultiviewMvPredMode ); |
|---|
| 222 | m_acTEncTopList[iViewIdx]->setMultiviewMvRegMode ( iViewIdx ? m_uiMultiviewMvRegMode : 0 ); |
|---|
| 223 | m_acTEncTopList[iViewIdx]->setMultiviewMvRegLambdaScale ( iViewIdx ? m_dMultiviewMvRegLambdaScale : 0.0 ); |
|---|
| 224 | #endif |
|---|
| 225 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
|---|
| 226 | m_acTEncTopList[iViewIdx]->setMultiviewResPredMode ( m_uiMultiviewResPredMode ); |
|---|
| 227 | #endif |
|---|
| 228 | |
|---|
| 229 | //====== Tool list ======== |
|---|
| 230 | m_acTEncTopList[iViewIdx]->setUseSBACRD ( m_bUseSBACRD ); |
|---|
| 231 | m_acTEncTopList[iViewIdx]->setDeltaQpRD ( m_uiDeltaQpRD ); |
|---|
| 232 | m_acTEncTopList[iViewIdx]->setUseASR ( m_bUseASR ); |
|---|
| 233 | m_acTEncTopList[iViewIdx]->setUseHADME ( m_bUseHADME ); |
|---|
| 234 | m_acTEncTopList[iViewIdx]->setUseALF ( m_abUseALF[0] ); |
|---|
| 235 | m_acTEncTopList[iViewIdx]->setALFEncodePassReduction ( m_iALFEncodePassReduction ); |
|---|
| 236 | #if LOSSLESS_CODING |
|---|
| 237 | m_acTEncTopList[iViewIdx]->setUseLossless ( m_useLossless ); |
|---|
| 238 | #endif |
|---|
| 239 | m_acTEncTopList[iViewIdx]->setALFMaxNumberFilters ( m_iALFMaxNumberFilters ) ; |
|---|
| 240 | |
|---|
| 241 | m_acTEncTopList[iViewIdx]->setUseLComb ( m_bUseLComb ); |
|---|
| 242 | m_acTEncTopList[iViewIdx]->setLCMod ( m_bLCMod ); |
|---|
| 243 | m_acTEncTopList[iViewIdx]->setdQPs ( m_aidQP ); |
|---|
| 244 | m_acTEncTopList[iViewIdx]->setUseRDOQ ( m_abUseRDOQ[0] ); |
|---|
| 245 | #if !PIC_CROPPING |
|---|
| 246 | m_acTEncTopList[iViewIdx]->setUsePAD ( m_bUsePAD ); |
|---|
| 247 | #endif |
|---|
| 248 | m_acTEncTopList[iViewIdx]->setQuadtreeTULog2MaxSize ( m_uiQuadtreeTULog2MaxSize ); |
|---|
| 249 | m_acTEncTopList[iViewIdx]->setQuadtreeTULog2MinSize ( m_uiQuadtreeTULog2MinSize ); |
|---|
| 250 | m_acTEncTopList[iViewIdx]->setQuadtreeTUMaxDepthInter ( m_uiQuadtreeTUMaxDepthInter ); |
|---|
| 251 | m_acTEncTopList[iViewIdx]->setQuadtreeTUMaxDepthIntra ( m_uiQuadtreeTUMaxDepthIntra ); |
|---|
| 252 | m_acTEncTopList[iViewIdx]->setUseFastEnc ( m_bUseFastEnc ); |
|---|
| 253 | m_acTEncTopList[iViewIdx]->setUseEarlyCU ( m_bUseEarlyCU ); |
|---|
| 254 | #if FAST_DECISION_FOR_MRG_RD_COST |
|---|
| 255 | m_acTEncTopList[iViewIdx]->setUseFastDecisionForMerge ( m_useFastDecisionForMerge ); |
|---|
| 256 | #endif |
|---|
| 257 | m_acTEncTopList[iViewIdx]->setUseCbfFastMode ( m_bUseCbfFastMode ); |
|---|
| 258 | #if HHI_INTERVIEW_SKIP |
|---|
| 259 | m_acTEncTopList[iViewIdx]->setInterViewSkip ( iViewIdx>0 ? m_bInterViewSkip : false ); |
|---|
| 260 | #if HHI_INTERVIEW_SKIP_LAMBDA_SCALE |
|---|
| 261 | m_acTEncTopList[iViewIdx]->setInterViewSkipLambdaScale ( iViewIdx>0 ? (UInt)m_dInterViewSkipLambdaScale : 1 ); |
|---|
| 262 | #endif |
|---|
| 263 | #endif |
|---|
| 264 | m_acTEncTopList[iViewIdx]->setUseLMChroma ( m_bUseLMChroma ); |
|---|
| 265 | m_acTEncTopList[iViewIdx]->setUseConstrainedIntraPred ( m_bUseConstrainedIntraPred ); |
|---|
| 266 | m_acTEncTopList[iViewIdx]->setPCMLog2MinSize ( m_uiPCMLog2MinSize); |
|---|
| 267 | m_acTEncTopList[iViewIdx]->setUsePCM ( m_usePCM ); |
|---|
| 268 | m_acTEncTopList[iViewIdx]->setPCMLog2MaxSize ( m_pcmLog2MaxSize); |
|---|
| 269 | |
|---|
| 270 | //====== Weighted Prediction ======== |
|---|
| 271 | m_acTEncTopList[iViewIdx]->setUseWP ( m_bUseWeightPred ); |
|---|
| 272 | m_acTEncTopList[iViewIdx]->setWPBiPredIdc ( m_uiBiPredIdc ); |
|---|
| 273 | //====== Slice ======== |
|---|
| 274 | m_acTEncTopList[iViewIdx]->setSliceMode ( m_iSliceMode ); |
|---|
| 275 | m_acTEncTopList[iViewIdx]->setSliceArgument ( m_iSliceArgument ); |
|---|
| 276 | |
|---|
| 277 | //====== Entropy Slice ======== |
|---|
| 278 | m_acTEncTopList[iViewIdx]->setEntropySliceMode ( m_iEntropySliceMode ); |
|---|
| 279 | m_acTEncTopList[iViewIdx]->setEntropySliceArgument ( m_iEntropySliceArgument ); |
|---|
| 280 | int iNumPartInCU = 1<<(m_uiMaxCUDepth<<1); |
|---|
| 281 | if(m_iEntropySliceMode==SHARP_FIXED_NUMBER_OF_LCU_IN_ENTROPY_SLICE) |
|---|
| 282 | { |
|---|
| 283 | m_acTEncTopList[iViewIdx]->setEntropySliceArgument ( m_iEntropySliceArgument * ( iNumPartInCU >> ( m_iSliceGranularity << 1 ) ) ); |
|---|
| 284 | } |
|---|
| 285 | if(m_iSliceMode==AD_HOC_SLICES_FIXED_NUMBER_OF_LCU_IN_SLICE) |
|---|
| 286 | { |
|---|
| 287 | m_acTEncTopList[iViewIdx]->setSliceArgument ( m_iSliceArgument * ( iNumPartInCU >> ( m_iSliceGranularity << 1 ) ) ); |
|---|
| 288 | } |
|---|
| 289 | #if FIXED_NUMBER_OF_TILES_SLICE_MODE |
|---|
| 290 | if(m_iSliceMode==AD_HOC_SLICES_FIXED_NUMBER_OF_TILES_IN_SLICE) |
|---|
| 291 | { |
|---|
| 292 | m_acTEncTopList[iViewIdx]->setSliceArgument ( m_iSliceArgument ); |
|---|
| 293 | } |
|---|
| 294 | #endif |
|---|
| 295 | m_acTEncTopList[iViewIdx]->setSliceGranularity ( m_iSliceGranularity ); |
|---|
| 296 | if(m_iSliceMode == 0 ) |
|---|
| 297 | { |
|---|
| 298 | m_bLFCrossSliceBoundaryFlag = true; |
|---|
| 299 | } |
|---|
| 300 | m_acTEncTopList[iViewIdx]->setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag ); |
|---|
| 301 | m_acTEncTopList[iViewIdx]->setUseSAO ( m_abUseSAO[0] ); |
|---|
| 302 | #if SAO_UNIT_INTERLEAVING |
|---|
| 303 | m_acTEncTopList[iViewIdx]->setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic); |
|---|
| 304 | m_acTEncTopList[iViewIdx]->setSaoInterleavingFlag (m_saoInterleavingFlag); |
|---|
| 305 | #endif |
|---|
| 306 | m_acTEncTopList[iViewIdx]->setPCMInputBitDepthFlag ( m_bPCMInputBitDepthFlag); |
|---|
| 307 | m_acTEncTopList[iViewIdx]->setPCMFilterDisableFlag ( m_bPCMFilterDisableFlag); |
|---|
| 308 | |
|---|
| 309 | m_acTEncTopList[iViewIdx]->setPictureDigestEnabled(m_pictureDigestEnabled); |
|---|
| 310 | |
|---|
| 311 | m_acTEncTopList[iViewIdx]->setColumnRowInfoPresent ( m_iColumnRowInfoPresent ); |
|---|
| 312 | m_acTEncTopList[iViewIdx]->setUniformSpacingIdr ( m_iUniformSpacingIdr ); |
|---|
| 313 | #if !REMOVE_TILE_DEPENDENCE |
|---|
| 314 | m_acTEncTopList[iViewIdx]->setTileBoundaryIndependenceIdr( m_iTileBoundaryIndependenceIdr ); |
|---|
| 315 | #endif |
|---|
| 316 | m_acTEncTopList[iViewIdx]->setNumColumnsMinus1 ( m_iNumColumnsMinus1 ); |
|---|
| 317 | m_acTEncTopList[iViewIdx]->setNumRowsMinus1 ( m_iNumRowsMinus1 ); |
|---|
| 318 | if(m_iUniformSpacingIdr==0) |
|---|
| 319 | { |
|---|
| 320 | m_acTEncTopList[iViewIdx]->setColumnWidth ( m_pchColumnWidth ); |
|---|
| 321 | m_acTEncTopList[iViewIdx]->setRowHeight ( m_pchRowHeight ); |
|---|
| 322 | } |
|---|
| 323 | m_acTEncTopList[iViewIdx]->xCheckGSParameters(); |
|---|
| 324 | m_acTEncTopList[iViewIdx]->setTileLocationInSliceHeaderFlag ( m_iTileLocationInSliceHeaderFlag ); |
|---|
| 325 | m_acTEncTopList[iViewIdx]->setTileMarkerFlag ( m_iTileMarkerFlag ); |
|---|
| 326 | m_acTEncTopList[iViewIdx]->setMaxTileMarkerEntryPoints ( m_iMaxTileMarkerEntryPoints ); |
|---|
| 327 | |
|---|
| 328 | Int uiTilesCount = (m_iNumRowsMinus1+1) * (m_iNumColumnsMinus1+1); |
|---|
| 329 | m_dMaxTileMarkerOffset = ((Double)uiTilesCount) / m_iMaxTileMarkerEntryPoints; |
|---|
| 330 | m_acTEncTopList[iViewIdx]->setMaxTileMarkerOffset ( m_dMaxTileMarkerOffset ); |
|---|
| 331 | m_acTEncTopList[iViewIdx]->setTileBehaviorControlPresentFlag( m_iTileBehaviorControlPresentFlag ); |
|---|
| 332 | #if !REMOVE_TILE_DEPENDENCE |
|---|
| 333 | if(m_iTileBoundaryIndependenceIdr == 0 || uiTilesCount == 1) |
|---|
| 334 | #else |
|---|
| 335 | if(uiTilesCount == 1) |
|---|
| 336 | #endif |
|---|
| 337 | { |
|---|
| 338 | m_bLFCrossTileBoundaryFlag = true; |
|---|
| 339 | } |
|---|
| 340 | m_acTEncTopList[iViewIdx]->setLFCrossTileBoundaryFlag( m_bLFCrossTileBoundaryFlag ); |
|---|
| 341 | m_acTEncTopList[iViewIdx]->setWaveFrontSynchro ( m_iWaveFrontSynchro ); |
|---|
| 342 | m_acTEncTopList[iViewIdx]->setWaveFrontFlush ( m_iWaveFrontFlush ); |
|---|
| 343 | m_acTEncTopList[iViewIdx]->setWaveFrontSubstreams ( m_iWaveFrontSubstreams ); |
|---|
| 344 | m_acTEncTopList[iViewIdx]->setEnableTMVP ( m_enableTMVP ); |
|---|
| 345 | m_acTEncTopList[iViewIdx]->setUseScalingListId ( m_useScalingListId ); |
|---|
| 346 | m_acTEncTopList[iViewIdx]->setScalingListFile ( m_scalingListFile ); |
|---|
| 347 | #if MULTIBITS_DATA_HIDING |
|---|
| 348 | m_acTEncTopList[iViewIdx]->setSignHideFlag(m_signHideFlag); |
|---|
| 349 | m_acTEncTopList[iViewIdx]->setTSIG(m_signHidingThreshold); |
|---|
| 350 | #endif |
|---|
| 351 | |
|---|
| 352 | #if LCU_SYNTAX_ALF |
|---|
| 353 | if(uiTilesCount > 1) |
|---|
| 354 | { |
|---|
| 355 | m_bALFParamInSlice = false; |
|---|
| 356 | m_bALFPicBasedEncode = true; |
|---|
| 357 | } |
|---|
| 358 | m_acTEncTopList[iViewIdx]->setALFParamInSlice ( m_bALFParamInSlice); |
|---|
| 359 | m_acTEncTopList[iViewIdx]->setALFPicBasedEncode ( m_bALFPicBasedEncode); |
|---|
| 360 | #endif |
|---|
| 361 | |
|---|
| 362 | //====== Depth tools ======== |
|---|
| 363 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
|---|
| 364 | m_acTEncTopList[iViewIdx]->setUseDMM ( false ); |
|---|
| 365 | #endif |
|---|
| 366 | #if OL_DEPTHLIMIT_A0044 |
|---|
| 367 | m_acTEncTopList[iViewIdx]->setUseDPL ( false ); |
|---|
| 368 | #endif |
|---|
| 369 | #if HHI_MPI |
|---|
| 370 | m_acTEncTopList[iViewIdx]->setUseMVI( false ); |
|---|
| 371 | #endif |
|---|
| 372 | } |
|---|
| 373 | if( m_bUsingDepthMaps ) |
|---|
| 374 | { |
|---|
| 375 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 376 | { |
|---|
| 377 | m_depthFrameRcvd.push_back(0); |
|---|
| 378 | m_acTEncDepthTopList.push_back(new TEncTop); |
|---|
| 379 | m_acTVideoIOYuvDepthInputFileList.push_back(new TVideoIOYuv); |
|---|
| 380 | m_acTVideoIOYuvDepthReconFileList.push_back(new TVideoIOYuv); |
|---|
| 381 | m_picYuvDepthRec.push_back(new TComList<TComPicYuv*>) ; |
|---|
| 382 | |
|---|
| 383 | m_acTEncDepthTopList[iViewIdx]->setFrameRate ( m_iFrameRate ); |
|---|
| 384 | m_acTEncDepthTopList[iViewIdx]->setFrameSkip ( m_FrameSkip ); |
|---|
| 385 | m_acTEncDepthTopList[iViewIdx]->setSourceWidth ( m_iSourceWidth ); |
|---|
| 386 | m_acTEncDepthTopList[iViewIdx]->setSourceHeight ( m_iSourceHeight ); |
|---|
| 387 | #if PIC_CROPPING |
|---|
| 388 | m_acTEncDepthTopList[iViewIdx]->setCroppingMode ( m_croppingMode ); |
|---|
| 389 | m_acTEncDepthTopList[iViewIdx]->setCropLeft ( m_cropLeft ); |
|---|
| 390 | m_acTEncDepthTopList[iViewIdx]->setCropRight ( m_cropRight ); |
|---|
| 391 | m_acTEncDepthTopList[iViewIdx]->setCropTop ( m_cropTop ); |
|---|
| 392 | m_acTEncDepthTopList[iViewIdx]->setCropBottom ( m_cropBottom ); |
|---|
| 393 | #endif |
|---|
| 394 | m_acTEncDepthTopList[iViewIdx]->setFrameToBeEncoded ( m_iFrameToBeEncoded ); |
|---|
| 395 | m_acTEncDepthTopList[iViewIdx]->setViewId ( iViewIdx ); |
|---|
| 396 | m_acTEncDepthTopList[iViewIdx]->setIsDepth ( true ); |
|---|
| 397 | m_acTEncDepthTopList[iViewIdx]->setViewOrderIdx ( m_cCameraData.getViewOrderIndex()[ iViewIdx ] ); |
|---|
| 398 | #if VIDYO_VPS_INTEGRATION |
|---|
| 399 | layerId = iViewIdx * 2 + 1; |
|---|
| 400 | m_acTEncDepthTopList[iViewIdx]->setLayerId ( layerId ); |
|---|
| 401 | m_cVPS.setDepthFlag ( true, layerId ); |
|---|
| 402 | m_cVPS.setViewId ( iViewIdx, layerId ); |
|---|
| 403 | m_cVPS.setViewOrderIdx ( m_cCameraData.getViewOrderIndex()[ iViewIdx ], layerId ); |
|---|
| 404 | m_cVPS.setDependentFlag ( true, layerId ); |
|---|
| 405 | m_cVPS.setDependentLayer ( layerId-1, layerId); |
|---|
| 406 | #endif |
|---|
| 407 | m_acTEncDepthTopList[iViewIdx]->setCamParPrecision ( 0 ); |
|---|
| 408 | m_acTEncDepthTopList[iViewIdx]->setCamParInSliceHeader ( false ); |
|---|
| 409 | m_acTEncDepthTopList[iViewIdx]->setCodedScale ( 0 ); |
|---|
| 410 | m_acTEncDepthTopList[iViewIdx]->setCodedOffset ( 0 ); |
|---|
| 411 | |
|---|
| 412 | //====== Coding Structure ======== |
|---|
| 413 | m_acTEncDepthTopList[iViewIdx]->setIntraPeriod ( m_iIntraPeriod ); |
|---|
| 414 | m_acTEncDepthTopList[iViewIdx]->setDecodingRefreshType ( m_iDecodingRefreshType ); |
|---|
| 415 | m_acTEncDepthTopList[iViewIdx]->setGOPSize ( m_iGOPSize ); |
|---|
| 416 | m_acTEncDepthTopList[iViewIdx]->setGopList ( m_GOPListsMvc[iViewIdx] ); |
|---|
| 417 | m_acTEncDepthTopList[iViewIdx]->setExtraRPSs ( m_extraRPSs[iViewIdx] ); |
|---|
| 418 | #if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER |
|---|
| 419 | for(Int i = 0; i < MAX_TLAYER; i++) |
|---|
| 420 | { |
|---|
| 421 | m_acTEncDepthTopList[iViewIdx]->setNumReorderPics ( m_numReorderPics[iViewIdx][i], i ); |
|---|
| 422 | m_acTEncDepthTopList[iViewIdx]->setMaxDecPicBuffering ( m_maxDecPicBuffering[iViewIdx][i], i ); |
|---|
| 423 | } |
|---|
| 424 | #else |
|---|
| 425 | m_acTEncDepthTopList[iViewIdx]->setNumReorderFrames ( m_numReorderFrames ); |
|---|
| 426 | m_acTEncDepthTopList[iViewIdx]->setMaxNumberOfReferencePictures ( m_maxNumberOfReferencePictures ); |
|---|
| 427 | #endif |
|---|
| 428 | for( UInt uiLoop = 0; uiLoop < MAX_TLAYER; ++uiLoop ) |
|---|
| 429 | { |
|---|
| 430 | m_acTEncDepthTopList[iViewIdx]->setLambdaModifier( uiLoop, m_adLambdaModifier[ uiLoop ] ); |
|---|
| 431 | } |
|---|
| 432 | m_acTEncDepthTopList[iViewIdx]->setQP ( m_aiQP[1] ); |
|---|
| 433 | |
|---|
| 434 | m_acTEncDepthTopList[iViewIdx]->setTemporalLayerQPOffset ( m_aiTLayerQPOffset ); |
|---|
| 435 | m_acTEncDepthTopList[iViewIdx]->setPad ( m_aiPad ); |
|---|
| 436 | |
|---|
| 437 | #if H0566_TLA |
|---|
| 438 | m_acTEncDepthTopList[iViewIdx]->setMaxTempLayer ( m_maxTempLayer[iViewIdx] ); |
|---|
| 439 | #else |
|---|
| 440 | m_acTEncDepthTopList[iViewIdx]->setTLayering ( m_bTLayering ); |
|---|
| 441 | m_acTEncDepthTopList[iViewIdx]->setTLayerSwitchingFlag ( m_abTLayerSwitchingFlag ); |
|---|
| 442 | #endif |
|---|
| 443 | |
|---|
| 444 | m_acTEncDepthTopList[iViewIdx]->setDisInter4x4 ( m_bDisInter4x4); |
|---|
| 445 | |
|---|
| 446 | m_acTEncDepthTopList[iViewIdx]->setUseNSQT( m_enableNSQT ); |
|---|
| 447 | m_acTEncDepthTopList[iViewIdx]->setUseAMP( m_enableAMP ); |
|---|
| 448 | |
|---|
| 449 | //===== Slice ======== |
|---|
| 450 | |
|---|
| 451 | //====== Loop/Deblock Filter ======== |
|---|
| 452 | m_acTEncDepthTopList[iViewIdx]->setLoopFilterDisable ( m_abLoopFilterDisable[1] ); |
|---|
| 453 | m_acTEncDepthTopList[iViewIdx]->setLoopFilterOffsetInAPS ( m_loopFilterOffsetInAPS ); |
|---|
| 454 | m_acTEncDepthTopList[iViewIdx]->setLoopFilterBetaOffset ( m_loopFilterBetaOffsetDiv2 ); |
|---|
| 455 | m_acTEncDepthTopList[iViewIdx]->setLoopFilterTcOffset ( m_loopFilterTcOffsetDiv2 ); |
|---|
| 456 | #if DBL_CONTROL |
|---|
| 457 | m_acTEncDepthTopList[iViewIdx]->setDeblockingFilterControlPresent( m_DeblockingFilterControlPresent); |
|---|
| 458 | #endif |
|---|
| 459 | |
|---|
| 460 | //====== Motion search ======== |
|---|
| 461 | m_acTEncDepthTopList[iViewIdx]->setFastSearch ( m_iFastSearch ); |
|---|
| 462 | m_acTEncDepthTopList[iViewIdx]->setSearchRange ( m_iSearchRange ); |
|---|
| 463 | m_acTEncDepthTopList[iViewIdx]->setBipredSearchRange ( m_bipredSearchRange ); |
|---|
| 464 | |
|---|
| 465 | //====== Quality control ======== |
|---|
| 466 | m_acTEncDepthTopList[iViewIdx]->setMaxDeltaQP ( m_iMaxDeltaQP ); |
|---|
| 467 | m_acTEncDepthTopList[iViewIdx]->setMaxCuDQPDepth ( m_iMaxCuDQPDepth ); |
|---|
| 468 | |
|---|
| 469 | m_acTEncDepthTopList[iViewIdx]->setChromaQpOffset ( m_iChromaQpOffset ); |
|---|
| 470 | m_acTEncDepthTopList[iViewIdx]->setChromaQpOffset2nd ( m_iChromaQpOffset2nd ); |
|---|
| 471 | |
|---|
| 472 | #if ADAPTIVE_QP_SELECTION |
|---|
| 473 | m_acTEncDepthTopList[iViewIdx]->setUseAdaptQpSelect ( m_bUseAdaptQpSelect ); |
|---|
| 474 | #endif |
|---|
| 475 | |
|---|
| 476 | m_acTEncDepthTopList[iViewIdx]->setUseAdaptiveQP ( m_bUseAdaptiveQP ); |
|---|
| 477 | m_acTEncDepthTopList[iViewIdx]->setQPAdaptationRange ( m_iQPAdaptationRange ); |
|---|
| 478 | |
|---|
| 479 | //====== Tool list ======== |
|---|
| 480 | m_acTEncDepthTopList[iViewIdx]->setUseSBACRD ( m_bUseSBACRD ); |
|---|
| 481 | m_acTEncDepthTopList[iViewIdx]->setDeltaQpRD ( m_uiDeltaQpRD ); |
|---|
| 482 | m_acTEncDepthTopList[iViewIdx]->setUseASR ( m_bUseASR ); |
|---|
| 483 | m_acTEncDepthTopList[iViewIdx]->setUseHADME ( m_bUseHADME ); |
|---|
| 484 | m_acTEncDepthTopList[iViewIdx]->setUseALF ( m_abUseALF[1] ); |
|---|
| 485 | m_acTEncDepthTopList[iViewIdx]->setALFEncodePassReduction ( m_iALFEncodePassReduction ); |
|---|
| 486 | #if LOSSLESS_CODING |
|---|
| 487 | m_acTEncDepthTopList[iViewIdx]->setUseLossless ( m_useLossless ); |
|---|
| 488 | #endif |
|---|
| 489 | m_acTEncDepthTopList[iViewIdx]->setALFMaxNumberFilters ( m_iALFMaxNumberFilters ) ; |
|---|
| 490 | |
|---|
| 491 | m_acTEncDepthTopList[iViewIdx]->setUseLComb ( m_bUseLComb ); |
|---|
| 492 | m_acTEncDepthTopList[iViewIdx]->setLCMod ( m_bLCMod ); |
|---|
| 493 | m_acTEncDepthTopList[iViewIdx]->setdQPs ( m_aidQPdepth ); |
|---|
| 494 | m_acTEncDepthTopList[iViewIdx]->setUseRDOQ ( m_abUseRDOQ[1] ); |
|---|
| 495 | #if !PIC_CROPPING |
|---|
| 496 | m_acTEncDepthTopList[iViewIdx]->setUsePAD ( m_bUsePAD ); |
|---|
| 497 | #endif |
|---|
| 498 | m_acTEncDepthTopList[iViewIdx]->setQuadtreeTULog2MaxSize ( m_uiQuadtreeTULog2MaxSize ); |
|---|
| 499 | m_acTEncDepthTopList[iViewIdx]->setQuadtreeTULog2MinSize ( m_uiQuadtreeTULog2MinSize ); |
|---|
| 500 | m_acTEncDepthTopList[iViewIdx]->setQuadtreeTUMaxDepthInter ( m_uiQuadtreeTUMaxDepthInter ); |
|---|
| 501 | m_acTEncDepthTopList[iViewIdx]->setQuadtreeTUMaxDepthIntra ( m_uiQuadtreeTUMaxDepthIntra ); |
|---|
| 502 | m_acTEncDepthTopList[iViewIdx]->setUseFastEnc ( m_bUseFastEnc ); |
|---|
| 503 | m_acTEncDepthTopList[iViewIdx]->setUseEarlyCU ( m_bUseEarlyCU ); |
|---|
| 504 | #if FAST_DECISION_FOR_MRG_RD_COST |
|---|
| 505 | m_acTEncDepthTopList[iViewIdx]->setUseFastDecisionForMerge ( m_useFastDecisionForMerge ); |
|---|
| 506 | #endif |
|---|
| 507 | m_acTEncDepthTopList[iViewIdx]->setUseCbfFastMode ( m_bUseCbfFastMode ); |
|---|
| 508 | #if HHI_INTERVIEW_SKIP |
|---|
| 509 | m_acTEncDepthTopList[iViewIdx]->setInterViewSkip ( 0 ); |
|---|
| 510 | #if HHI_INTERVIEW_SKIP_LAMBDA_SCALE |
|---|
| 511 | m_acTEncDepthTopList[iViewIdx]->setInterViewSkipLambdaScale ( 1 ); |
|---|
| 512 | #endif |
|---|
| 513 | #endif |
|---|
| 514 | m_acTEncDepthTopList[iViewIdx]->setUseLMChroma ( m_bUseLMChroma ); |
|---|
| 515 | m_acTEncDepthTopList[iViewIdx]->setUseConstrainedIntraPred ( m_bUseConstrainedIntraPred ); |
|---|
| 516 | m_acTEncDepthTopList[iViewIdx]->setPCMLog2MinSize ( m_uiPCMLog2MinSize); |
|---|
| 517 | m_acTEncDepthTopList[iViewIdx]->setUsePCM ( m_usePCM ); |
|---|
| 518 | m_acTEncDepthTopList[iViewIdx]->setPCMLog2MaxSize ( m_pcmLog2MaxSize); |
|---|
| 519 | //====== VSO ======== |
|---|
| 520 | #if HHI_VSO |
|---|
| 521 | m_acTEncDepthTopList[iViewIdx]->setUseVSO ( m_bUseVSO ); //GT: might be enabled/disabled later for VSO Mode 4 |
|---|
| 522 | m_acTEncDepthTopList[iViewIdx]->setForceLambdaScaleVSO ( m_bForceLambdaScaleVSO ); |
|---|
| 523 | m_acTEncDepthTopList[iViewIdx]->setLambdaScaleVSO ( m_dLambdaScaleVSO ); |
|---|
| 524 | #if HHI_VSO_DIST_INT |
|---|
| 525 | m_acTEncDepthTopList[iViewIdx]->setAllowNegDist ( m_bAllowNegDist ); |
|---|
| 526 | #endif |
|---|
| 527 | m_acTEncDepthTopList[iViewIdx]->setVSOMode ( m_uiVSOMode ); |
|---|
| 528 | |
|---|
| 529 | #if SAIT_VSO_EST_A0033 |
|---|
| 530 | m_acTEncDepthTopList[iViewIdx]->setUseEstimatedVSD ( m_bUseEstimatedVSD ); |
|---|
| 531 | #endif |
|---|
| 532 | #if LGE_WVSO_A0119 |
|---|
| 533 | m_acTEncDepthTopList[iViewIdx]->setUseWVSO ( m_bUseWVSO ); |
|---|
| 534 | #endif |
|---|
| 535 | #endif |
|---|
| 536 | |
|---|
| 537 | #if DEPTH_MAP_GENERATION |
|---|
| 538 | m_acTEncDepthTopList[iViewIdx]->setPredDepthMapGeneration ( 0 ); |
|---|
| 539 | #endif |
|---|
| 540 | #if HHI_INTER_VIEW_MOTION_PRED |
|---|
| 541 | m_acTEncDepthTopList[iViewIdx]->setMultiviewMvPredMode ( 0 ); |
|---|
| 542 | m_acTEncDepthTopList[iViewIdx]->setMultiviewMvRegMode ( 0 ); |
|---|
| 543 | m_acTEncDepthTopList[iViewIdx]->setMultiviewMvRegLambdaScale ( 0.0 ); |
|---|
| 544 | #endif |
|---|
| 545 | #if HHI_INTER_VIEW_RESIDUAL_PRED |
|---|
| 546 | m_acTEncDepthTopList[iViewIdx]->setMultiviewResPredMode ( 0 ); |
|---|
| 547 | #endif |
|---|
| 548 | |
|---|
| 549 | //====== Weighted Prediction ======== |
|---|
| 550 | m_acTEncDepthTopList[iViewIdx]->setUseWP ( m_bUseWeightPred ); |
|---|
| 551 | m_acTEncDepthTopList[iViewIdx]->setWPBiPredIdc ( m_uiBiPredIdc ); |
|---|
| 552 | //====== Slice ======== |
|---|
| 553 | m_acTEncDepthTopList[iViewIdx]->setSliceMode ( m_iSliceMode ); |
|---|
| 554 | m_acTEncDepthTopList[iViewIdx]->setSliceArgument ( m_iSliceArgument ); |
|---|
| 555 | |
|---|
| 556 | //====== Entropy Slice ======== |
|---|
| 557 | m_acTEncDepthTopList[iViewIdx]->setEntropySliceMode ( m_iEntropySliceMode ); |
|---|
| 558 | m_acTEncDepthTopList[iViewIdx]->setEntropySliceArgument ( m_iEntropySliceArgument ); |
|---|
| 559 | int iNumPartInCU = 1<<(m_uiMaxCUDepth<<1); |
|---|
| 560 | if(m_iEntropySliceMode==SHARP_FIXED_NUMBER_OF_LCU_IN_ENTROPY_SLICE) |
|---|
| 561 | { |
|---|
| 562 | m_acTEncDepthTopList[iViewIdx]->setEntropySliceArgument ( m_iEntropySliceArgument * ( iNumPartInCU >> ( m_iSliceGranularity << 1 ) ) ); |
|---|
| 563 | } |
|---|
| 564 | if(m_iSliceMode==AD_HOC_SLICES_FIXED_NUMBER_OF_LCU_IN_SLICE) |
|---|
| 565 | { |
|---|
| 566 | m_acTEncDepthTopList[iViewIdx]->setSliceArgument ( m_iSliceArgument * ( iNumPartInCU >> ( m_iSliceGranularity << 1 ) ) ); |
|---|
| 567 | } |
|---|
| 568 | #if FIXED_NUMBER_OF_TILES_SLICE_MODE |
|---|
| 569 | if(m_iSliceMode==AD_HOC_SLICES_FIXED_NUMBER_OF_TILES_IN_SLICE) |
|---|
| 570 | { |
|---|
| 571 | m_acTEncDepthTopList[iViewIdx]->setSliceArgument ( m_iSliceArgument ); |
|---|
| 572 | } |
|---|
| 573 | #endif |
|---|
| 574 | m_acTEncDepthTopList[iViewIdx]->setSliceGranularity ( m_iSliceGranularity ); |
|---|
| 575 | if(m_iSliceMode == 0 ) |
|---|
| 576 | { |
|---|
| 577 | m_bLFCrossSliceBoundaryFlag = true; |
|---|
| 578 | } |
|---|
| 579 | m_acTEncDepthTopList[iViewIdx]->setLFCrossSliceBoundaryFlag( m_bLFCrossSliceBoundaryFlag ); |
|---|
| 580 | m_acTEncDepthTopList[iViewIdx]->setUseSAO ( m_abUseSAO[1] ); |
|---|
| 581 | #if SAO_UNIT_INTERLEAVING |
|---|
| 582 | m_acTEncDepthTopList[iViewIdx]->setMaxNumOffsetsPerPic (m_maxNumOffsetsPerPic); |
|---|
| 583 | m_acTEncDepthTopList[iViewIdx]->setSaoInterleavingFlag (m_saoInterleavingFlag); |
|---|
| 584 | #endif |
|---|
| 585 | m_acTEncDepthTopList[iViewIdx]->setPCMInputBitDepthFlag ( m_bPCMInputBitDepthFlag); |
|---|
| 586 | m_acTEncDepthTopList[iViewIdx]->setPCMFilterDisableFlag ( m_bPCMFilterDisableFlag); |
|---|
| 587 | |
|---|
| 588 | m_acTEncDepthTopList[iViewIdx]->setPictureDigestEnabled(m_pictureDigestEnabled); |
|---|
| 589 | |
|---|
| 590 | m_acTEncDepthTopList[iViewIdx]->setColumnRowInfoPresent ( m_iColumnRowInfoPresent ); |
|---|
| 591 | m_acTEncDepthTopList[iViewIdx]->setUniformSpacingIdr ( m_iUniformSpacingIdr ); |
|---|
| 592 | #if !REMOVE_TILE_DEPENDENCE |
|---|
| 593 | m_acTEncDepthTopList[iViewIdx]->setTileBoundaryIndependenceIdr( m_iTileBoundaryIndependenceIdr ); |
|---|
| 594 | #endif |
|---|
| 595 | m_acTEncDepthTopList[iViewIdx]->setNumColumnsMinus1 ( m_iNumColumnsMinus1 ); |
|---|
| 596 | m_acTEncDepthTopList[iViewIdx]->setNumRowsMinus1 ( m_iNumRowsMinus1 ); |
|---|
| 597 | if(m_iUniformSpacingIdr==0) |
|---|
| 598 | { |
|---|
| 599 | m_acTEncDepthTopList[iViewIdx]->setColumnWidth ( m_pchColumnWidth ); |
|---|
| 600 | m_acTEncDepthTopList[iViewIdx]->setRowHeight ( m_pchRowHeight ); |
|---|
| 601 | } |
|---|
| 602 | m_acTEncDepthTopList[iViewIdx]->xCheckGSParameters(); |
|---|
| 603 | m_acTEncDepthTopList[iViewIdx]->setTileLocationInSliceHeaderFlag ( m_iTileLocationInSliceHeaderFlag ); |
|---|
| 604 | m_acTEncDepthTopList[iViewIdx]->setTileMarkerFlag ( m_iTileMarkerFlag ); |
|---|
| 605 | m_acTEncDepthTopList[iViewIdx]->setMaxTileMarkerEntryPoints ( m_iMaxTileMarkerEntryPoints ); |
|---|
| 606 | |
|---|
| 607 | Int uiTilesCount = (m_iNumRowsMinus1+1) * (m_iNumColumnsMinus1+1); |
|---|
| 608 | m_dMaxTileMarkerOffset = ((Double)uiTilesCount) / m_iMaxTileMarkerEntryPoints; |
|---|
| 609 | m_acTEncDepthTopList[iViewIdx]->setMaxTileMarkerOffset ( m_dMaxTileMarkerOffset ); |
|---|
| 610 | m_acTEncDepthTopList[iViewIdx]->setTileBehaviorControlPresentFlag( m_iTileBehaviorControlPresentFlag ); |
|---|
| 611 | #if !REMOVE_TILE_DEPENDENCE |
|---|
| 612 | if(m_iTileBoundaryIndependenceIdr == 0 || uiTilesCount == 1) |
|---|
| 613 | #else |
|---|
| 614 | if(uiTilesCount == 1) |
|---|
| 615 | #endif |
|---|
| 616 | { |
|---|
| 617 | m_bLFCrossTileBoundaryFlag = true; |
|---|
| 618 | } |
|---|
| 619 | m_acTEncDepthTopList[iViewIdx]->setLFCrossTileBoundaryFlag( m_bLFCrossTileBoundaryFlag ); |
|---|
| 620 | m_acTEncDepthTopList[iViewIdx]->setWaveFrontSynchro ( m_iWaveFrontSynchro ); |
|---|
| 621 | m_acTEncDepthTopList[iViewIdx]->setWaveFrontFlush ( m_iWaveFrontFlush ); |
|---|
| 622 | m_acTEncDepthTopList[iViewIdx]->setWaveFrontSubstreams ( m_iWaveFrontSubstreams ); |
|---|
| 623 | m_acTEncDepthTopList[iViewIdx]->setEnableTMVP ( m_enableTMVP ); |
|---|
| 624 | m_acTEncDepthTopList[iViewIdx]->setUseScalingListId ( m_useScalingListId ); |
|---|
| 625 | m_acTEncDepthTopList[iViewIdx]->setScalingListFile ( m_scalingListFile ); |
|---|
| 626 | #if MULTIBITS_DATA_HIDING |
|---|
| 627 | m_acTEncDepthTopList[iViewIdx]->setSignHideFlag(m_signHideFlag); |
|---|
| 628 | m_acTEncDepthTopList[iViewIdx]->setTSIG(m_signHidingThreshold); |
|---|
| 629 | #endif |
|---|
| 630 | |
|---|
| 631 | #if LCU_SYNTAX_ALF |
|---|
| 632 | if(uiTilesCount > 1) |
|---|
| 633 | { |
|---|
| 634 | m_bALFParamInSlice = false; |
|---|
| 635 | m_bALFPicBasedEncode = true; |
|---|
| 636 | } |
|---|
| 637 | m_acTEncDepthTopList[iViewIdx]->setALFParamInSlice ( m_bALFParamInSlice); |
|---|
| 638 | m_acTEncDepthTopList[iViewIdx]->setALFPicBasedEncode ( m_bALFPicBasedEncode); |
|---|
| 639 | #endif |
|---|
| 640 | |
|---|
| 641 | //====== Depth tools ======== |
|---|
| 642 | #if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX |
|---|
| 643 | m_acTEncDepthTopList[iViewIdx]->setUseDMM ( m_bUseDMM ); |
|---|
| 644 | #endif |
|---|
| 645 | #if OL_DEPTHLIMIT_A0044 |
|---|
| 646 | m_acTEncDepthTopList[iViewIdx]->setUseDPL (m_bDepthPartitionLimiting); |
|---|
| 647 | #endif |
|---|
| 648 | #if HHI_MPI |
|---|
| 649 | m_acTEncDepthTopList[iViewIdx]->setUseMVI( m_bUseMVI ); |
|---|
| 650 | #endif |
|---|
| 651 | } |
|---|
| 652 | } |
|---|
| 653 | |
|---|
| 654 | #if HHI_INTER_VIEW_MOTION_PRED |
|---|
| 655 | else if( m_uiMultiviewMvRegMode ) |
|---|
| 656 | { |
|---|
| 657 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 658 | { |
|---|
| 659 | m_acTVideoIOYuvDepthInputFileList.push_back( new TVideoIOYuv ); |
|---|
| 660 | } |
|---|
| 661 | } |
|---|
| 662 | #endif |
|---|
| 663 | |
|---|
| 664 | #if HHI_VSO |
|---|
| 665 | if ( m_bUseVSO ) |
|---|
| 666 | { |
|---|
| 667 | if ( m_uiVSOMode == 4 ) |
|---|
| 668 | { |
|---|
| 669 | #if HHI_VSO_SPEEDUP_A0033 |
|---|
| 670 | #if LGE_VSO_EARLY_SKIP_A0093 |
|---|
| 671 | m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0, m_bVSOEarlySkip ); |
|---|
| 672 | #else |
|---|
| 673 | m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, g_uiMaxCUHeight , LOG2_DISP_PREC_LUT, 0 ); |
|---|
| 674 | #endif |
|---|
| 675 | #else |
|---|
| 676 | m_cRendererModel.create( m_cRenModStrParser.getNumOfBaseViews(), m_cRenModStrParser.getNumOfModels(), m_iSourceWidth, m_iSourceHeight, LOG2_DISP_PREC_LUT, 0 ); |
|---|
| 677 | #endif |
|---|
| 678 | |
|---|
| 679 | for ( Int iViewNum = 0; iViewNum < m_iNumberOfViews; iViewNum++ ) |
|---|
| 680 | { |
|---|
| 681 | for (Int iContent = 0; iContent < 2; iContent++ ) |
|---|
| 682 | { |
|---|
| 683 | Int iNumOfModels = m_cRenModStrParser.getNumOfModelsForView(iViewNum, iContent); |
|---|
| 684 | Bool bUseVSO = (iNumOfModels != 0); |
|---|
| 685 | |
|---|
| 686 | TEncTop* pcEncTop = ( iContent == 0 ) ? m_acTEncTopList[iViewNum] : m_acTEncDepthTopList[iViewNum]; |
|---|
| 687 | pcEncTop->setUseVSO( bUseVSO ); |
|---|
| 688 | pcEncTop->getRdCost()->setRenModel( bUseVSO ? &m_cRendererModel : NULL ); |
|---|
| 689 | |
|---|
| 690 | for (Int iCurModel = 0; iCurModel < iNumOfModels; iCurModel++ ) |
|---|
| 691 | { |
|---|
| 692 | Int iModelNum; Int iLeftViewNum; Int iRightViewNum; Int iDump; Int iOrgRefNum; Int iBlendMode; |
|---|
| 693 | |
|---|
| 694 | m_cRenModStrParser.getSingleModelData ( iViewNum, iContent, iCurModel, iModelNum, iBlendMode, iLeftViewNum, iRightViewNum, iOrgRefNum, iDump ) ; |
|---|
| 695 | m_cRendererModel .createSingleModel ( iViewNum, iContent, iModelNum, iLeftViewNum, iRightViewNum, (iOrgRefNum != -1), iBlendMode ); |
|---|
| 696 | } |
|---|
| 697 | } |
|---|
| 698 | } |
|---|
| 699 | } |
|---|
| 700 | else |
|---|
| 701 | { |
|---|
| 702 | AOT(true); |
|---|
| 703 | } |
|---|
| 704 | #if LGE_WVSO_A0119 |
|---|
| 705 | for ( Int iViewNum = 0; iViewNum < m_iNumberOfViews; iViewNum++ ) |
|---|
| 706 | { |
|---|
| 707 | for (Int iContent = 0; iContent < 2; iContent++ ) |
|---|
| 708 | { |
|---|
| 709 | TEncTop* pcEncTop = ( iContent == 0 ) ? m_acTEncTopList[iViewNum] : m_acTEncDepthTopList[iViewNum]; |
|---|
| 710 | pcEncTop->setUseWVSO ( m_bUseWVSO ); |
|---|
| 711 | pcEncTop->setVSOWeight( m_iVSOWeight ); |
|---|
| 712 | pcEncTop->setVSDWeight( m_iVSDWeight ); |
|---|
| 713 | pcEncTop->setDWeight ( m_iDWeight ); |
|---|
| 714 | } |
|---|
| 715 | } |
|---|
| 716 | #endif |
|---|
| 717 | } |
|---|
| 718 | #endif |
|---|
| 719 | |
|---|
| 720 | #if HHI_INTERVIEW_SKIP |
|---|
| 721 | m_cUsedPelsRenderer.init(m_iSourceWidth, m_iSourceHeight, true, 0, LOG2_DISP_PREC_LUT, true, 0, 0, 0, 0, 0, 6, 4, 1, 0, 6 ); |
|---|
| 722 | #endif |
|---|
| 723 | |
|---|
| 724 | } |
|---|
| 725 | |
|---|
| 726 | Void TAppEncTop::xCreateLib() |
|---|
| 727 | { |
|---|
| 728 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 729 | { |
|---|
| 730 | m_acTVideoIOYuvInputFileList[iViewIdx]->open( m_pchInputFileList[iViewIdx], false, m_uiInputBitDepth, m_uiInternalBitDepth ); // read mode |
|---|
| 731 | m_acTVideoIOYuvInputFileList[iViewIdx]->skipFrames(m_FrameSkip, m_iSourceWidth - m_aiPad[0], m_iSourceHeight - m_aiPad[1]); |
|---|
| 732 | |
|---|
| 733 | if (m_pchReconFileList[iViewIdx]) |
|---|
| 734 | m_acTVideoIOYuvReconFileList[iViewIdx]->open(m_pchReconFileList[iViewIdx], true, m_uiOutputBitDepth, m_uiInternalBitDepth); // write mode |
|---|
| 735 | m_acTEncTopList[iViewIdx]->create(); |
|---|
| 736 | if( m_bUsingDepthMaps ) |
|---|
| 737 | { |
|---|
| 738 | m_acTVideoIOYuvDepthInputFileList[iViewIdx]->open( m_pchDepthInputFileList[iViewIdx], false, m_uiInputBitDepth, m_uiInternalBitDepth ); // read mode |
|---|
| 739 | m_acTVideoIOYuvDepthInputFileList[iViewIdx]->skipFrames(m_FrameSkip, m_iSourceWidth - m_aiPad[0], m_iSourceHeight - m_aiPad[1]); |
|---|
| 740 | |
|---|
| 741 | if (m_pchDepthReconFileList[iViewIdx]) |
|---|
| 742 | m_acTVideoIOYuvDepthReconFileList[iViewIdx]->open(m_pchDepthReconFileList[iViewIdx], true, m_uiOutputBitDepth, m_uiInternalBitDepth); // write mode |
|---|
| 743 | m_acTEncDepthTopList[iViewIdx]->create(); |
|---|
| 744 | } |
|---|
| 745 | #if HHI_INTER_VIEW_MOTION_PRED |
|---|
| 746 | else if( m_uiMultiviewMvRegMode ) |
|---|
| 747 | { |
|---|
| 748 | m_acTVideoIOYuvDepthInputFileList[iViewIdx]->open( m_pchDepthInputFileList[iViewIdx], false, m_uiInputBitDepth, m_uiInternalBitDepth ); // read mode |
|---|
| 749 | m_acTVideoIOYuvDepthInputFileList[iViewIdx]->skipFrames(m_FrameSkip, m_iSourceWidth, m_iSourceHeight); |
|---|
| 750 | } |
|---|
| 751 | #endif |
|---|
| 752 | } |
|---|
| 753 | } |
|---|
| 754 | |
|---|
| 755 | Void TAppEncTop::xDestroyLib() |
|---|
| 756 | { |
|---|
| 757 | // Video I/O |
|---|
| 758 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 759 | { |
|---|
| 760 | m_acTVideoIOYuvInputFileList[iViewIdx]->close(); |
|---|
| 761 | m_acTVideoIOYuvReconFileList[iViewIdx]->close(); |
|---|
| 762 | delete m_acTVideoIOYuvInputFileList[iViewIdx] ; |
|---|
| 763 | m_acTVideoIOYuvInputFileList[iViewIdx] = NULL; |
|---|
| 764 | delete m_acTVideoIOYuvReconFileList[iViewIdx] ; |
|---|
| 765 | m_acTVideoIOYuvReconFileList[iViewIdx] = NULL; |
|---|
| 766 | m_acTEncTopList[iViewIdx]->deletePicBuffer(); |
|---|
| 767 | m_acTEncTopList[iViewIdx]->destroy(); |
|---|
| 768 | delete m_acTEncTopList[iViewIdx] ; |
|---|
| 769 | m_acTEncTopList[iViewIdx] = NULL; |
|---|
| 770 | delete m_picYuvRec[iViewIdx] ; |
|---|
| 771 | m_picYuvRec[iViewIdx] = NULL; |
|---|
| 772 | |
|---|
| 773 | if( iViewIdx < Int( m_acTVideoIOYuvDepthInputFileList.size() ) && m_acTVideoIOYuvDepthInputFileList[iViewIdx] ) |
|---|
| 774 | { |
|---|
| 775 | m_acTVideoIOYuvDepthInputFileList[iViewIdx]->close( ); |
|---|
| 776 | delete m_acTVideoIOYuvDepthInputFileList[iViewIdx]; |
|---|
| 777 | m_acTVideoIOYuvDepthInputFileList[iViewIdx] = NULL; |
|---|
| 778 | } |
|---|
| 779 | if( iViewIdx < Int( m_acTVideoIOYuvDepthReconFileList.size() ) && m_acTVideoIOYuvDepthReconFileList[iViewIdx] ) |
|---|
| 780 | { |
|---|
| 781 | m_acTVideoIOYuvDepthReconFileList[iViewIdx]->close () ; |
|---|
| 782 | delete m_acTVideoIOYuvDepthReconFileList[iViewIdx]; |
|---|
| 783 | m_acTVideoIOYuvDepthReconFileList[iViewIdx] = NULL; |
|---|
| 784 | } |
|---|
| 785 | if( iViewIdx < Int( m_acTEncDepthTopList.size() ) && m_acTEncDepthTopList[iViewIdx] ) |
|---|
| 786 | { |
|---|
| 787 | m_acTEncDepthTopList[iViewIdx]->deletePicBuffer(); |
|---|
| 788 | m_acTEncDepthTopList[iViewIdx]->destroy(); |
|---|
| 789 | delete m_acTEncDepthTopList[iViewIdx]; |
|---|
| 790 | m_acTEncDepthTopList[iViewIdx] = NULL; |
|---|
| 791 | } |
|---|
| 792 | if( iViewIdx < Int( m_picYuvDepthRec.size() ) && m_picYuvDepthRec[iViewIdx] ) |
|---|
| 793 | { |
|---|
| 794 | delete m_picYuvDepthRec[iViewIdx] ; |
|---|
| 795 | m_picYuvDepthRec[iViewIdx] = NULL; |
|---|
| 796 | } |
|---|
| 797 | } |
|---|
| 798 | } |
|---|
| 799 | |
|---|
| 800 | Void TAppEncTop::xInitLib() |
|---|
| 801 | { |
|---|
| 802 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 803 | { |
|---|
| 804 | m_acTEncTopList[iViewIdx]->init( this ); |
|---|
| 805 | } |
|---|
| 806 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 807 | { |
|---|
| 808 | m_acTEncTopList[iViewIdx]->setTEncTopList( &m_acTEncTopList ); |
|---|
| 809 | } |
|---|
| 810 | if ( m_bUsingDepthMaps ) |
|---|
| 811 | { |
|---|
| 812 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 813 | { |
|---|
| 814 | m_acTEncDepthTopList[iViewIdx]->init( this ); |
|---|
| 815 | } |
|---|
| 816 | for(Int iViewIdx=0; iViewIdx<m_iNumberOfViews; iViewIdx++) |
|---|
| 817 | { |
|---|
| 818 | m_acTEncDepthTopList[iViewIdx]->setTEncTopList( &m_acTEncDepthTopList ); |
|---|
| 819 | } |
|---|
| 820 | } |
|---|
| 821 | } |
|---|
| 822 | |
|---|
| 823 | // ==================================================================================================================== |
|---|
| 824 | // Public member functions |
|---|
| 825 | // ==================================================================================================================== |
|---|
| 826 | |
|---|
| 827 | /** |
|---|
| 828 | - create internal class |
|---|
| 829 | - initialize internal variable |
|---|
| 830 | - until the end of input YUV file, call encoding function in TEncTop class |
|---|
| 831 | - delete allocated buffers |
|---|
| 832 | - destroy internal class |
|---|
| 833 | . |
|---|
| 834 | */ |
|---|
| 835 | Void TAppEncTop::encode() |
|---|
| 836 | { |
|---|
| 837 | fstream bitstreamFile(m_pchBitstreamFile, fstream::binary | fstream::out); |
|---|
| 838 | if (!bitstreamFile) |
|---|
| 839 | { |
|---|
| 840 | fprintf(stderr, "\nfailed to open bitstream file `%s' for writing\n", m_pchBitstreamFile); |
|---|
| 841 | exit(EXIT_FAILURE); |
|---|
| 842 | } |
|---|
| 843 | |
|---|
| 844 | TComPicYuv* pcPicYuvOrg = new TComPicYuv; |
|---|
| 845 | TComPicYuv* pcDepthPicYuvOrg = new TComPicYuv; |
|---|
| 846 | TComPicYuv* pcPdmDepthOrg = new TComPicYuv; |
|---|
| 847 | TComPicYuv* pcPicYuvRec = NULL; |
|---|
| 848 | TComPicYuv* pcDepthPicYuvRec = NULL; |
|---|
| 849 | |
|---|
| 850 | // initialize internal class & member variables |
|---|
| 851 | xInitLibCfg(); |
|---|
| 852 | xCreateLib(); |
|---|
| 853 | xInitLib(); |
|---|
| 854 | |
|---|
| 855 | // main encoder loop |
|---|
| 856 | Bool allEos = false; |
|---|
| 857 | std::vector<Bool> eos ; |
|---|
| 858 | std::vector<Bool> depthEos ; |
|---|
| 859 | Int maxGopSize = 0; |
|---|
| 860 | Int gopSize = 1; |
|---|
| 861 | |
|---|
| 862 | list<AccessUnit> outputAccessUnits; ///< list of access units to write out. is populated by the encoding process |
|---|
| 863 | maxGopSize = (std::max)(maxGopSize, m_acTEncTopList[0]->getGOPSize()); |
|---|
| 864 | |
|---|
| 865 | for(Int iViewIdx=0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) |
|---|
| 866 | { |
|---|
| 867 | eos.push_back( false ); |
|---|
| 868 | depthEos.push_back( false ); |
|---|
| 869 | } |
|---|
| 870 | |
|---|
| 871 | // allocate original YUV buffer |
|---|
| 872 | pcPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth ); |
|---|
| 873 | pcDepthPicYuvOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth ); |
|---|
| 874 | |
|---|
| 875 | #if HHI_INTER_VIEW_MOTION_PRED |
|---|
| 876 | if( m_uiMultiviewMvRegMode ) |
|---|
| 877 | { |
|---|
| 878 | pcPdmDepthOrg->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth ); |
|---|
| 879 | } |
|---|
| 880 | #endif |
|---|
| 881 | |
|---|
| 882 | while ( !allEos ) |
|---|
| 883 | { |
|---|
| 884 | for(Int iViewIdx=0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) |
|---|
| 885 | { |
|---|
| 886 | Int frmCnt = 0; |
|---|
| 887 | while ( !eos[iViewIdx] && !(frmCnt == gopSize)) |
|---|
| 888 | { |
|---|
| 889 | // get buffers |
|---|
| 890 | xGetBuffer(pcPicYuvRec, iViewIdx, false); |
|---|
| 891 | |
|---|
| 892 | // read input YUV file |
|---|
| 893 | m_acTVideoIOYuvInputFileList[iViewIdx]->read( pcPicYuvOrg, m_aiPad ); |
|---|
| 894 | |
|---|
| 895 | #if HHI_INTER_VIEW_MOTION_PRED |
|---|
| 896 | if( m_uiMultiviewMvRegMode && iViewIdx ) |
|---|
| 897 | { |
|---|
| 898 | m_acTVideoIOYuvDepthInputFileList[iViewIdx]->read( pcPdmDepthOrg, m_aiPad, m_bUsingDepthMaps ); |
|---|
| 899 | } |
|---|
| 900 | #endif |
|---|
| 901 | |
|---|
| 902 | #if HHI_INTER_VIEW_MOTION_PRED |
|---|
| 903 | m_acTEncTopList[iViewIdx]->initNewPic( pcPicYuvOrg, ( m_uiMultiviewMvRegMode && iViewIdx ? pcPdmDepthOrg : 0 ) ); |
|---|
| 904 | #else |
|---|
| 905 | m_acTEncTopList[iViewIdx]->initNewPic( pcPicYuvOrg ); |
|---|
| 906 | #endif |
|---|
| 907 | |
|---|
| 908 | // increase number of received frames |
|---|
| 909 | m_frameRcvd[iViewIdx]++; |
|---|
| 910 | frmCnt++; |
|---|
| 911 | // check end of file |
|---|
| 912 | eos[iViewIdx] = ( m_acTVideoIOYuvInputFileList[iViewIdx]->isEof() == 1 ? true : false ); |
|---|
| 913 | eos[iViewIdx] = ( m_frameRcvd[iViewIdx] == m_iFrameToBeEncoded ? true : eos[iViewIdx] ); |
|---|
| 914 | allEos = allEos|eos[iViewIdx] ; |
|---|
| 915 | } |
|---|
| 916 | if( m_bUsingDepthMaps ) |
|---|
| 917 | { |
|---|
| 918 | Int frmCntDepth = 0; |
|---|
| 919 | while ( !depthEos[iViewIdx] && !(frmCntDepth == gopSize)) |
|---|
| 920 | { |
|---|
| 921 | // get buffers |
|---|
| 922 | xGetBuffer(pcDepthPicYuvRec, iViewIdx, true); |
|---|
| 923 | |
|---|
| 924 | // read input YUV file |
|---|
| 925 | m_acTVideoIOYuvDepthInputFileList[iViewIdx]->read( pcDepthPicYuvOrg, m_aiPad ); |
|---|
| 926 | |
|---|
| 927 | m_acTEncDepthTopList[iViewIdx]->initNewPic( pcDepthPicYuvOrg ); |
|---|
| 928 | |
|---|
| 929 | // increase number of received frames |
|---|
| 930 | m_depthFrameRcvd[iViewIdx]++; |
|---|
| 931 | frmCntDepth++; |
|---|
| 932 | // check end of file |
|---|
| 933 | depthEos[iViewIdx] = ( m_acTVideoIOYuvDepthInputFileList[iViewIdx]->isEof() == 1 ? true : false ); |
|---|
| 934 | depthEos[iViewIdx] = ( m_depthFrameRcvd[iViewIdx] == m_iFrameToBeEncoded ? true : depthEos[iViewIdx] ); |
|---|
| 935 | allEos = allEos|depthEos[iViewIdx] ; |
|---|
| 936 | } |
|---|
| 937 | } |
|---|
| 938 | } |
|---|
| 939 | for ( Int gopId=0; gopId < gopSize; gopId++ ) |
|---|
| 940 | { |
|---|
| 941 | Int iNumEncoded = 0; |
|---|
| 942 | UInt iNextPoc = m_acTEncTopList[0] -> getFrameId( gopId ); |
|---|
| 943 | if ( iNextPoc < m_iFrameToBeEncoded ) |
|---|
| 944 | { |
|---|
| 945 | m_cCameraData.update( iNextPoc ); |
|---|
| 946 | } |
|---|
| 947 | for(Int iViewIdx=0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) |
|---|
| 948 | { |
|---|
| 949 | #if SAIT_VSO_EST_A0033 |
|---|
| 950 | if( m_bUseVSO && iNextPoc < m_iFrameToBeEncoded ) |
|---|
| 951 | { |
|---|
| 952 | m_cCameraData.xSetDispCoeff( iNextPoc, iViewIdx ); |
|---|
| 953 | m_acTEncDepthTopList[iViewIdx]->setDispCoeff( m_cCameraData.getDispCoeff() ); |
|---|
| 954 | } |
|---|
| 955 | #endif |
|---|
| 956 | iNumEncoded = 0; |
|---|
| 957 | // call encoding function for one frame |
|---|
| 958 | m_acTEncTopList[iViewIdx]->encode( eos[iViewIdx], pcPicYuvOrg, *m_picYuvRec[iViewIdx], outputAccessUnits, iNumEncoded, gopId ); |
|---|
| 959 | xWriteOutput(bitstreamFile, iNumEncoded, outputAccessUnits, iViewIdx, false); |
|---|
| 960 | outputAccessUnits.clear(); |
|---|
| 961 | if( m_bUsingDepthMaps ) |
|---|
| 962 | { |
|---|
| 963 | Int iNumDepthEncoded = 0; |
|---|
| 964 | // call encoding function for one depth frame |
|---|
| 965 | m_acTEncDepthTopList[iViewIdx]->encode( depthEos[iViewIdx], pcDepthPicYuvOrg, *m_picYuvDepthRec[iViewIdx], outputAccessUnits, iNumDepthEncoded, gopId ); |
|---|
| 966 | xWriteOutput(bitstreamFile, iNumDepthEncoded, outputAccessUnits, iViewIdx, true); |
|---|
| 967 | outputAccessUnits.clear(); |
|---|
| 968 | } |
|---|
| 969 | } |
|---|
| 970 | #if HHI_INTERVIEW_SKIP || HHI_INTER_VIEW_MOTION_PRED || HHI_INTER_VIEW_RESIDUAL_PRED |
|---|
| 971 | for( Int iViewIdx = 0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) |
|---|
| 972 | { |
|---|
| 973 | if( iViewIdx < (Int)m_acTEncTopList.size() && m_acTEncTopList[iViewIdx] ) |
|---|
| 974 | { |
|---|
| 975 | m_acTEncTopList[iViewIdx]->deleteExtraPicBuffers( m_acTEncTopList[iViewIdx]->getGOPEncoder()->getPocLastCoded() ); |
|---|
| 976 | } |
|---|
| 977 | if( iViewIdx < (Int)m_acTEncDepthTopList.size() && m_acTEncDepthTopList[iViewIdx] ) |
|---|
| 978 | { |
|---|
| 979 | m_acTEncDepthTopList[iViewIdx]->deleteExtraPicBuffers( m_acTEncTopList[iViewIdx]->getGOPEncoder()->getPocLastCoded() ); |
|---|
| 980 | } |
|---|
| 981 | } |
|---|
| 982 | #endif |
|---|
| 983 | for(Int iViewIdx=0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) |
|---|
| 984 | { |
|---|
| 985 | m_acTEncTopList[iViewIdx]->compressMotion( m_acTEncTopList[iViewIdx]->getGOPEncoder()->getPocLastCoded() ); |
|---|
| 986 | if( m_bUsingDepthMaps ) |
|---|
| 987 | { |
|---|
| 988 | m_acTEncDepthTopList[iViewIdx]->compressMotion( m_acTEncDepthTopList[iViewIdx]->getGOPEncoder()->getPocLastCoded() ); |
|---|
| 989 | } |
|---|
| 990 | } |
|---|
| 991 | } |
|---|
| 992 | gopSize = maxGopSize; |
|---|
| 993 | } |
|---|
| 994 | // delete original YUV buffer |
|---|
| 995 | pcPicYuvOrg->destroy(); |
|---|
| 996 | delete pcPicYuvOrg; |
|---|
| 997 | pcPicYuvOrg = NULL; |
|---|
| 998 | pcDepthPicYuvOrg->destroy(); |
|---|
| 999 | delete pcDepthPicYuvOrg; |
|---|
| 1000 | pcDepthPicYuvOrg = NULL; |
|---|
| 1001 | |
|---|
| 1002 | #if FIX_MEM_LEAKS |
|---|
| 1003 | if ( pcPdmDepthOrg != NULL ) |
|---|
| 1004 | { |
|---|
| 1005 | pcPdmDepthOrg->destroy(); |
|---|
| 1006 | delete pcPdmDepthOrg; |
|---|
| 1007 | pcPdmDepthOrg = NULL; |
|---|
| 1008 | }; |
|---|
| 1009 | #endif |
|---|
| 1010 | |
|---|
| 1011 | |
|---|
| 1012 | for(Int iViewIdx=0; iViewIdx < m_iNumberOfViews; iViewIdx++ ) |
|---|
| 1013 | { |
|---|
| 1014 | m_acTEncTopList[iViewIdx]->printOutSummary(m_acTEncTopList[iViewIdx]->getNumAllPicCoded()); |
|---|
| 1015 | if ( m_bUsingDepthMaps ) |
|---|
| 1016 | { |
|---|
| 1017 | m_acTEncDepthTopList[iViewIdx]->printOutSummary(m_acTEncDepthTopList[iViewIdx]->getNumAllPicCoded()); |
|---|
| 1018 | } |
|---|
| 1019 | } |
|---|
| 1020 | |
|---|
| 1021 | // delete buffers & classes |
|---|
| 1022 | xDeleteBuffer(); |
|---|
| 1023 | xDestroyLib(); |
|---|
| 1024 | |
|---|
| 1025 | return; |
|---|
| 1026 | } |
|---|
| 1027 | |
|---|
| 1028 | TEncTop* TAppEncTop::getTEncTop( Int viewId, Bool isDepth ) |
|---|
| 1029 | { |
|---|
| 1030 | if ( isDepth ) |
|---|
| 1031 | { |
|---|
| 1032 | return m_acTEncDepthTopList[viewId]; |
|---|
| 1033 | } |
|---|
| 1034 | else |
|---|
| 1035 | { |
|---|
| 1036 | return m_acTEncTopList[viewId]; |
|---|
| 1037 | } |
|---|
| 1038 | } |
|---|
| 1039 | |
|---|
| 1040 | |
|---|
| 1041 | // ==================================================================================================================== |
|---|
| 1042 | // Protected member functions |
|---|
| 1043 | // ==================================================================================================================== |
|---|
| 1044 | |
|---|
| 1045 | /** |
|---|
| 1046 | - application has picture buffer list with size of GOP |
|---|
| 1047 | - picture buffer list acts as ring buffer |
|---|
| 1048 | - end of the list has the latest picture |
|---|
| 1049 | . |
|---|
| 1050 | */ |
|---|
| 1051 | Void TAppEncTop::xGetBuffer( TComPicYuv*& rpcPicYuvRec, Int iViewIdx, Bool isDepth) |
|---|
| 1052 | { |
|---|
| 1053 | assert( m_iGOPSize > 0 ); |
|---|
| 1054 | |
|---|
| 1055 | if( !isDepth ) |
|---|
| 1056 | { |
|---|
| 1057 | if ( m_picYuvRec[iViewIdx]->size() == (UInt)m_iGOPSize ) |
|---|
| 1058 | { |
|---|
| 1059 | rpcPicYuvRec = m_picYuvRec[iViewIdx]->popFront(); |
|---|
| 1060 | } |
|---|
| 1061 | else |
|---|
| 1062 | { |
|---|
| 1063 | rpcPicYuvRec = new TComPicYuv; |
|---|
| 1064 | rpcPicYuvRec->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth ); |
|---|
| 1065 | } |
|---|
| 1066 | m_picYuvRec[iViewIdx]->pushBack( rpcPicYuvRec ); |
|---|
| 1067 | } |
|---|
| 1068 | else |
|---|
| 1069 | { |
|---|
| 1070 | if ( m_picYuvDepthRec[iViewIdx]->size() == (UInt)m_iGOPSize ) |
|---|
| 1071 | { |
|---|
| 1072 | rpcPicYuvRec = m_picYuvDepthRec[iViewIdx]->popFront(); |
|---|
| 1073 | } |
|---|
| 1074 | else |
|---|
| 1075 | { |
|---|
| 1076 | rpcPicYuvRec = new TComPicYuv; |
|---|
| 1077 | rpcPicYuvRec->create( m_iSourceWidth, m_iSourceHeight, m_uiMaxCUWidth, m_uiMaxCUHeight, m_uiMaxCUDepth ); |
|---|
| 1078 | } |
|---|
| 1079 | m_picYuvDepthRec[iViewIdx]->pushBack( rpcPicYuvRec ); |
|---|
| 1080 | } |
|---|
| 1081 | } |
|---|
| 1082 | |
|---|
| 1083 | Void TAppEncTop::xDeleteBuffer( ) |
|---|
| 1084 | { |
|---|
| 1085 | for(Int iViewIdx=0; iViewIdx<m_picYuvRec.size(); iViewIdx++) |
|---|
| 1086 | { |
|---|
| 1087 | if(m_picYuvRec[iViewIdx]) |
|---|
| 1088 | { |
|---|
| 1089 | TComList<TComPicYuv*>::iterator iterPicYuvRec = m_picYuvRec[iViewIdx]->begin(); |
|---|
| 1090 | Int iSize = Int( m_picYuvRec[iViewIdx]->size() ); |
|---|
| 1091 | for ( Int i = 0; i < iSize; i++ ) |
|---|
| 1092 | { |
|---|
| 1093 | TComPicYuv* pcPicYuvRec = *(iterPicYuvRec++); |
|---|
| 1094 | if(pcPicYuvRec) |
|---|
| 1095 | { |
|---|
| 1096 | pcPicYuvRec->destroy(); |
|---|
| 1097 | delete pcPicYuvRec; |
|---|
| 1098 | pcPicYuvRec = NULL; |
|---|
| 1099 | } |
|---|
| 1100 | } |
|---|
| 1101 | } |
|---|
| 1102 | } |
|---|
| 1103 | for(Int iViewIdx=0; iViewIdx<m_picYuvDepthRec.size(); iViewIdx++) |
|---|
| 1104 | { |
|---|
| 1105 | if(m_picYuvDepthRec[iViewIdx]) |
|---|
| 1106 | { |
|---|
| 1107 | TComList<TComPicYuv*>::iterator iterPicYuvRec = m_picYuvDepthRec[iViewIdx]->begin(); |
|---|
| 1108 | Int iSize = Int( m_picYuvDepthRec[iViewIdx]->size() ); |
|---|
| 1109 | for ( Int i = 0; i < iSize; i++ ) |
|---|
| 1110 | { |
|---|
| 1111 | TComPicYuv* pcPicYuvRec = *(iterPicYuvRec++); |
|---|
| 1112 | if(pcPicYuvRec) |
|---|
| 1113 | { |
|---|
| 1114 | pcPicYuvRec->destroy(); |
|---|
| 1115 | delete pcPicYuvRec; |
|---|
| 1116 | pcPicYuvRec = NULL; |
|---|
| 1117 | } |
|---|
| 1118 | } |
|---|
| 1119 | } |
|---|
| 1120 | } |
|---|
| 1121 | } |
|---|
| 1122 | |
|---|
| 1123 | /** \param iNumEncoded number of encoded frames |
|---|
| 1124 | */ |
|---|
| 1125 | Void TAppEncTop::xWriteOutput(std::ostream& bitstreamFile, Int iNumEncoded, std::list<AccessUnit>& accessUnits, Int iViewIdx, Bool isDepth ) |
|---|
| 1126 | { |
|---|
| 1127 | Int i; |
|---|
| 1128 | |
|---|
| 1129 | if( iNumEncoded > 0 ) |
|---|
| 1130 | { |
|---|
| 1131 | TComList<TComPicYuv*>::iterator iterPicYuvRec = !isDepth ? m_picYuvRec[iViewIdx]->end() : m_picYuvDepthRec[iViewIdx]->end(); |
|---|
| 1132 | |
|---|
| 1133 | for ( i = 0; i < iNumEncoded; i++ ) |
|---|
| 1134 | { |
|---|
| 1135 | --iterPicYuvRec; |
|---|
| 1136 | } |
|---|
| 1137 | |
|---|
| 1138 | for ( i = 0; i < iNumEncoded; i++ ) |
|---|
| 1139 | { |
|---|
| 1140 | TComPicYuv* pcPicYuvRec = *(iterPicYuvRec++); |
|---|
| 1141 | if( !isDepth ) |
|---|
| 1142 | { |
|---|
| 1143 | if (m_pchReconFileList[iViewIdx]) |
|---|
| 1144 | { |
|---|
| 1145 | #if PIC_CROPPING |
|---|
| 1146 | m_acTVideoIOYuvReconFileList[iViewIdx]->write( pcPicYuvRec, m_cropLeft, m_cropRight, m_cropTop, m_cropBottom ); |
|---|
| 1147 | #else |
|---|
| 1148 | m_acTVideoIOYuvReconFileList[iViewIdx]->write( pcPicYuvRec, m_aiPad ); |
|---|
| 1149 | #endif |
|---|
| 1150 | } |
|---|
| 1151 | } |
|---|
| 1152 | else |
|---|
| 1153 | { |
|---|
| 1154 | if (m_pchDepthReconFileList[iViewIdx]) |
|---|
| 1155 | { |
|---|
| 1156 | #if PIC_CROPPING |
|---|
| 1157 | m_acTVideoIOYuvDepthReconFileList[iViewIdx]->write( pcPicYuvRec, m_cropLeft, m_cropRight, m_cropTop, m_cropBottom ); |
|---|
| 1158 | #else |
|---|
| 1159 | m_acTVideoIOYuvDepthReconFileList[iViewIdx]->write( pcPicYuvRec, m_aiPad ); |
|---|
| 1160 | #endif |
|---|
| 1161 | } |
|---|
| 1162 | } |
|---|
| 1163 | } |
|---|
| 1164 | } |
|---|
| 1165 | if( ! accessUnits.empty() ) |
|---|
| 1166 | { |
|---|
| 1167 | list<AccessUnit>::iterator aUIter; |
|---|
| 1168 | for( aUIter = accessUnits.begin(); aUIter != accessUnits.end(); aUIter++ ) |
|---|
| 1169 | { |
|---|
| 1170 | const vector<unsigned>& stats = writeAnnexB(bitstreamFile, *aUIter); |
|---|
| 1171 | rateStatsAccum(*aUIter, stats); |
|---|
| 1172 | } |
|---|
| 1173 | } |
|---|
| 1174 | } |
|---|
| 1175 | |
|---|
| 1176 | |
|---|
| 1177 | TComPicYuv* TAppEncTop::xGetPicYuvFromView( Int iViewIdx, Int iPoc, Bool bDepth, Bool bRecon ) |
|---|
| 1178 | { |
|---|
| 1179 | TComPic* pcPic = xGetPicFromView( iViewIdx, iPoc, bDepth); |
|---|
| 1180 | TComPicYuv* pcPicYuv = NULL; |
|---|
| 1181 | |
|---|
| 1182 | if (pcPic != NULL) |
|---|
| 1183 | { |
|---|
| 1184 | if( bRecon ) |
|---|
| 1185 | { |
|---|
| 1186 | if ( pcPic->getReconMark() ) |
|---|
| 1187 | { |
|---|
| 1188 | pcPicYuv = pcPic->getPicYuvRec(); |
|---|
| 1189 | } |
|---|
| 1190 | } |
|---|
| 1191 | else |
|---|
| 1192 | { |
|---|
| 1193 | pcPicYuv = pcPic->getPicYuvOrg(); |
|---|
| 1194 | } |
|---|
| 1195 | }; |
|---|
| 1196 | |
|---|
| 1197 | return pcPicYuv; |
|---|
| 1198 | }; |
|---|
| 1199 | |
|---|
| 1200 | /** |
|---|
| 1201 | * |
|---|
| 1202 | */ |
|---|
| 1203 | void TAppEncTop::rateStatsAccum(const AccessUnit& au, const std::vector<unsigned>& annexBsizes) |
|---|
| 1204 | { |
|---|
| 1205 | AccessUnit::const_iterator it_au = au.begin(); |
|---|
| 1206 | vector<unsigned>::const_iterator it_stats = annexBsizes.begin(); |
|---|
| 1207 | |
|---|
| 1208 | for (; it_au != au.end(); it_au++, it_stats++) |
|---|
| 1209 | { |
|---|
| 1210 | switch ((*it_au)->m_nalUnitType) |
|---|
| 1211 | { |
|---|
| 1212 | case NAL_UNIT_CODED_SLICE: |
|---|
| 1213 | #if H0566_TLA |
|---|
| 1214 | case NAL_UNIT_CODED_SLICE_IDV: |
|---|
| 1215 | case NAL_UNIT_CODED_SLICE_TLA: |
|---|
| 1216 | case NAL_UNIT_CODED_SLICE_CRA: |
|---|
| 1217 | #else |
|---|
| 1218 | case NAL_UNIT_CODED_SLICE_DATAPART_A: |
|---|
| 1219 | case NAL_UNIT_CODED_SLICE_DATAPART_B: |
|---|
| 1220 | case NAL_UNIT_CODED_SLICE_CDR: |
|---|
| 1221 | #endif |
|---|
| 1222 | case NAL_UNIT_CODED_SLICE_IDR: |
|---|
| 1223 | case NAL_UNIT_SPS: |
|---|
| 1224 | case NAL_UNIT_PPS: |
|---|
| 1225 | #if VIDYO_VPS_INTEGRATION |
|---|
| 1226 | case NAL_UNIT_VPS: |
|---|
| 1227 | #endif |
|---|
| 1228 | m_essentialBytes += *it_stats; |
|---|
| 1229 | break; |
|---|
| 1230 | default: |
|---|
| 1231 | break; |
|---|
| 1232 | } |
|---|
| 1233 | |
|---|
| 1234 | m_totalBytes += *it_stats; |
|---|
| 1235 | } |
|---|
| 1236 | } |
|---|
| 1237 | |
|---|
| 1238 | #if HHI_INTERVIEW_SKIP |
|---|
| 1239 | Void TAppEncTop::getUsedPelsMap( Int iViewIdx, Int iPoc, TComPicYuv* pcPicYuvUsedSplsMap ) |
|---|
| 1240 | { |
|---|
| 1241 | AOT( iViewIdx <= 0); |
|---|
| 1242 | AOT( iViewIdx >= m_iNumberOfViews ); |
|---|
| 1243 | AOF( m_cCameraData.getCurFrameId() == iPoc ); |
|---|
| 1244 | Int iViewSIdx = m_cCameraData.getBaseId2SortedId()[iViewIdx]; |
|---|
| 1245 | Int iFirstViewSIdx = m_cCameraData.getBaseId2SortedId()[0]; |
|---|
| 1246 | |
|---|
| 1247 | AOT( iViewSIdx == iFirstViewSIdx ); |
|---|
| 1248 | |
|---|
| 1249 | Bool bFirstIsLeft = (iFirstViewSIdx < iViewSIdx); |
|---|
| 1250 | |
|---|
| 1251 | m_cUsedPelsRenderer.setShiftLUTs( |
|---|
| 1252 | m_cCameraData.getBaseViewShiftLUTD()[0][iViewIdx], |
|---|
| 1253 | m_cCameraData.getBaseViewShiftLUTI()[0][iViewIdx], |
|---|
| 1254 | m_cCameraData.getBaseViewShiftLUTI()[0][iViewIdx], |
|---|
| 1255 | m_cCameraData.getBaseViewShiftLUTD()[0][iViewIdx], |
|---|
| 1256 | m_cCameraData.getBaseViewShiftLUTI()[0][iViewIdx], |
|---|
| 1257 | m_cCameraData.getBaseViewShiftLUTI()[0][iViewIdx], |
|---|
| 1258 | -1 |
|---|
| 1259 | ); |
|---|
| 1260 | |
|---|
| 1261 | TComPicYuv* pcPicYuvDepth = xGetPicYuvFromView(0, iPoc, true, true ); |
|---|
| 1262 | AOF( pcPicYuvDepth); |
|---|
| 1263 | |
|---|
| 1264 | m_cUsedPelsRenderer.getUsedSamplesMap( pcPicYuvDepth, pcPicYuvUsedSplsMap, bFirstIsLeft ); |
|---|
| 1265 | } |
|---|
| 1266 | #endif |
|---|
| 1267 | #if HHI_VSO |
|---|
| 1268 | #if HHI_VSO_SPEEDUP_A0033 |
|---|
| 1269 | Void TAppEncTop::setupRenModel( Int iPoc, Int iEncViewIdx, Int iEncContent, Int iHorOffset ) |
|---|
| 1270 | { |
|---|
| 1271 | #if FIX_VSO_SETUP |
|---|
| 1272 | m_cRendererModel.setupPart( iHorOffset, Min( g_uiMaxCUHeight, m_iSourceHeight - iHorOffset ) ); |
|---|
| 1273 | #else |
|---|
| 1274 | m_cRendererModel.setHorOffset( iHorOffset ); |
|---|
| 1275 | #endif |
|---|
| 1276 | #else |
|---|
| 1277 | Void TAppEncTop::setupRenModel( Int iPoc, Int iEncViewIdx, Int iEncContent ) |
|---|
| 1278 | { |
|---|
| 1279 | #endif |
|---|
| 1280 | Int iEncViewSIdx = m_cCameraData.getBaseId2SortedId()[ iEncViewIdx ]; |
|---|
| 1281 | |
|---|
| 1282 | // setup base views |
|---|
| 1283 | Int iNumOfBV = m_cRenModStrParser.getNumOfBaseViewsForView( iEncViewSIdx, iEncContent ); |
|---|
| 1284 | |
|---|
| 1285 | for (Int iCurView = 0; iCurView < iNumOfBV; iCurView++ ) |
|---|
| 1286 | { |
|---|
| 1287 | Int iBaseViewSIdx; |
|---|
| 1288 | Int iVideoDistMode; |
|---|
| 1289 | Int iDepthDistMode; |
|---|
| 1290 | |
|---|
| 1291 | m_cRenModStrParser.getBaseViewData( iEncViewSIdx, iEncContent, iCurView, iBaseViewSIdx, iVideoDistMode, iDepthDistMode ); |
|---|
| 1292 | |
|---|
| 1293 | AOT( iVideoDistMode < 0 || iVideoDistMode > 2 ); |
|---|
| 1294 | |
|---|
| 1295 | Int iBaseViewIdx = m_cCameraData.getBaseSortedId2Id()[ iBaseViewSIdx ]; |
|---|
| 1296 | |
|---|
| 1297 | TComPicYuv* pcPicYuvVideoRec = xGetPicYuvFromView( iBaseViewIdx, iPoc, false, true ); |
|---|
| 1298 | TComPicYuv* pcPicYuvDepthRec = xGetPicYuvFromView( iBaseViewIdx, iPoc, true , true ); |
|---|
| 1299 | TComPicYuv* pcPicYuvVideoOrg = xGetPicYuvFromView( iBaseViewIdx, iPoc, false, false ); |
|---|
| 1300 | TComPicYuv* pcPicYuvDepthOrg = xGetPicYuvFromView( iBaseViewIdx, iPoc, true , false ); |
|---|
| 1301 | |
|---|
| 1302 | TComPicYuv* pcPicYuvVideoRef = ( iVideoDistMode == 2 ) ? pcPicYuvVideoOrg : NULL; |
|---|
| 1303 | TComPicYuv* pcPicYuvDepthRef = ( iDepthDistMode == 2 ) ? pcPicYuvDepthOrg : NULL; |
|---|
| 1304 | |
|---|
| 1305 | TComPicYuv* pcPicYuvVideoTest = ( iVideoDistMode == 0 ) ? pcPicYuvVideoOrg : pcPicYuvVideoRec; |
|---|
| 1306 | TComPicYuv* pcPicYuvDepthTest = ( iDepthDistMode == 0 ) ? pcPicYuvDepthOrg : pcPicYuvDepthRec; |
|---|
| 1307 | |
|---|
| 1308 | AOT( (iVideoDistMode == 2) != (pcPicYuvVideoRef != NULL) ); |
|---|
| 1309 | AOT( (iDepthDistMode == 2) != (pcPicYuvDepthRef != NULL) ); |
|---|
| 1310 | AOT( pcPicYuvDepthTest == NULL ); |
|---|
| 1311 | AOT( pcPicYuvVideoTest == NULL ); |
|---|
| 1312 | |
|---|
| 1313 | m_cRendererModel.setBaseView( iBaseViewSIdx, pcPicYuvVideoTest, pcPicYuvDepthTest, pcPicYuvVideoRef, pcPicYuvDepthRef ); |
|---|
| 1314 | } |
|---|
| 1315 | |
|---|
| 1316 | m_cRendererModel.setErrorMode( iEncViewSIdx, iEncContent, 0 ); |
|---|
| 1317 | // setup virtual views |
|---|
| 1318 | Int iNumOfSV = m_cRenModStrParser.getNumOfModelsForView( iEncViewSIdx, iEncContent ); |
|---|
| 1319 | for (Int iCurView = 0; iCurView < iNumOfSV; iCurView++ ) |
|---|
| 1320 | { |
|---|
| 1321 | Int iOrgRefBaseViewSIdx; |
|---|
| 1322 | Int iLeftBaseViewSIdx; |
|---|
| 1323 | Int iRightBaseViewSIdx; |
|---|
| 1324 | Int iSynthViewRelNum; |
|---|
| 1325 | Int iModelNum; |
|---|
| 1326 | Int iBlendMode; |
|---|
| 1327 | m_cRenModStrParser.getSingleModelData(iEncViewSIdx, iEncContent, iCurView, iModelNum, iBlendMode,iLeftBaseViewSIdx, iRightBaseViewSIdx, iOrgRefBaseViewSIdx, iSynthViewRelNum ); |
|---|
| 1328 | |
|---|
| 1329 | Int iLeftBaseViewIdx = -1; |
|---|
| 1330 | Int iRightBaseViewIdx = -1; |
|---|
| 1331 | |
|---|
| 1332 | TComPicYuv* pcPicYuvOrgRef = NULL; |
|---|
| 1333 | Int** ppiShiftLUTLeft = NULL; |
|---|
| 1334 | Int** ppiShiftLUTRight = NULL; |
|---|
| 1335 | Int** ppiBaseShiftLUTLeft = NULL; |
|---|
| 1336 | Int** ppiBaseShiftLUTRight = NULL; |
|---|
| 1337 | |
|---|
| 1338 | |
|---|
| 1339 | Int iDistToLeft = -1; |
|---|
| 1340 | |
|---|
| 1341 | Int iSynthViewIdx = m_cCameraData.synthRelNum2Idx( iSynthViewRelNum ); |
|---|
| 1342 | |
|---|
| 1343 | if ( iLeftBaseViewSIdx != -1 ) |
|---|
| 1344 | { |
|---|
| 1345 | iLeftBaseViewIdx = m_cCameraData.getBaseSortedId2Id() [ iLeftBaseViewSIdx ]; |
|---|
| 1346 | ppiShiftLUTLeft = m_cCameraData.getSynthViewShiftLUTI()[ iLeftBaseViewIdx ][ iSynthViewIdx ]; |
|---|
| 1347 | } |
|---|
| 1348 | |
|---|
| 1349 | if ( iRightBaseViewSIdx != -1 ) |
|---|
| 1350 | { |
|---|
| 1351 | iRightBaseViewIdx = m_cCameraData.getBaseSortedId2Id() [iRightBaseViewSIdx ]; |
|---|
| 1352 | ppiShiftLUTRight = m_cCameraData.getSynthViewShiftLUTI()[ iRightBaseViewIdx ][ iSynthViewIdx ]; |
|---|
| 1353 | } |
|---|
| 1354 | |
|---|
| 1355 | if ( iRightBaseViewSIdx != -1 && iLeftBaseViewSIdx != -1 ) |
|---|
| 1356 | { |
|---|
| 1357 | iDistToLeft = m_cCameraData.getRelDistLeft( iSynthViewIdx , iLeftBaseViewIdx, iRightBaseViewIdx); |
|---|
| 1358 | ppiBaseShiftLUTLeft = m_cCameraData.getBaseViewShiftLUTI() [ iLeftBaseViewIdx ][ iRightBaseViewIdx ]; |
|---|
| 1359 | ppiBaseShiftLUTRight = m_cCameraData.getBaseViewShiftLUTI() [ iRightBaseViewIdx ][ iLeftBaseViewIdx ]; |
|---|
| 1360 | |
|---|
| 1361 | } |
|---|
| 1362 | |
|---|
| 1363 | if ( iOrgRefBaseViewSIdx != -1 ) |
|---|
| 1364 | { |
|---|
| 1365 | pcPicYuvOrgRef = xGetPicYuvFromView( m_cCameraData.getBaseSortedId2Id()[ iOrgRefBaseViewSIdx ] , iPoc, false, false ); |
|---|
| 1366 | AOF ( pcPicYuvOrgRef ); |
|---|
| 1367 | } |
|---|
| 1368 | |
|---|
| 1369 | m_cRendererModel.setSingleModel( iModelNum, ppiShiftLUTLeft, ppiBaseShiftLUTLeft, ppiShiftLUTRight, ppiBaseShiftLUTRight, iDistToLeft, pcPicYuvOrgRef ); |
|---|
| 1370 | } |
|---|
| 1371 | } |
|---|
| 1372 | #endif |
|---|
| 1373 | |
|---|
| 1374 | |
|---|
| 1375 | |
|---|
| 1376 | /* |
|---|
| 1377 | void TAppEncTop::printRateSummary() |
|---|
| 1378 | { |
|---|
| 1379 | double time = (double) m_iFrameRcvd / m_iFrameRate; |
|---|
| 1380 | printf("Bytes written to file: %u (%.3f kbps)\n", m_totalBytes, 0.008 * m_totalBytes / time); |
|---|
| 1381 | #if VERBOSE_RATE |
|---|
| 1382 | printf("Bytes for SPS/PPS/Slice (Incl. Annex B): %u (%.3f kbps)\n", m_essentialBytes, 0.008 * m_essentialBytes / time); |
|---|
| 1383 | #endif |
|---|
| 1384 | } |
|---|
| 1385 | */ |
|---|
| 1386 | |
|---|
| 1387 | std::vector<TComPic*> TAppEncTop::getInterViewRefPics( Int viewId, Int poc, Bool isDepth, TComSPS* sps ) |
|---|
| 1388 | { |
|---|
| 1389 | std::vector<TComPic*> apcRefPics( sps->getNumberOfUsableInterViewRefs(), (TComPic*)NULL ); |
|---|
| 1390 | for( Int k = 0; k < sps->getNumberOfUsableInterViewRefs(); k++ ) |
|---|
| 1391 | { |
|---|
| 1392 | TComPic* pcRefPic = xGetPicFromView( sps->getUsableInterViewRef( k ) + viewId, poc, isDepth ); |
|---|
| 1393 | assert( pcRefPic != NULL ); |
|---|
| 1394 | apcRefPics[k] = pcRefPic; |
|---|
| 1395 | } |
|---|
| 1396 | return apcRefPics; |
|---|
| 1397 | } |
|---|
| 1398 | |
|---|
| 1399 | TComPic* TAppEncTop::xGetPicFromView( Int viewIdx, Int poc, Bool isDepth ) |
|---|
| 1400 | { |
|---|
| 1401 | assert( ( viewIdx >= 0 ) && ( viewIdx < m_iNumberOfViews ) ); |
|---|
| 1402 | |
|---|
| 1403 | TComList<TComPic*>* apcListPic = (isDepth ? m_acTEncDepthTopList[viewIdx] : m_acTEncTopList[viewIdx])->getListPic() ; |
|---|
| 1404 | |
|---|
| 1405 | TComPic* pcPic = NULL; |
|---|
| 1406 | for(TComList<TComPic*>::iterator it=apcListPic->begin(); it!=apcListPic->end(); it++) |
|---|
| 1407 | { |
|---|
| 1408 | if( (*it)->getPOC() == poc ) |
|---|
| 1409 | { |
|---|
| 1410 | pcPic = *it ; |
|---|
| 1411 | break ; |
|---|
| 1412 | } |
|---|
| 1413 | } |
|---|
| 1414 | |
|---|
| 1415 | return pcPic; |
|---|
| 1416 | }; |
|---|
| 1417 | |
|---|
| 1418 | //! \} |
|---|