source: 3DVCSoftware/branches/HTM-12.0-dev0/source/Lib/TLibDecoder/TDecTop.cpp @ 1417

Last change on this file since 1417 was 1053, checked in by qualcomm, 10 years ago

Implementation of adoptions in:
G0131, G0031, H0042, I0044, I0045

submitted by Hendry (fhendry@…)

  • Property svn:eol-style set to native
File size: 56.9 KB
Line 
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-2014, 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     TDecTop.cpp
35    \brief    decoder class
36*/
37
38#include "NALread.h"
39#include "TDecTop.h"
40
41#if H_MV
42ParameterSetManagerDecoder TDecTop::m_parameterSetManagerDecoder;
43#endif
44//! \ingroup TLibDecoder
45//! \{
46
47#if H_3D
48CamParsCollector::CamParsCollector()
49: m_bInitialized( false )
50{
51  m_aaiCodedOffset         = new Int* [ MAX_NUM_LAYERS ];
52  m_aaiCodedScale          = new Int* [ MAX_NUM_LAYERS ];
53  for( UInt uiId = 0; uiId < MAX_NUM_LAYERS; uiId++ )
54  {
55    m_aaiCodedOffset      [ uiId ] = new Int [ MAX_NUM_LAYERS ];
56    m_aaiCodedScale       [ uiId ] = new Int [ MAX_NUM_LAYERS ];
57  }
58
59  xCreateLUTs( (UInt)MAX_NUM_LAYERS, (UInt)MAX_NUM_LAYERS, m_adBaseViewShiftLUT, m_aiBaseViewShiftLUT );
60  m_iLog2Precision   = LOG2_DISP_PREC_LUT;
61  m_uiBitDepthForLUT = 8; // fixed
62  m_receivedIdc = NULL; 
63  m_vps         = NULL; 
64}
65
66CamParsCollector::~CamParsCollector()
67{
68  for( UInt uiId = 0; uiId < MAX_NUM_LAYERS; uiId++ )
69  {
70    delete [] m_aaiCodedOffset      [ uiId ];
71    delete [] m_aaiCodedScale       [ uiId ];
72  }
73  delete [] m_aaiCodedOffset;
74  delete [] m_aaiCodedScale;
75
76  xDeleteArray( m_adBaseViewShiftLUT, MAX_NUM_LAYERS, MAX_NUM_LAYERS, 2 );
77  xDeleteArray( m_aiBaseViewShiftLUT, MAX_NUM_LAYERS, MAX_NUM_LAYERS, 2 );
78  xDeleteArray( m_receivedIdc, m_uiMaxViewIndex + 1 );
79}
80
81
82Void
83CamParsCollector::init( FILE* pCodedScaleOffsetFile, TComVPS* vps)
84{
85  assert( !isInitialized() ); // Only one initialization currently supported
86  m_bInitialized            = true;
87  m_vps                     = vps; 
88  m_bCamParsVaryOverTime    = false; 
89  m_pCodedScaleOffsetFile   = pCodedScaleOffsetFile;
90  m_lastPoc                 = -1;   
91  m_firstReceivedPoc        = -2; 
92
93  m_uiMaxViewIndex            = -1; 
94  for (Int i = 0; i <= vps->getMaxLayersMinus1(); i++)
95  {
96    Int curViewIdx = m_vps->getViewIndex( m_vps->getLayerIdInNuh( i )); 
97    m_bCamParsVaryOverTime = m_bCamParsVaryOverTime || vps->hasCamParInSliceHeader( curViewIdx );
98    m_uiMaxViewIndex = std::max( m_uiMaxViewIndex, curViewIdx  ) ; 
99  }
100
101  assert( m_receivedIdc == NULL ); 
102  m_receivedIdc = new Int*[ m_uiMaxViewIndex + 1]; 
103  for (Int i = 0; i <= m_uiMaxViewIndex; i++)
104  {
105    m_receivedIdc[i] = new Int[ m_uiMaxViewIndex + 1 ]; 
106  }
107
108  xResetReceivedIdc( true ); 
109
110  for (Int viewIndex = 0; viewIndex <= m_uiMaxViewIndex ; viewIndex++ )
111  {
112    if (m_vps->getCamParPresent( viewIndex ) )
113    {   
114      if( !m_vps->hasCamParInSliceHeader( viewIndex ) ) 
115      {
116        for (Int baseViewIndex = 0; baseViewIndex < viewIndex ; baseViewIndex++ )
117        { 
118          m_receivedIdc   [ baseViewIndex ][ viewIndex ] = -1; 
119          m_aaiCodedScale [ baseViewIndex ][ viewIndex ] = m_vps->getCodedScale    (viewIndex) [ baseViewIndex ];
120          m_aaiCodedOffset[ baseViewIndex ][ viewIndex ] = m_vps->getCodedOffset   (viewIndex) [ baseViewIndex ];
121
122          m_receivedIdc   [ viewIndex ][ baseViewIndex ] = -1; 
123          m_aaiCodedScale [ viewIndex ][ baseViewIndex ] = m_vps->getInvCodedScale (viewIndex) [ baseViewIndex ];
124          m_aaiCodedOffset[ viewIndex ][ baseViewIndex ] = m_vps->getInvCodedOffset(viewIndex) [ baseViewIndex ];
125          xInitLUTs( baseViewIndex, viewIndex, m_aaiCodedScale[ baseViewIndex ][ viewIndex ], m_aaiCodedOffset[ baseViewIndex ][ viewIndex ], m_adBaseViewShiftLUT, m_aiBaseViewShiftLUT );
126          xInitLUTs( viewIndex, baseViewIndex, m_aaiCodedScale[ viewIndex ][ baseViewIndex ], m_aaiCodedOffset[ viewIndex ][ baseViewIndex ], m_adBaseViewShiftLUT, m_aiBaseViewShiftLUT );
127        }
128      }
129    }
130  }
131}
132
133Void
134CamParsCollector::xResetReceivedIdc( Bool overWriteFlag )
135{
136  for (Int i = 0; i <= m_uiMaxViewIndex; i++)
137  { 
138    for (Int j = 0; j <= m_uiMaxViewIndex; j++)
139    {
140      if ( overWriteFlag ||  ( m_receivedIdc[i][j] != -1 ) )
141      {
142        m_receivedIdc[i][j] = 0; 
143      }     
144    }
145  }
146}
147
148
149Void
150CamParsCollector::xCreateLUTs( UInt uiNumberSourceViews, UInt uiNumberTargetViews, Double****& radLUT, Int****& raiLUT)
151{
152
153  uiNumberSourceViews = std::max( (UInt) 1, uiNumberSourceViews );
154  uiNumberTargetViews = std::max( (UInt) 1, uiNumberTargetViews );
155
156  radLUT         = new Double***[ uiNumberSourceViews ];
157  raiLUT         = new Int   ***[ uiNumberSourceViews ];
158
159  for( UInt uiSourceView = 0; uiSourceView < uiNumberSourceViews; uiSourceView++ )
160  {
161    radLUT        [ uiSourceView ] = new Double**[ uiNumberTargetViews ];
162    raiLUT        [ uiSourceView ] = new Int   **[ uiNumberTargetViews ];
163
164    for( UInt uiTargetView = 0; uiTargetView < uiNumberTargetViews; uiTargetView++ )
165    {
166      radLUT        [ uiSourceView ][ uiTargetView ]      = new Double*[ 2 ];
167      radLUT        [ uiSourceView ][ uiTargetView ][ 0 ] = new Double [ 257 ];
168      radLUT        [ uiSourceView ][ uiTargetView ][ 1 ] = new Double [ 257 ];
169
170      raiLUT        [ uiSourceView ][ uiTargetView ]      = new Int*   [ 2 ];
171      raiLUT        [ uiSourceView ][ uiTargetView ][ 0 ] = new Int    [ 257 ];
172      raiLUT        [ uiSourceView ][ uiTargetView ][ 1 ] = new Int    [ 257 ];
173    }
174  }
175}
176
177Void
178  CamParsCollector::xInitLUTs( UInt uiSourceView, UInt uiTargetView, Int iScale, Int iOffset, Double****& radLUT, Int****& raiLUT)
179{
180  Int     iLog2DivLuma   = m_uiBitDepthForLUT + m_vps->getCamParPrecision() + 1 - m_iLog2Precision;   AOF( iLog2DivLuma > 0 );
181  Int     iLog2DivChroma = iLog2DivLuma + 1;
182
183  iOffset <<= m_uiBitDepthForLUT;
184
185  Double dScale  = (Double) iScale  / (( Double ) ( 1 << iLog2DivLuma ));
186  Double dOffset = (Double) iOffset / (( Double ) ( 1 << iLog2DivLuma ));
187
188  // offsets including rounding offsets
189  Int64 iOffsetLuma   = iOffset + ( ( 1 << iLog2DivLuma   ) >> 1 );
190  Int64 iOffsetChroma = iOffset + ( ( 1 << iLog2DivChroma ) >> 1 );
191
192
193  for( UInt uiDepthValue = 0; uiDepthValue < 256; uiDepthValue++ )
194  {
195
196    // real-valued look-up tables
197    Double  dShiftLuma      = ( (Double)uiDepthValue * dScale + dOffset ) * Double( 1 << m_iLog2Precision );
198    Double  dShiftChroma    = dShiftLuma / 2;
199    radLUT[ uiSourceView ][ uiTargetView ][ 0 ][ uiDepthValue ] = dShiftLuma;
200    radLUT[ uiSourceView ][ uiTargetView ][ 1 ][ uiDepthValue ] = dShiftChroma;
201
202    // integer-valued look-up tables
203    Int64   iTempScale      = (Int64)uiDepthValue * iScale;
204    Int64   iShiftLuma      = ( iTempScale + iOffsetLuma   ) >> iLog2DivLuma;
205    Int64   iShiftChroma    = ( iTempScale + iOffsetChroma ) >> iLog2DivChroma;
206    raiLUT[ uiSourceView ][ uiTargetView ][ 0 ][ uiDepthValue ] = (Int)iShiftLuma;
207    raiLUT[ uiSourceView ][ uiTargetView ][ 1 ][ uiDepthValue ] = (Int)iShiftChroma;
208  }
209
210  radLUT[ uiSourceView ][ uiTargetView ][ 0 ][ 256 ] = radLUT[ uiSourceView ][ uiTargetView ][ 0 ][ 255 ];
211  radLUT[ uiSourceView ][ uiTargetView ][ 1 ][ 256 ] = radLUT[ uiSourceView ][ uiTargetView ][ 1 ][ 255 ];
212  raiLUT[ uiSourceView ][ uiTargetView ][ 0 ][ 256 ] = raiLUT[ uiSourceView ][ uiTargetView ][ 0 ][ 255 ];
213  raiLUT[ uiSourceView ][ uiTargetView ][ 1 ][ 256 ] = raiLUT[ uiSourceView ][ uiTargetView ][ 1 ][ 255 ];
214}
215
216Void
217CamParsCollector::uninit()
218{
219  m_bInitialized = false;
220}
221
222Void
223CamParsCollector::setSlice( TComSlice* pcSlice )
224{
225  if( pcSlice == 0 )
226  {
227    xOutput( m_lastPoc );
228    return;
229  }
230
231  if ( pcSlice->getIsDepth())
232  {
233    return;
234  }
235
236  Int curPoc = pcSlice->getPOC();
237  if( m_firstReceivedPoc == -2 )
238  {
239    m_firstReceivedPoc = curPoc; 
240  }
241
242  Bool newPocFlag = ( m_lastPoc != curPoc ); 
243
244  if ( newPocFlag )
245  {   
246    if( m_lastPoc != -1 )
247    {
248      xOutput( m_lastPoc );
249    }
250
251    xResetReceivedIdc( false ); 
252    m_lastPoc = pcSlice->getPOC();
253  }
254
255  UInt uiViewIndex          = pcSlice->getViewIndex(); 
256  if( m_vps->getCamParPresent( uiViewIndex ) )
257  {   
258    if( m_vps->hasCamParInSliceHeader( uiViewIndex ) ) // check consistency of slice parameters here
259    {   
260      for( UInt uiBaseViewIndex = 0; uiBaseViewIndex < uiViewIndex; uiBaseViewIndex++ )
261      {       
262        if ( m_receivedIdc[ uiViewIndex ][ uiBaseViewIndex ] != 0 )
263        {     
264          AOF( m_aaiCodedScale [ uiViewIndex ][ uiBaseViewIndex ] == pcSlice->getInvCodedScale () [ uiBaseViewIndex ] );
265          AOF( m_aaiCodedOffset[ uiViewIndex ][ uiBaseViewIndex ] == pcSlice->getInvCodedOffset() [ uiBaseViewIndex ] );
266        }
267        else
268        {         
269          m_receivedIdc   [ uiViewIndex ][ uiBaseViewIndex ]  = 1; 
270          m_aaiCodedScale [ uiViewIndex ][ uiBaseViewIndex ]  = pcSlice->getInvCodedScale () [ uiBaseViewIndex ];
271          m_aaiCodedOffset[ uiViewIndex ][ uiBaseViewIndex ]  = pcSlice->getInvCodedOffset() [ uiBaseViewIndex ];
272          xInitLUTs( uiViewIndex, uiBaseViewIndex, m_aaiCodedScale[ uiViewIndex ][ uiBaseViewIndex ], m_aaiCodedOffset[ uiViewIndex ][ uiBaseViewIndex ], m_adBaseViewShiftLUT, m_aiBaseViewShiftLUT);
273        }
274        if ( m_receivedIdc[ uiBaseViewIndex ][ uiViewIndex ] != 0 )
275        {     
276          AOF( m_aaiCodedScale [ uiBaseViewIndex ][ uiViewIndex ] == pcSlice->getCodedScale    () [ uiBaseViewIndex ] );
277          AOF( m_aaiCodedOffset[ uiBaseViewIndex ][ uiViewIndex ] == pcSlice->getCodedOffset   () [ uiBaseViewIndex ] );
278        }
279        else
280        {       
281          m_receivedIdc   [ uiBaseViewIndex ][ uiViewIndex ]  = 1; 
282          m_aaiCodedScale [ uiBaseViewIndex ][ uiViewIndex ]  = pcSlice->getCodedScale    () [ uiBaseViewIndex ];
283          m_aaiCodedOffset[ uiBaseViewIndex ][ uiViewIndex ]  = pcSlice->getCodedOffset   () [ uiBaseViewIndex ];
284          xInitLUTs( uiBaseViewIndex, uiViewIndex, m_aaiCodedScale[ uiBaseViewIndex ][ uiViewIndex ], m_aaiCodedOffset[ uiBaseViewIndex ][ uiViewIndex ], m_adBaseViewShiftLUT, m_aiBaseViewShiftLUT);
285        }
286      }
287    }
288  }
289}
290
291
292#if H_3D_IV_MERGE
293Void
294CamParsCollector::copyCamParamForSlice( TComSlice* pcSlice )
295{
296  if( m_bCamParsVaryOverTime )
297  {
298    pcSlice->setCamparaSlice( m_aaiCodedScale, m_aaiCodedOffset );
299  }
300}
301#endif
302
303
304Void
305CamParsCollector::xOutput( Int iPOC )
306{
307  if( m_pCodedScaleOffsetFile )
308  {
309    if( iPOC == m_firstReceivedPoc )
310    {
311      fprintf( m_pCodedScaleOffsetFile, "#  ViewIndex       ViewId\n" );
312      fprintf( m_pCodedScaleOffsetFile, "#----------- ------------\n" );
313      for( UInt uiViewIndex = 0; uiViewIndex <= m_uiMaxViewIndex; uiViewIndex++ )
314      {
315        fprintf( m_pCodedScaleOffsetFile, "%12d %12d\n", uiViewIndex, m_vps->getViewIdVal( uiViewIndex ) );
316      }
317      fprintf( m_pCodedScaleOffsetFile, "\n\n");
318      fprintf( m_pCodedScaleOffsetFile, "# StartFrame     EndFrame   TargetView     BaseView   CodedScale  CodedOffset    Precision\n" );
319      fprintf( m_pCodedScaleOffsetFile, "#----------- ------------ ------------ ------------ ------------ ------------ ------------\n" );
320    }
321    if( iPOC == m_firstReceivedPoc || m_bCamParsVaryOverTime  )
322    {
323      Int iS = iPOC;
324      Int iE = ( m_bCamParsVaryOverTime ? iPOC : ~( 1 << 31 ) );
325      for( UInt uiViewIndex = 0; uiViewIndex <= m_uiMaxViewIndex; uiViewIndex++ )
326      {
327        for( UInt uiBaseIndex = 0; uiBaseIndex <= m_uiMaxViewIndex; uiBaseIndex++ )
328        {
329          if( uiViewIndex != uiBaseIndex )
330          {
331            if ( m_receivedIdc[uiBaseIndex][uiViewIndex] != 0 )
332            {           
333              fprintf( m_pCodedScaleOffsetFile, "%12d %12d %12d %12d %12d %12d %12d\n",
334                iS, iE, uiViewIndex, uiBaseIndex, m_aaiCodedScale[ uiBaseIndex ][ uiViewIndex ], m_aaiCodedOffset[ uiBaseIndex ][ uiViewIndex ], m_vps->getCamParPrecision() );
335            }           
336          }
337        }
338      }
339    }
340  }
341}
342#endif
343TDecTop::TDecTop()
344{
345  m_pcPic = 0;
346  m_iMaxRefPicNum = 0;
347#if ENC_DEC_TRACE
348#if H_MV
349  if ( g_hTrace == NULL )
350  {
351#endif
352  g_hTrace = fopen( "TraceDec.txt", "wb" );
353  g_bJustDoIt = g_bEncDecTraceDisable;
354  g_nSymbolCounter = 0;
355#if H_MV
356  }
357#endif
358#endif
359  m_associatedIRAPType = NAL_UNIT_INVALID;
360  m_pocCRA = 0;
361  m_pocRandomAccess = MAX_INT; 
362  m_prevPOC                = MAX_INT;
363  m_bFirstSliceInPicture    = true;
364  m_bFirstSliceInSequence   = true;
365  m_prevSliceSkipped = false;
366  m_skippedPOC = 0;
367#if SETTING_NO_OUT_PIC_PRIOR
368  m_bFirstSliceInBitstream  = true;
369  m_lastPOCNoOutputPriorPics = -1;
370  m_craNoRaslOutputFlag = false;
371  m_isNoOutputPriorPics = false;
372#endif
373#if H_MV
374  m_isLastNALWasEos = false;
375  m_layerId = 0;
376  m_viewId = 0;
377#if H_3D
378  m_viewIndex = 0; 
379  m_isDepth = false;
380  m_pcCamParsCollector = 0;
381#endif
382#if H_MV
383  m_targetOptLayerSetIdx = -1; 
384#endif
385#endif
386}
387
388TDecTop::~TDecTop()
389{
390#if ENC_DEC_TRACE
391  fclose( g_hTrace );
392#endif
393}
394
395Void TDecTop::create()
396{
397  m_cGopDecoder.create();
398  m_apcSlicePilot = new TComSlice;
399  m_uiSliceIdx = 0;
400}
401
402Void TDecTop::destroy()
403{
404  m_cGopDecoder.destroy();
405 
406  delete m_apcSlicePilot;
407  m_apcSlicePilot = NULL;
408 
409  m_cSliceDecoder.destroy();
410}
411
412Void TDecTop::init()
413{
414  // initialize ROM
415#if !H_MV
416  initROM();
417#endif
418  m_cGopDecoder.init( &m_cEntropyDecoder, &m_cSbacDecoder, &m_cBinCABAC, &m_cCavlcDecoder, &m_cSliceDecoder, &m_cLoopFilter, &m_cSAO );
419  m_cSliceDecoder.init( &m_cEntropyDecoder, &m_cCuDecoder );
420  m_cEntropyDecoder.init(&m_cPrediction);
421}
422
423Void TDecTop::deletePicBuffer ( )
424{
425  TComList<TComPic*>::iterator  iterPic   = m_cListPic.begin();
426  Int iSize = Int( m_cListPic.size() );
427 
428  for (Int i = 0; i < iSize; i++ )
429  {
430    TComPic* pcPic = *(iterPic++);
431#if H_MV
432    if( pcPic )
433    {
434#endif
435    pcPic->destroy();
436   
437    delete pcPic;
438    pcPic = NULL;
439#if H_MV
440    }
441#endif
442  }
443 
444  m_cSAO.destroy();
445 
446  m_cLoopFilter.        destroy();
447 
448#if !H_MV
449  // destroy ROM
450  destroyROM();
451#endif
452}
453
454Void TDecTop::xGetNewPicBuffer ( TComSlice* pcSlice, TComPic*& rpcPic )
455{
456  Int  numReorderPics[MAX_TLAYER];
457  Window &conformanceWindow = pcSlice->getSPS()->getConformanceWindow();
458  Window defaultDisplayWindow = pcSlice->getSPS()->getVuiParametersPresentFlag() ? pcSlice->getSPS()->getVuiParameters()->getDefaultDisplayWindow() : Window();
459
460#if H_MV
461    assert( conformanceWindow   .getScaledFlag() ); 
462    assert( defaultDisplayWindow.getScaledFlag() );
463#endif
464  for( Int temporalLayer=0; temporalLayer < MAX_TLAYER; temporalLayer++) 
465  {
466#if H_MV
467    numReorderPics[temporalLayer] = ( getLayerId() == 0 ) ? pcSlice->getSPS()->getNumReorderPics(temporalLayer) : pcSlice->getVPS()->getNumReorderPics(temporalLayer);
468#else
469    numReorderPics[temporalLayer] = pcSlice->getSPS()->getNumReorderPics(temporalLayer);
470#endif
471  }
472#if H_MV
473  if ( getLayerId() == 0 )
474  { 
475    m_iMaxRefPicNum = pcSlice->getSPS()->getMaxDecPicBuffering(pcSlice->getTLayer());
476  }
477  else
478  {
479    m_iMaxRefPicNum = pcSlice->getVPS()->getMaxDecPicBuffering(pcSlice->getTLayer());
480#if H_MV_HLS7_GEN
481    TComVPS* vps         = pcSlice->getVPS();
482    TComDpbSize* dpbSize = vps->getDpbSize(); 
483    Int lsIdx            = vps->olsIdxToLsIdx( getTargetOutputLayerSetIdx()); // Is this correct, seems to be missing in spec?
484    Int layerIdx         = vps->getIdxInLayerSet     ( lsIdx, getLayerId() ); 
485    Int subDpbIdx        = dpbSize->getSubDpbAssigned( lsIdx, layerIdx ); 
486    m_iMaxRefPicNum      = dpbSize->getMaxVpsDecPicBufferingMinus1(getTargetOutputLayerSetIdx(), subDpbIdx , vps->getSubLayersVpsMaxMinus1( vps->getLayerIdInVps( getLayerId() ) ) + 1 ) + 1 ; 
487#endif   
488  }
489#else
490  m_iMaxRefPicNum = pcSlice->getSPS()->getMaxDecPicBuffering(pcSlice->getTLayer());     // m_uiMaxDecPicBuffering has the space for the picture currently being decoded
491#endif
492  if (m_cListPic.size() < (UInt)m_iMaxRefPicNum)
493  {
494    rpcPic = new TComPic();
495   
496    rpcPic->create ( pcSlice->getSPS()->getPicWidthInLumaSamples(), pcSlice->getSPS()->getPicHeightInLumaSamples(), g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth, 
497                     conformanceWindow, defaultDisplayWindow, numReorderPics, true);
498    m_cListPic.pushBack( rpcPic );
499   
500    return;
501  }
502 
503  Bool bBufferIsAvailable = false;
504  TComList<TComPic*>::iterator  iterPic   = m_cListPic.begin();
505  while (iterPic != m_cListPic.end())
506  {
507    rpcPic = *(iterPic++);
508    if ( rpcPic->getReconMark() == false && rpcPic->getOutputMark() == false)
509    {
510      rpcPic->setOutputMark(false);
511#if H_MV
512      rpcPic->setPicOutputFlag(false); 
513#endif
514      bBufferIsAvailable = true;
515      break;
516    }
517
518    if ( rpcPic->getSlice( 0 )->isReferenced() == false  && rpcPic->getOutputMark() == false)
519    {
520      rpcPic->setOutputMark(false);
521#if H_MV
522      rpcPic->setPicOutputFlag(false); 
523#endif
524      rpcPic->setReconMark( false );
525      rpcPic->getPicYuvRec()->setBorderExtension( false );
526      bBufferIsAvailable = true;
527      break;
528    }
529  }
530 
531  if ( !bBufferIsAvailable )
532  {
533    //There is no room for this picture, either because of faulty encoder or dropped NAL. Extend the buffer.
534    m_iMaxRefPicNum++;
535    rpcPic = new TComPic();
536    m_cListPic.pushBack( rpcPic );
537  }
538  rpcPic->destroy();
539  rpcPic->create ( pcSlice->getSPS()->getPicWidthInLumaSamples(), pcSlice->getSPS()->getPicHeightInLumaSamples(), g_uiMaxCUWidth, g_uiMaxCUHeight, g_uiMaxCUDepth,
540                   conformanceWindow, defaultDisplayWindow, numReorderPics, true);
541}
542
543#if H_MV
544Void TDecTop::endPicDecoding(Int& poc, TComList<TComPic*>*& rpcListPic, std::vector<Int>& targetDecLayerIdSet )
545#else
546Void TDecTop::executeLoopFilters(Int& poc, TComList<TComPic*>*& rpcListPic)
547#endif
548{
549  if (!m_pcPic)
550  {
551    /* nothing to deblock */
552    return;
553  }
554 
555  TComPic*&   pcPic         = m_pcPic;
556
557  // Execute Deblock + Cleanup
558
559  m_cGopDecoder.filterPicture(pcPic);
560
561  TComSlice::sortPicList( m_cListPic ); // sorting for application output
562  poc                 = pcPic->getSlice(m_uiSliceIdx-1)->getPOC();
563  rpcListPic          = &m_cListPic; 
564  m_cCuDecoder.destroy();       
565#if H_MV
566  TComSlice::markIvRefPicsAsShortTerm( m_refPicSetInterLayer0, m_refPicSetInterLayer1 ); 
567  TComSlice::markCurrPic( pcPic ); 
568#endif
569  m_bFirstSliceInPicture  = true;
570
571  return;
572}
573
574#if SETTING_NO_OUT_PIC_PRIOR
575Void TDecTop::checkNoOutputPriorPics (TComList<TComPic*>*& rpcListPic)
576{
577  if (!rpcListPic || !m_isNoOutputPriorPics) return;
578
579  TComList<TComPic*>::iterator  iterPic   = rpcListPic->begin();
580
581  while (iterPic != rpcListPic->end())
582  {
583    TComPic*& pcPicTmp = *(iterPic++);
584    if (m_lastPOCNoOutputPriorPics != pcPicTmp->getPOC())
585    {
586      pcPicTmp->setOutputMark(false);
587#if H_MV
588      pcPicTmp->setPicOutputFlag(false); 
589#endif
590    }
591  }
592}
593#endif
594
595Void TDecTop::xCreateLostPicture(Int iLostPoc) 
596{
597  printf("\ninserting lost poc : %d\n",iLostPoc);
598  TComSlice cFillSlice;
599  cFillSlice.setSPS( m_parameterSetManagerDecoder.getFirstSPS() );
600  cFillSlice.setPPS( m_parameterSetManagerDecoder.getFirstPPS() );
601  cFillSlice.initSlice();
602  TComPic *cFillPic;
603  xGetNewPicBuffer(&cFillSlice,cFillPic);
604  cFillPic->getSlice(0)->setSPS( m_parameterSetManagerDecoder.getFirstSPS() );
605  cFillPic->getSlice(0)->setPPS( m_parameterSetManagerDecoder.getFirstPPS() );
606  cFillPic->getSlice(0)->initSlice();
607 
608  TComList<TComPic*>::iterator iterPic = m_cListPic.begin();
609  Int closestPoc = 1000000;
610  while ( iterPic != m_cListPic.end())
611  {
612    TComPic * rpcPic = *(iterPic++);
613    if(abs(rpcPic->getPicSym()->getSlice(0)->getPOC() -iLostPoc)<closestPoc&&abs(rpcPic->getPicSym()->getSlice(0)->getPOC() -iLostPoc)!=0&&rpcPic->getPicSym()->getSlice(0)->getPOC()!=m_apcSlicePilot->getPOC())
614    {
615      closestPoc=abs(rpcPic->getPicSym()->getSlice(0)->getPOC() -iLostPoc);
616    }
617  }
618  iterPic = m_cListPic.begin();
619  while ( iterPic != m_cListPic.end())
620  {
621    TComPic *rpcPic = *(iterPic++);
622    if(abs(rpcPic->getPicSym()->getSlice(0)->getPOC() -iLostPoc)==closestPoc&&rpcPic->getPicSym()->getSlice(0)->getPOC()!=m_apcSlicePilot->getPOC())
623    {
624      printf("copying picture %d to %d (%d)\n",rpcPic->getPicSym()->getSlice(0)->getPOC() ,iLostPoc,m_apcSlicePilot->getPOC());
625      rpcPic->getPicYuvRec()->copyToPic(cFillPic->getPicYuvRec());
626      break;
627    }
628  }
629  cFillPic->setCurrSliceIdx(0);
630  for(Int i=0; i<cFillPic->getNumCUsInFrame(); i++) 
631  {
632    cFillPic->getCU(i)->initCU(cFillPic,i);
633  }
634  cFillPic->getSlice(0)->setReferenced(true);
635  cFillPic->getSlice(0)->setPOC(iLostPoc);
636  cFillPic->setReconMark(true);
637  cFillPic->setOutputMark(true);
638  if(m_pocRandomAccess == MAX_INT)
639  {
640    m_pocRandomAccess = iLostPoc;
641  }
642}
643
644
645Void TDecTop::xActivateParameterSets()
646{
647  m_parameterSetManagerDecoder.applyPrefetchedPS();
648 
649  TComPPS *pps = m_parameterSetManagerDecoder.getPPS(m_apcSlicePilot->getPPSId());
650  assert (pps != 0);
651
652  TComSPS *sps = m_parameterSetManagerDecoder.getSPS(pps->getSPSId());
653  assert (sps != 0);
654
655#if H_MV
656  TComVPS* vps = m_parameterSetManagerDecoder.getVPS(sps->getVPSId());
657  assert (vps != 0); 
658  if (!m_parameterSetManagerDecoder.activatePPS(m_apcSlicePilot->getPPSId(),m_apcSlicePilot->isIRAP(), m_layerId ) )
659#else
660  if (false == m_parameterSetManagerDecoder.activatePPS(m_apcSlicePilot->getPPSId(),m_apcSlicePilot->isIRAP()))
661#endif
662  {
663    printf ("Parameter set activation failed!");
664    assert (0);
665  }
666
667#if H_MV
668  sps->inferSpsMaxDecPicBufferingMinus1( vps, m_targetOptLayerSetIdx, getLayerId(), false ); 
669  vps->inferDbpSizeLayerSetZero( sps, false ); 
670  // When the value of vps_num_rep_formats_minus1 in the active VPS is equal to 0
671  if ( vps->getVpsNumRepFormatsMinus1() == 0 )
672  {
673    //, it is a requirement of bitstream conformance that the value of update_rep_format_flag shall be equal to 0.
674    assert( sps->getUpdateRepFormatFlag() == false ); 
675  }
676  sps->checkRpsMaxNumPics( vps, getLayerId() ); 
677  if( m_layerId > 0 )
678  {
679    sps->setTemporalIdNestingFlag( (sps->getMaxTLayers() > 1) ? vps->getTemporalNestingFlag() : true );
680  }
681#endif
682
683  if( pps->getDependentSliceSegmentsEnabledFlag() )
684  {
685    Int NumCtx = pps->getEntropyCodingSyncEnabledFlag()?2:1;
686
687    if (m_cSliceDecoder.getCtxMemSize() != NumCtx)
688    {
689      m_cSliceDecoder.initCtxMem(NumCtx);
690      for ( UInt st = 0; st < NumCtx; st++ )
691      {
692        TDecSbac* ctx = NULL;
693        ctx = new TDecSbac;
694        ctx->init( &m_cBinCABAC );
695        m_cSliceDecoder.setCtxMem( ctx, st );
696      }
697    }
698  }
699
700  m_apcSlicePilot->setPPS(pps);
701  m_apcSlicePilot->setSPS(sps);
702#if H_MV
703  m_apcSlicePilot->setVPS(vps); 
704  // The nuh_layer_id value of the NAL unit containing the PPS that is activated for a layer layerA with nuh_layer_id equal to nuhLayerIdA shall be equal to 0, or nuhLayerIdA, or the nuh_layer_id of a direct or indirect reference layer of layerA.
705  assert( pps->getLayerId() == m_layerId || pps->getLayerId( ) == 0 || vps->getInDirectDependencyFlag( m_layerId, pps->getLayerId() ) );   
706  // The nuh_layer_id value of the NAL unit containing the SPS that is activated for a layer layerA with nuh_layer_id equal to nuhLayerIdA shall be equal to 0, or nuhLayerIdA, or the nuh_layer_id of a direct or indirect reference layer of layerA.
707  assert( sps->getLayerId() == m_layerId || sps->getLayerId( ) == 0 || vps->getInDirectDependencyFlag( m_layerId, sps->getLayerId() ) );
708  sps->inferRepFormat  ( vps , m_layerId ); 
709  sps->inferScalingList( m_parameterSetManagerDecoder.getActiveSPS( sps->getSpsScalingListRefLayerId() ) ); 
710#endif
711  pps->setSPS(sps);
712  pps->setNumSubstreams(pps->getEntropyCodingSyncEnabledFlag() ? ((sps->getPicHeightInLumaSamples() + sps->getMaxCUHeight() - 1) / sps->getMaxCUHeight()) * (pps->getNumColumnsMinus1() + 1) : 1);
713  pps->setMinCuDQPSize( sps->getMaxCUWidth() >> ( pps->getMaxCuDQPDepth()) );
714
715  g_bitDepthY     = sps->getBitDepthY();
716  g_bitDepthC     = sps->getBitDepthC();
717  g_uiMaxCUWidth  = sps->getMaxCUWidth();
718  g_uiMaxCUHeight = sps->getMaxCUHeight();
719  g_uiMaxCUDepth  = sps->getMaxCUDepth();
720  g_uiAddCUDepth  = max (0, sps->getLog2MinCodingBlockSize() - (Int)sps->getQuadtreeTULog2MinSize() );
721
722  for (Int i = 0; i < sps->getLog2DiffMaxMinCodingBlockSize(); i++)
723  {
724    sps->setAMPAcc( i, sps->getUseAMP() );
725  }
726
727  for (Int i = sps->getLog2DiffMaxMinCodingBlockSize(); i < sps->getMaxCUDepth(); i++)
728  {
729    sps->setAMPAcc( i, 0 );
730  }
731
732  m_cSAO.destroy();
733  m_cSAO.create( sps->getPicWidthInLumaSamples(), sps->getPicHeightInLumaSamples(), sps->getMaxCUWidth(), sps->getMaxCUHeight(), sps->getMaxCUDepth() );
734  m_cLoopFilter.create( sps->getMaxCUDepth() );
735}
736
737#if H_MV
738Bool TDecTop::xDecodeSlice(InputNALUnit &nalu, Int &iSkipFrame, Int iPOCLastDisplay, Bool newLayerFlag, Bool& sliceSkippedFlag  )
739{
740  assert( nalu.m_layerId == m_layerId ); 
741#else
742Bool TDecTop::xDecodeSlice(InputNALUnit &nalu, Int &iSkipFrame, Int iPOCLastDisplay )
743{
744#endif
745  TComPic*&   pcPic         = m_pcPic;
746  m_apcSlicePilot->initSlice();
747
748  if (m_bFirstSliceInPicture)
749  {
750    m_uiSliceIdx     = 0;
751  }
752  else
753  {
754    m_apcSlicePilot->copySliceInfo( pcPic->getPicSym()->getSlice(m_uiSliceIdx-1) );
755  }
756  m_apcSlicePilot->setSliceIdx(m_uiSliceIdx);
757
758  m_apcSlicePilot->setNalUnitType(nalu.m_nalUnitType);
759  Bool nonReferenceFlag = (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_TRAIL_N ||
760                           m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_TSA_N   ||
761                           m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_STSA_N  ||
762                           m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RADL_N  ||
763                           m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_N);
764  m_apcSlicePilot->setTemporalLayerNonReferenceFlag(nonReferenceFlag);
765 
766  m_apcSlicePilot->setReferenced(true); // Putting this as true ensures that picture is referenced the first time it is in an RPS
767  m_apcSlicePilot->setTLayerInfo(nalu.m_temporalId);
768
769#if H_MV
770  m_apcSlicePilot->setRefPicSetInterLayer( & m_refPicSetInterLayer0, &m_refPicSetInterLayer1 ); 
771  m_apcSlicePilot->setLayerId( nalu.m_layerId );
772  m_cEntropyDecoder.decodeSliceHeader (m_apcSlicePilot, &m_parameterSetManagerDecoder, m_targetOptLayerSetIdx );
773#endif
774  // set POC for dependent slices in skipped pictures
775  if(m_apcSlicePilot->getDependentSliceSegmentFlag() && m_prevSliceSkipped) 
776  {
777    m_apcSlicePilot->setPOC(m_skippedPOC);
778  }
779
780  m_apcSlicePilot->setAssociatedIRAPPOC(m_pocCRA);
781  m_apcSlicePilot->setAssociatedIRAPType(m_associatedIRAPType);
782
783#if H_MV 
784  TComVPS* vps     = m_apcSlicePilot->getVPS();
785  Int layerId  = nalu.m_layerId;   
786  setViewId   ( vps->getViewId   ( layerId )      ); 
787#if H_3D
788  setViewIndex( vps->getViewIndex( layerId )      ); 
789  setIsDepth  ( vps->getDepthId  ( layerId ) == 1 ); 
790  m_ivPicLists->setVPS( vps ); 
791#endif
792#endif
793
794#if SETTING_NO_OUT_PIC_PRIOR
795  //For inference of NoOutputOfPriorPicsFlag
796  if (m_apcSlicePilot->getRapPicFlag())
797  {
798    if ((m_apcSlicePilot->getNalUnitType() >= NAL_UNIT_CODED_SLICE_BLA_W_LP && m_apcSlicePilot->getNalUnitType() <= NAL_UNIT_CODED_SLICE_IDR_N_LP) || 
799        (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA && m_bFirstSliceInSequence) ||
800        (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA && m_apcSlicePilot->getHandleCraAsBlaFlag()))
801    {
802      m_apcSlicePilot->setNoRaslOutputFlag(true);
803    }
804    //the inference for NoOutputPriorPicsFlag
805    if (!m_bFirstSliceInBitstream && m_apcSlicePilot->getRapPicFlag() && m_apcSlicePilot->getNoRaslOutputFlag())
806    {
807      if (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA)
808      {
809        m_apcSlicePilot->setNoOutputPriorPicsFlag(true);
810      }
811    }
812    else
813    {
814      m_apcSlicePilot->setNoOutputPriorPicsFlag(false);
815    }
816
817    if(m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA)
818    {
819      m_craNoRaslOutputFlag = m_apcSlicePilot->getNoRaslOutputFlag();
820    }
821  }
822  if (m_apcSlicePilot->getRapPicFlag() && m_apcSlicePilot->getNoOutputPriorPicsFlag())
823  {
824    m_lastPOCNoOutputPriorPics = m_apcSlicePilot->getPOC();
825    m_isNoOutputPriorPics = true;
826  }
827  else
828  {
829    m_isNoOutputPriorPics = false;
830  }
831
832  //For inference of PicOutputFlag
833  if (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_N || m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_R)
834  {
835    if ( m_craNoRaslOutputFlag )
836    {
837      m_apcSlicePilot->setPicOutputFlag(false);
838    }
839  }
840#endif
841
842#if FIX_POC_CRA_NORASL_OUTPUT
843  if (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA && m_craNoRaslOutputFlag) //Reset POC MSB when CRA has NoRaslOutputFlag equal to 1
844  {
845    Int iMaxPOClsb = 1 << m_apcSlicePilot->getSPS()->getBitsForPOC();
846    m_apcSlicePilot->setPOC( m_apcSlicePilot->getPOC() & (iMaxPOClsb - 1) );
847  }
848#endif
849#if H_MV
850    xCeckNoClrasOutput();
851#endif
852    // Skip pictures due to random access
853    if (isRandomAccessSkipPicture(iSkipFrame, iPOCLastDisplay))
854    {
855    m_prevSliceSkipped = true;
856    m_skippedPOC = m_apcSlicePilot->getPOC();
857#if H_MV
858    sliceSkippedFlag = true; 
859#endif
860      return false;
861    }
862    // Skip TFD pictures associated with BLA/BLANT pictures
863    if (isSkipPictureForBLA(iPOCLastDisplay))
864    {
865    m_prevSliceSkipped = true;
866    m_skippedPOC = m_apcSlicePilot->getPOC();
867#if H_MV
868    sliceSkippedFlag = true; 
869#endif
870      return false;
871    }
872
873  // clear previous slice skipped flag
874  m_prevSliceSkipped = false;
875
876  //we should only get a different poc for a new picture (with CTU address==0)
877  if (m_apcSlicePilot->isNextSlice() && m_apcSlicePilot->getPOC()!=m_prevPOC && !m_bFirstSliceInSequence && (m_apcSlicePilot->getSliceCurStartCUAddr()!=0))
878  {
879    printf ("Warning, the first slice of a picture might have been lost!\n");
880  }
881  // exit when a new picture is found
882  if (m_apcSlicePilot->isNextSlice() && (m_apcSlicePilot->getSliceCurStartCUAddr() == 0 && !m_bFirstSliceInPicture) && !m_bFirstSliceInSequence )
883  {
884    if (m_prevPOC >= m_pocRandomAccess)
885    {
886      m_prevPOC = m_apcSlicePilot->getPOC();
887      return true;
888    }
889    m_prevPOC = m_apcSlicePilot->getPOC();
890  }
891#if H_MV
892  if ( newLayerFlag )
893  {
894    return false; 
895  }
896#if ENC_DEC_TRACE
897#if H_MV_ENC_DEC_TRAC
898  // parse remainder of SH
899   g_disableHLSTrace = false; 
900#endif
901#endif
902#endif
903  // actual decoding starts here
904#if H_MV
905   // This part needs further testing !
906   if ( m_apcSlicePilot->getPocResetFlag() )
907   {   
908     xResetPocInPicBuffer();
909   }
910#endif
911   
912#if I0044_SLICE_TMVP
913  if ( m_apcSlicePilot->getTLayer() == 0 && m_apcSlicePilot->getEnableTMVPFlag() == 0 )
914  {
915    //update all pics in the DPB such that they cannot be used for TMPV ref
916    TComList<TComPic*>::iterator  iterRefPic = m_cListPic.begin(); 
917    while( iterRefPic != m_cListPic.end() )
918    {
919      TComPic *refPic = *iterRefPic;
920      if( ( refPic->getLayerId() == m_apcSlicePilot->getLayerId() ) && refPic->getReconMark() )
921      {
922        for(Int i = refPic->getNumAllocatedSlice()-1; i >= 0; i--)
923        {
924
925          TComSlice *refSlice = refPic->getSlice(i);
926          refSlice->setAvailableForTMVPRefFlag( false );
927        }
928      }
929      iterRefPic++;
930    }
931  }
932  m_apcSlicePilot->setAvailableForTMVPRefFlag( true );
933#endif
934
935  xActivateParameterSets();
936
937  if (m_apcSlicePilot->isNextSlice()) 
938  {
939    m_prevPOC = m_apcSlicePilot->getPOC();
940  }
941  m_bFirstSliceInSequence = false;
942#if SETTING_NO_OUT_PIC_PRIOR 
943  m_bFirstSliceInBitstream  = false;
944#endif
945  //detect lost reference picture and insert copy of earlier frame.
946  Int lostPoc;
947  while((lostPoc=m_apcSlicePilot->checkThatAllRefPicsAreAvailable(m_cListPic, m_apcSlicePilot->getRPS(), true, m_pocRandomAccess)) > 0)
948  {
949    xCreateLostPicture(lostPoc-1);
950  }
951  if (m_bFirstSliceInPicture)
952  {
953    // Buffer initialize for prediction.
954    m_cPrediction.initTempBuff();
955    m_apcSlicePilot->applyReferencePictureSet(m_cListPic, m_apcSlicePilot->getRPS());
956#if H_MV
957    m_apcSlicePilot->createInterLayerReferencePictureSet( m_ivPicLists, m_refPicSetInterLayer0, m_refPicSetInterLayer1 ); 
958#endif
959    //  Get a new picture buffer
960    xGetNewPicBuffer (m_apcSlicePilot, pcPic);
961
962    Bool isField = false;
963    Bool isTff = false;
964   
965    if(!m_SEIs.empty())
966    {
967      // Check if any new Picture Timing SEI has arrived
968      SEIMessages pictureTimingSEIs = extractSeisByType (m_SEIs, SEI::PICTURE_TIMING);
969      if (pictureTimingSEIs.size()>0)
970      {
971        SEIPictureTiming* pictureTiming = (SEIPictureTiming*) *(pictureTimingSEIs.begin());
972        isField = (pictureTiming->m_picStruct == 1) || (pictureTiming->m_picStruct == 2);
973        isTff =  (pictureTiming->m_picStruct == 1);
974      }
975    }
976   
977    //Set Field/Frame coding mode
978    m_pcPic->setField(isField);
979    m_pcPic->setTopField(isTff);
980   
981    // transfer any SEI messages that have been received to the picture
982    pcPic->setSEIs(m_SEIs);
983    m_SEIs.clear();
984
985    // Recursive structure
986    m_cCuDecoder.create ( g_uiMaxCUDepth, g_uiMaxCUWidth, g_uiMaxCUHeight );
987    m_cCuDecoder.init   ( &m_cEntropyDecoder, &m_cTrQuant, &m_cPrediction );
988    m_cTrQuant.init     ( g_uiMaxCUWidth, g_uiMaxCUHeight, m_apcSlicePilot->getSPS()->getMaxTrSize());
989
990    m_cSliceDecoder.create();
991  }
992  else
993  {
994    // Check if any new SEI has arrived
995    if(!m_SEIs.empty())
996    {
997      // Currently only decoding Unit SEI message occurring between VCL NALUs copied
998      SEIMessages &picSEI = pcPic->getSEIs();
999      SEIMessages decodingUnitInfos = extractSeisByType (m_SEIs, SEI::DECODING_UNIT_INFO);
1000      picSEI.insert(picSEI.end(), decodingUnitInfos.begin(), decodingUnitInfos.end());
1001      deleteSEIs(m_SEIs);
1002    }
1003  }
1004 
1005  //  Set picture slice pointer
1006  TComSlice*  pcSlice = m_apcSlicePilot;
1007  Bool bNextSlice     = pcSlice->isNextSlice();
1008
1009  UInt uiCummulativeTileWidth;
1010  UInt uiCummulativeTileHeight;
1011  UInt i, j, p;
1012
1013  //set NumColumnsMins1 and NumRowsMinus1
1014  pcPic->getPicSym()->setNumColumnsMinus1( pcSlice->getPPS()->getNumColumnsMinus1() );
1015  pcPic->getPicSym()->setNumRowsMinus1( pcSlice->getPPS()->getNumRowsMinus1() );
1016
1017  //create the TComTileArray
1018  pcPic->getPicSym()->xCreateTComTileArray();
1019
1020  if( pcSlice->getPPS()->getUniformSpacingFlag() )
1021  {
1022    //set the width for each tile
1023    for(j=0; j < pcPic->getPicSym()->getNumRowsMinus1()+1; j++)
1024    {
1025      for(p=0; p < pcPic->getPicSym()->getNumColumnsMinus1()+1; p++)
1026      {
1027        pcPic->getPicSym()->getTComTile( j * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + p )->
1028          setTileWidth( (p+1)*pcPic->getPicSym()->getFrameWidthInCU()/(pcPic->getPicSym()->getNumColumnsMinus1()+1) 
1029          - (p*pcPic->getPicSym()->getFrameWidthInCU())/(pcPic->getPicSym()->getNumColumnsMinus1()+1) );
1030      }
1031    }
1032
1033    //set the height for each tile
1034    for(j=0; j < pcPic->getPicSym()->getNumColumnsMinus1()+1; j++)
1035    {
1036      for(p=0; p < pcPic->getPicSym()->getNumRowsMinus1()+1; p++)
1037      {
1038        pcPic->getPicSym()->getTComTile( p * (pcPic->getPicSym()->getNumColumnsMinus1()+1) + j )->
1039          setTileHeight( (p+1)*pcPic->getPicSym()->getFrameHeightInCU()/(pcPic->getPicSym()->getNumRowsMinus1()+1) 
1040          - (p*pcPic->getPicSym()->getFrameHeightInCU())/(pcPic->getPicSym()->getNumRowsMinus1()+1) );   
1041      }
1042    }
1043  }
1044  else
1045  {
1046    //set the width for each tile
1047    for(j=0; j < pcSlice->getPPS()->getNumRowsMinus1()+1; j++)
1048    {
1049      uiCummulativeTileWidth = 0;
1050      for(i=0; i < pcSlice->getPPS()->getNumColumnsMinus1(); i++)
1051      {
1052        pcPic->getPicSym()->getTComTile(j * (pcSlice->getPPS()->getNumColumnsMinus1()+1) + i)->setTileWidth( pcSlice->getPPS()->getColumnWidth(i) );
1053        uiCummulativeTileWidth += pcSlice->getPPS()->getColumnWidth(i);
1054      }
1055      pcPic->getPicSym()->getTComTile(j * (pcSlice->getPPS()->getNumColumnsMinus1()+1) + i)->setTileWidth( pcPic->getPicSym()->getFrameWidthInCU()-uiCummulativeTileWidth );
1056    }
1057
1058    //set the height for each tile
1059    for(j=0; j < pcSlice->getPPS()->getNumColumnsMinus1()+1; j++)
1060    {
1061      uiCummulativeTileHeight = 0;
1062      for(i=0; i < pcSlice->getPPS()->getNumRowsMinus1(); i++)
1063      { 
1064        pcPic->getPicSym()->getTComTile(i * (pcSlice->getPPS()->getNumColumnsMinus1()+1) + j)->setTileHeight( pcSlice->getPPS()->getRowHeight(i) );
1065        uiCummulativeTileHeight += pcSlice->getPPS()->getRowHeight(i);
1066      }
1067      pcPic->getPicSym()->getTComTile(i * (pcSlice->getPPS()->getNumColumnsMinus1()+1) + j)->setTileHeight( pcPic->getPicSym()->getFrameHeightInCU()-uiCummulativeTileHeight );
1068    }
1069  }
1070
1071  pcPic->getPicSym()->xInitTiles();
1072
1073  //generate the Coding Order Map and Inverse Coding Order Map
1074  UInt uiEncCUAddr;
1075  for(i=0, uiEncCUAddr=0; i<pcPic->getPicSym()->getNumberOfCUsInFrame(); i++, uiEncCUAddr = pcPic->getPicSym()->xCalculateNxtCUAddr(uiEncCUAddr))
1076  {
1077    pcPic->getPicSym()->setCUOrderMap(i, uiEncCUAddr);
1078    pcPic->getPicSym()->setInverseCUOrderMap(uiEncCUAddr, i);
1079  }
1080  pcPic->getPicSym()->setCUOrderMap(pcPic->getPicSym()->getNumberOfCUsInFrame(), pcPic->getPicSym()->getNumberOfCUsInFrame());
1081  pcPic->getPicSym()->setInverseCUOrderMap(pcPic->getPicSym()->getNumberOfCUsInFrame(), pcPic->getPicSym()->getNumberOfCUsInFrame());
1082
1083  //convert the start and end CU addresses of the slice and dependent slice into encoding order
1084  pcSlice->setSliceSegmentCurStartCUAddr( pcPic->getPicSym()->getPicSCUEncOrder(pcSlice->getSliceSegmentCurStartCUAddr()) );
1085  pcSlice->setSliceSegmentCurEndCUAddr( pcPic->getPicSym()->getPicSCUEncOrder(pcSlice->getSliceSegmentCurEndCUAddr()) );
1086  if(pcSlice->isNextSlice())
1087  {
1088    pcSlice->setSliceCurStartCUAddr(pcPic->getPicSym()->getPicSCUEncOrder(pcSlice->getSliceCurStartCUAddr()));
1089    pcSlice->setSliceCurEndCUAddr(pcPic->getPicSym()->getPicSCUEncOrder(pcSlice->getSliceCurEndCUAddr()));
1090  }
1091
1092  if (m_bFirstSliceInPicture) 
1093  {
1094    if(pcPic->getNumAllocatedSlice() != 1)
1095    {
1096      pcPic->clearSliceBuffer();
1097    }
1098  }
1099  else
1100  {
1101    pcPic->allocateNewSlice();
1102  }
1103  assert(pcPic->getNumAllocatedSlice() == (m_uiSliceIdx + 1));
1104  m_apcSlicePilot = pcPic->getPicSym()->getSlice(m_uiSliceIdx); 
1105  pcPic->getPicSym()->setSlice(pcSlice, m_uiSliceIdx);
1106
1107  pcPic->setTLayer(nalu.m_temporalId);
1108
1109#if H_MV
1110  pcPic->setLayerId( nalu.m_layerId );
1111  pcPic->setViewId ( getViewId() );
1112#if H_3D
1113  pcPic->setViewIndex( getViewIndex() );
1114  pcPic->setIsDepth  ( getIsDepth  () );
1115#endif
1116#endif
1117  if (bNextSlice)
1118  {
1119    pcSlice->checkCRA(pcSlice->getRPS(), m_pocCRA, m_associatedIRAPType, m_cListPic );
1120    // Set reference list
1121#if H_MV   
1122    std::vector< TComPic* > tempRefPicLists[2];
1123    std::vector< Bool     > usedAsLongTerm [2];
1124    Int       numPocTotalCurr;
1125
1126    pcSlice->getTempRefPicLists( m_cListPic, m_refPicSetInterLayer0, m_refPicSetInterLayer1, tempRefPicLists, usedAsLongTerm, numPocTotalCurr);
1127    pcSlice->setRefPicList     ( tempRefPicLists, usedAsLongTerm, numPocTotalCurr, true ); 
1128#if H_3D_ARP
1129    pcSlice->setARPStepNum(m_ivPicLists);
1130    if( pcSlice->getARPStepNum() > 1 )
1131    {
1132      // GT: This seems to be broken, not all nuh_layer_ids are necessarily present
1133      for(Int iLayerId = 0; iLayerId < nalu.m_layerId; iLayerId ++ )
1134      {
1135        Int  iViewIdx =   pcSlice->getVPS()->getViewIndex(iLayerId);
1136        Bool bIsDepth = ( pcSlice->getVPS()->getDepthId  ( iLayerId ) == 1 );
1137        if( iViewIdx<getViewIndex() && !bIsDepth )
1138        {
1139          pcSlice->setBaseViewRefPicList( m_ivPicLists->getPicList( iLayerId ), iViewIdx );
1140        }
1141      }
1142    }
1143#endif
1144#else
1145    pcSlice->setRefPicList( m_cListPic, true );
1146#endif
1147
1148#if H_3D
1149    pcSlice->setIvPicLists( m_ivPicLists );         
1150#if H_3D_IV_MERGE
1151#if H_3D_FCO
1152    //assert( !getIsDepth() );
1153#else
1154    assert( !getIsDepth() || ( pcSlice->getTexturePic() != 0 ) );
1155#endif
1156#endif   
1157#endif
1158
1159#if I0044_SLICE_TMVP
1160    if( m_layerId > 0 && !pcSlice->isIntra() && pcSlice->getEnableTMVPFlag() )
1161    {
1162      TComPic* refPic = pcSlice->getRefPic(RefPicList(1 - pcSlice->getColFromL0Flag()), pcSlice->getColRefIdx());
1163
1164      assert ( refPic );
1165      assert ( refPic->getPicSym()->getSlice(0)->getAvailableForTMVPRefFlag() == true );
1166    }
1167#endif
1168
1169    // For generalized B
1170    // note: maybe not existed case (always L0 is copied to L1 if L1 is empty)
1171    if (pcSlice->isInterB() && pcSlice->getNumRefIdx(REF_PIC_LIST_1) == 0)
1172    {
1173      Int iNumRefIdx = pcSlice->getNumRefIdx(REF_PIC_LIST_0);
1174      pcSlice->setNumRefIdx        ( REF_PIC_LIST_1, iNumRefIdx );
1175
1176      for (Int iRefIdx = 0; iRefIdx < iNumRefIdx; iRefIdx++)
1177      {
1178        pcSlice->setRefPic(pcSlice->getRefPic(REF_PIC_LIST_0, iRefIdx), REF_PIC_LIST_1, iRefIdx);
1179      }
1180    }
1181    if (!pcSlice->isIntra())
1182    {
1183      Bool bLowDelay = true;
1184      Int  iCurrPOC  = pcSlice->getPOC();
1185      Int iRefIdx = 0;
1186
1187      for (iRefIdx = 0; iRefIdx < pcSlice->getNumRefIdx(REF_PIC_LIST_0) && bLowDelay; iRefIdx++)
1188      {
1189        if ( pcSlice->getRefPic(REF_PIC_LIST_0, iRefIdx)->getPOC() > iCurrPOC )
1190        {
1191          bLowDelay = false;
1192        }
1193      }
1194      if (pcSlice->isInterB())
1195      {
1196        for (iRefIdx = 0; iRefIdx < pcSlice->getNumRefIdx(REF_PIC_LIST_1) && bLowDelay; iRefIdx++)
1197        {
1198          if ( pcSlice->getRefPic(REF_PIC_LIST_1, iRefIdx)->getPOC() > iCurrPOC )
1199          {
1200            bLowDelay = false;
1201          }
1202        }       
1203      }
1204
1205      pcSlice->setCheckLDC(bLowDelay);           
1206    }
1207
1208    //---------------
1209    pcSlice->setRefPOCList();
1210#if  H_3D_TMVP
1211    if(pcSlice->getLayerId())
1212      pcSlice->generateAlterRefforTMVP();
1213#endif
1214  }
1215
1216  pcPic->setCurrSliceIdx(m_uiSliceIdx);
1217  if(pcSlice->getSPS()->getScalingListFlag())
1218  {
1219    pcSlice->setScalingList ( pcSlice->getSPS()->getScalingList()  );
1220    if(pcSlice->getPPS()->getScalingListPresentFlag())
1221    {
1222      pcSlice->setScalingList ( pcSlice->getPPS()->getScalingList()  );
1223    }
1224    if(!pcSlice->getPPS()->getScalingListPresentFlag() && !pcSlice->getSPS()->getScalingListPresentFlag())
1225    {
1226      pcSlice->setDefaultScalingList();
1227    }
1228    m_cTrQuant.setScalingListDec(pcSlice->getScalingList());
1229    m_cTrQuant.setUseScalingList(true);
1230  }
1231  else
1232  {
1233    m_cTrQuant.setFlatScalingList();
1234    m_cTrQuant.setUseScalingList(false);
1235  }
1236
1237#if H_3D_IV_MERGE
1238  if( pcSlice->getIsDepth() && m_pcCamParsCollector )
1239  {
1240    m_pcCamParsCollector->copyCamParamForSlice( pcSlice );
1241  }
1242#endif
1243
1244  //  Decode a picture
1245  m_cGopDecoder.decompressSlice(nalu.m_Bitstream, pcPic);
1246#if H_3D
1247  if( m_pcCamParsCollector )
1248  {
1249    m_pcCamParsCollector->setSlice( pcSlice );
1250  }
1251#endif
1252  m_bFirstSliceInPicture = false;
1253  m_uiSliceIdx++;
1254
1255  return false;
1256}
1257
1258Void TDecTop::xDecodeVPS()
1259{
1260  TComVPS* vps = new TComVPS();
1261 
1262  m_cEntropyDecoder.decodeVPS( vps );
1263  m_parameterSetManagerDecoder.storePrefetchedVPS(vps); 
1264}
1265
1266Void TDecTop::xDecodeSPS()
1267{
1268  TComSPS* sps = new TComSPS();
1269#if H_MV
1270  sps->setLayerId( getLayerId() ); 
1271#endif
1272#if H_3D
1273  // Preliminary fix. assuming that all sps refer to the same VPS.
1274  // Parsing dependency should be resolved!
1275  TComVPS* vps = m_parameterSetManagerDecoder.getPrefetchedVPS( 0 ); 
1276  assert( vps != 0 );
1277  m_cEntropyDecoder.decodeSPS( sps, vps->getViewIndex( m_layerId ), ( vps->getDepthId( m_layerId ) == 1 ) );
1278#else
1279  m_cEntropyDecoder.decodeSPS( sps );
1280#endif
1281  m_parameterSetManagerDecoder.storePrefetchedSPS(sps);
1282}
1283
1284Void TDecTop::xDecodePPS()
1285{
1286  TComPPS* pps = new TComPPS();
1287#if H_MV
1288  pps->setLayerId( getLayerId() ); 
1289#endif
1290#if H_3D
1291  // Assuming that all PPS indirectly refer to the same VPS via different SPS
1292  // There is no parsing dependency in decoding DLT in PPS.
1293  // The VPS information passed to decodePPS() is used to arrange the decoded DLT tables to their corresponding layers.
1294  // This is equivalent to the process of
1295  //   Step 1) decoding DLT tables based on the number of depth layers, and
1296  //   Step 2) mapping DLT tables to the depth layers
1297  // as described in the 3D-HEVC WD.
1298  TComVPS* vps = m_parameterSetManagerDecoder.getPrefetchedVPS( 0 );
1299  m_cEntropyDecoder.decodePPS( pps, vps );
1300#else
1301  m_cEntropyDecoder.decodePPS( pps );
1302#endif
1303  m_parameterSetManagerDecoder.storePrefetchedPPS( pps );
1304}
1305
1306Void TDecTop::xDecodeSEI( TComInputBitstream* bs, const NalUnitType nalUnitType )
1307{
1308  if(nalUnitType == NAL_UNIT_SUFFIX_SEI)
1309  {
1310#if H_MV
1311    m_seiReader.parseSEImessage( bs, m_pcPic->getSEIs(), nalUnitType, m_parameterSetManagerDecoder.getActiveSPS( m_layerId ) );
1312#else
1313    m_seiReader.parseSEImessage( bs, m_pcPic->getSEIs(), nalUnitType, m_parameterSetManagerDecoder.getActiveSPS() );
1314#endif
1315  }
1316  else
1317  {
1318#if H_MV
1319    m_seiReader.parseSEImessage( bs, m_SEIs, nalUnitType, m_parameterSetManagerDecoder.getActiveSPS( m_layerId ) );
1320#else
1321    m_seiReader.parseSEImessage( bs, m_SEIs, nalUnitType, m_parameterSetManagerDecoder.getActiveSPS() );
1322#endif
1323    SEIMessages activeParamSets = getSeisByType(m_SEIs, SEI::ACTIVE_PARAMETER_SETS);
1324    if (activeParamSets.size()>0)
1325    {
1326      SEIActiveParameterSets *seiAps = (SEIActiveParameterSets*)(*activeParamSets.begin());
1327      m_parameterSetManagerDecoder.applyPrefetchedPS();
1328      assert(seiAps->activeSeqParameterSetId.size()>0);
1329#if H_MV
1330      if (! m_parameterSetManagerDecoder.activateSPSWithSEI(seiAps->activeSeqParameterSetId[0], m_layerId ))
1331#else
1332      if (! m_parameterSetManagerDecoder.activateSPSWithSEI(seiAps->activeSeqParameterSetId[0] ))
1333#endif
1334      {
1335        printf ("Warning SPS activation with Active parameter set SEI failed");
1336      }
1337    }
1338  }
1339}
1340
1341#if H_MV
1342Bool TDecTop::decode(InputNALUnit& nalu, Int& iSkipFrame, Int& iPOCLastDisplay, Bool newLayerFlag, Bool& sliceSkippedFlag )
1343#else
1344Bool TDecTop::decode(InputNALUnit& nalu, Int& iSkipFrame, Int& iPOCLastDisplay)
1345#endif
1346{
1347  // Initialize entropy decoder
1348  m_cEntropyDecoder.setEntropyDecoder (&m_cCavlcDecoder);
1349  m_cEntropyDecoder.setBitstream      (nalu.m_Bitstream);
1350
1351  switch (nalu.m_nalUnitType)
1352  {
1353    case NAL_UNIT_VPS:
1354      xDecodeVPS();
1355#if H_MV
1356      m_isLastNALWasEos = false;
1357#endif
1358      return false;
1359     
1360    case NAL_UNIT_SPS:
1361      xDecodeSPS();
1362      return false;
1363
1364    case NAL_UNIT_PPS:
1365      xDecodePPS();
1366      return false;
1367     
1368    case NAL_UNIT_PREFIX_SEI:
1369    case NAL_UNIT_SUFFIX_SEI:
1370#if H_MV
1371      if ( nalu.m_nalUnitType == NAL_UNIT_SUFFIX_SEI )
1372      {
1373        assert( m_isLastNALWasEos == false );
1374      }
1375#endif
1376      xDecodeSEI( nalu.m_Bitstream, nalu.m_nalUnitType );
1377      return false;
1378
1379    case NAL_UNIT_CODED_SLICE_TRAIL_R:
1380    case NAL_UNIT_CODED_SLICE_TRAIL_N:
1381    case NAL_UNIT_CODED_SLICE_TSA_R:
1382    case NAL_UNIT_CODED_SLICE_TSA_N:
1383    case NAL_UNIT_CODED_SLICE_STSA_R:
1384    case NAL_UNIT_CODED_SLICE_STSA_N:
1385    case NAL_UNIT_CODED_SLICE_BLA_W_LP:
1386    case NAL_UNIT_CODED_SLICE_BLA_W_RADL:
1387    case NAL_UNIT_CODED_SLICE_BLA_N_LP:
1388    case NAL_UNIT_CODED_SLICE_IDR_W_RADL:
1389    case NAL_UNIT_CODED_SLICE_IDR_N_LP:
1390    case NAL_UNIT_CODED_SLICE_CRA:
1391    case NAL_UNIT_CODED_SLICE_RADL_N:
1392    case NAL_UNIT_CODED_SLICE_RADL_R:
1393    case NAL_UNIT_CODED_SLICE_RASL_N:
1394    case NAL_UNIT_CODED_SLICE_RASL_R:
1395#if H_MV
1396      if (nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_TRAIL_R || nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_TRAIL_N ||
1397          nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_TSA_R || nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_TSA_N ||
1398          nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_STSA_R || nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_STSA_N ||
1399          nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_RADL_R || nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_RADL_N ||
1400          nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_RASL_R || nalu.m_nalUnitType == NAL_UNIT_CODED_SLICE_RASL_N )
1401      {
1402        assert( m_isLastNALWasEos == false );
1403      }
1404      else
1405      {
1406        m_isLastNALWasEos = false;
1407      }
1408
1409      return xDecodeSlice(nalu, iSkipFrame, iPOCLastDisplay, newLayerFlag, sliceSkippedFlag );
1410#else
1411      return xDecodeSlice(nalu, iSkipFrame, iPOCLastDisplay);
1412#endif
1413      break;
1414    case NAL_UNIT_EOS:
1415#if H_MV
1416      assert( m_isLastNALWasEos == false );
1417      //Check layer id of the nalu. if it is not 0, give a warning message and just return without doing anything.
1418      if (nalu.m_layerId > 0)
1419      {
1420        printf( "\nThis bitstream has EOS with non-zero layer id.\n" );
1421        return false;
1422      }
1423      m_isLastNALWasEos = true;
1424#endif
1425      m_associatedIRAPType = NAL_UNIT_INVALID;
1426      m_pocCRA = 0;
1427      m_pocRandomAccess = MAX_INT;
1428      m_prevPOC = MAX_INT;
1429      m_bFirstSliceInPicture = true;
1430      m_bFirstSliceInSequence = true;
1431      m_prevSliceSkipped = false;
1432      m_skippedPOC = 0;
1433      return false;
1434     
1435    case NAL_UNIT_ACCESS_UNIT_DELIMITER:
1436      // TODO: process AU delimiter
1437      return false;
1438     
1439    case NAL_UNIT_EOB:
1440      return false;
1441     
1442    case NAL_UNIT_FILLER_DATA:
1443#if H_MV
1444      assert( m_isLastNALWasEos == false );
1445#endif
1446      return false;
1447     
1448    case NAL_UNIT_RESERVED_VCL_N10:
1449    case NAL_UNIT_RESERVED_VCL_R11:
1450    case NAL_UNIT_RESERVED_VCL_N12:
1451    case NAL_UNIT_RESERVED_VCL_R13:
1452    case NAL_UNIT_RESERVED_VCL_N14:
1453    case NAL_UNIT_RESERVED_VCL_R15:
1454     
1455    case NAL_UNIT_RESERVED_IRAP_VCL22:
1456    case NAL_UNIT_RESERVED_IRAP_VCL23:
1457     
1458    case NAL_UNIT_RESERVED_VCL24:
1459    case NAL_UNIT_RESERVED_VCL25:
1460    case NAL_UNIT_RESERVED_VCL26:
1461    case NAL_UNIT_RESERVED_VCL27:
1462    case NAL_UNIT_RESERVED_VCL28:
1463    case NAL_UNIT_RESERVED_VCL29:
1464    case NAL_UNIT_RESERVED_VCL30:
1465    case NAL_UNIT_RESERVED_VCL31:
1466     
1467    case NAL_UNIT_RESERVED_NVCL41:
1468    case NAL_UNIT_RESERVED_NVCL42:
1469    case NAL_UNIT_RESERVED_NVCL43:
1470    case NAL_UNIT_RESERVED_NVCL44:
1471    case NAL_UNIT_RESERVED_NVCL45:
1472    case NAL_UNIT_RESERVED_NVCL46:
1473    case NAL_UNIT_RESERVED_NVCL47:
1474    case NAL_UNIT_UNSPECIFIED_48:
1475    case NAL_UNIT_UNSPECIFIED_49:
1476    case NAL_UNIT_UNSPECIFIED_50:
1477    case NAL_UNIT_UNSPECIFIED_51:
1478    case NAL_UNIT_UNSPECIFIED_52:
1479    case NAL_UNIT_UNSPECIFIED_53:
1480    case NAL_UNIT_UNSPECIFIED_54:
1481    case NAL_UNIT_UNSPECIFIED_55:
1482    case NAL_UNIT_UNSPECIFIED_56:
1483    case NAL_UNIT_UNSPECIFIED_57:
1484    case NAL_UNIT_UNSPECIFIED_58:
1485    case NAL_UNIT_UNSPECIFIED_59:
1486    case NAL_UNIT_UNSPECIFIED_60:
1487    case NAL_UNIT_UNSPECIFIED_61:
1488    case NAL_UNIT_UNSPECIFIED_62:
1489    case NAL_UNIT_UNSPECIFIED_63:
1490    default:
1491      assert (0);
1492  }
1493
1494  return false;
1495}
1496
1497/** Function for checking if picture should be skipped because of association with a previous BLA picture
1498 * \param iPOCLastDisplay POC of last picture displayed
1499 * \returns true if the picture should be skipped
1500 * This function skips all TFD pictures that follow a BLA picture
1501 * in decoding order and precede it in output order.
1502 */
1503Bool TDecTop::isSkipPictureForBLA(Int& iPOCLastDisplay)
1504{
1505  if ((m_associatedIRAPType == NAL_UNIT_CODED_SLICE_BLA_N_LP || m_associatedIRAPType == NAL_UNIT_CODED_SLICE_BLA_W_LP || m_associatedIRAPType == NAL_UNIT_CODED_SLICE_BLA_W_RADL) && 
1506       m_apcSlicePilot->getPOC() < m_pocCRA && (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_R || m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_N))
1507  {
1508    iPOCLastDisplay++;
1509    return true;
1510  }
1511  return false;
1512}
1513
1514/** Function for checking if picture should be skipped because of random access
1515 * \param iSkipFrame skip frame counter
1516 * \param iPOCLastDisplay POC of last picture displayed
1517 * \returns true if the picture shold be skipped in the random access.
1518 * This function checks the skipping of pictures in the case of -s option random access.
1519 * All pictures prior to the random access point indicated by the counter iSkipFrame are skipped.
1520 * It also checks the type of Nal unit type at the random access point.
1521 * If the random access point is CRA/CRANT/BLA/BLANT, TFD pictures with POC less than the POC of the random access point are skipped.
1522 * If the random access point is IDR all pictures after the random access point are decoded.
1523 * If the random access point is none of the above, a warning is issues, and decoding of pictures with POC
1524 * equal to or greater than the random access point POC is attempted. For non IDR/CRA/BLA random
1525 * access point there is no guarantee that the decoder will not crash.
1526 */
1527Bool TDecTop::isRandomAccessSkipPicture(Int& iSkipFrame,  Int& iPOCLastDisplay)
1528{
1529  if (iSkipFrame) 
1530  {
1531    iSkipFrame--;   // decrement the counter
1532    return true;
1533  }
1534#if H_MV
1535  else if ( !m_layerInitilizedFlag[ m_layerId ] ) // start of random access point, m_pocRandomAccess has not been set yet.
1536#else
1537  else if (m_pocRandomAccess == MAX_INT) // start of random access point, m_pocRandomAccess has not been set yet.
1538#endif
1539  {
1540    if (   m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA
1541        || m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_LP
1542        || m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_N_LP
1543        || m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_BLA_W_RADL )
1544    {
1545
1546#if H_MV
1547      if ( xAllRefLayersInitilized() )
1548      {
1549        m_layerInitilizedFlag[ m_layerId ] = true; 
1550        m_pocRandomAccess = m_apcSlicePilot->getPOC();
1551      }
1552      else
1553      {
1554        return true; 
1555      }
1556#else
1557      // set the POC random access since we need to skip the reordered pictures in the case of CRA/CRANT/BLA/BLANT.
1558      m_pocRandomAccess = m_apcSlicePilot->getPOC();
1559#endif
1560    }
1561    else if ( m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_W_RADL || m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR_N_LP )
1562    {
1563#if H_MV
1564      if ( xAllRefLayersInitilized() )
1565      {
1566        m_layerInitilizedFlag[ m_layerId ] = true; 
1567        m_pocRandomAccess = -MAX_INT; // no need to skip the reordered pictures in IDR, they are decodable.
1568      }
1569      else 
1570      {
1571        return true; 
1572      }
1573#else
1574      m_pocRandomAccess = -MAX_INT; // no need to skip the reordered pictures in IDR, they are decodable.
1575#endif
1576    }
1577    else 
1578    {
1579#if H_MV
1580      static Bool warningMessage[MAX_NUM_LAYERS];
1581      static Bool warningInitFlag = false;
1582     
1583      if (!warningInitFlag)
1584      {
1585        for ( Int i = 0; i < MAX_NUM_LAYERS; i++)
1586        {
1587          warningMessage[i] = true; 
1588        }
1589        warningInitFlag = true; 
1590      }
1591
1592      if ( warningMessage[getLayerId()] )
1593      {
1594        printf("\nLayer%3d   No valid random access point. VCL NAL units of this layer are discarded until next layer initialization picture. ", getLayerId() ); 
1595        warningMessage[m_layerId] = false; 
1596      }
1597#else
1598      static Bool warningMessage = false;
1599      if(!warningMessage)
1600      {
1601        printf("\nWarning: this is not a valid random access point and the data is discarded until the first CRA picture");
1602        warningMessage = true;
1603      }
1604#endif
1605      return true;
1606    }
1607  }
1608  // skip the reordered pictures, if necessary
1609  else if (m_apcSlicePilot->getPOC() < m_pocRandomAccess && (m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_R || m_apcSlicePilot->getNalUnitType() == NAL_UNIT_CODED_SLICE_RASL_N))
1610  {
1611    iPOCLastDisplay++;
1612    return true;
1613  }
1614#if H_MV
1615  return !m_layerInitilizedFlag[ getLayerId() ]; 
1616#else
1617  // if we reach here, then the picture is not skipped.
1618  return false; 
1619#endif
1620}
1621
1622#if H_MV
1623TComPic* TDecTop::getPic( Int poc )
1624{
1625  xGetPic( m_layerId, poc ); 
1626  TComList<TComPic*>* listPic = getListPic();
1627  TComPic* pcPic = NULL;
1628  for(TComList<TComPic*>::iterator it=listPic->begin(); it!=listPic->end(); it++)
1629  {
1630    if( (*it)->getPOC() == poc )
1631    {
1632      pcPic = *it ;
1633      break ;
1634    }
1635  }
1636  return pcPic;
1637}
1638
1639TComPic* TDecTop::xGetPic( Int layerId, Int poc )
1640{ 
1641  return m_ivPicLists->getPic( layerId, poc ) ;
1642}
1643
1644Void TDecTop::xResetPocInPicBuffer()
1645{
1646  TComList<TComPic*>::iterator  iterPic   = m_cListPic.begin();
1647  while (iterPic != m_cListPic.end())
1648  {
1649    TComPic* pic = *(iterPic++);
1650    if ( pic->getReconMark() )
1651    {
1652      for( Int i = 0; i < pic->getNumAllocatedSlice(); i++)
1653      {
1654        TComSlice* slice = pic->getSlice( i ); 
1655        slice->setPOC ( slice->getPOC() - m_apcSlicePilot->getPocBeforeReset() );           
1656      }         
1657    }     
1658  }
1659}
1660
1661#if H_MV
1662Void TDecTop::xCeckNoClrasOutput()
1663{
1664  // This part needs further testing!
1665  if ( getLayerId() == 0 )
1666  {   
1667    NalUnitType nut = m_apcSlicePilot->getNalUnitType(); 
1668
1669    Bool isBLA =  ( nut == NAL_UNIT_CODED_SLICE_BLA_W_LP  )  || ( nut == NAL_UNIT_CODED_SLICE_BLA_N_LP ) || ( nut == NAL_UNIT_CODED_SLICE_BLA_W_RADL ); 
1670    Bool isIDR  = ( nut == NAL_UNIT_CODED_SLICE_IDR_W_RADL ) || ( nut == NAL_UNIT_CODED_SLICE_IDR_N_LP ); 
1671    Bool noClrasOutputFlag  = isBLA || ( isIDR  &&  m_apcSlicePilot->getCrossLayerBlaFlag() ); 
1672
1673    if ( noClrasOutputFlag ) 
1674    {
1675      for (Int i = 0; i < MAX_NUM_LAYER_IDS; i++)
1676      {
1677        m_layerInitilizedFlag[i] = false; 
1678      } 
1679    }
1680  }
1681}
1682
1683Bool TDecTop::xAllRefLayersInitilized()
1684{
1685  Bool allRefLayersInitilizedFlag = true; 
1686  TComVPS* vps = m_parameterSetManagerDecoder.getPrefetchedVPS( 0 ); 
1687  for (Int i = 0; i < vps->getNumDirectRefLayers( getLayerId()  ); i++ )
1688  {
1689    Int refLayerId = vps->getRefLayerId( m_layerId, i ); 
1690    allRefLayersInitilizedFlag = allRefLayersInitilizedFlag && m_layerInitilizedFlag[ refLayerId ]; 
1691  }
1692
1693  return allRefLayersInitilizedFlag;
1694}
1695#endif
1696#endif
1697//! \}
Note: See TracBrowser for help on using the repository browser.