source: 3DVCSoftware/branches/HTM-6.2-dev1-Sharp/source/Lib/TLibDecoder/TDecCAVLC.cpp @ 374

Last change on this file since 374 was 374, checked in by sharpjp-htm, 12 years ago

D0060: Removal of IC's parsing dependency

  • Property svn:eol-style set to native
File size: 93.1 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-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     TDecCAVLC.cpp
35    \brief    CAVLC decoder class
36*/
37
38#include "TDecCAVLC.h"
39#include "SEIread.h"
40#include "TDecSlice.h"
41
42//! \ingroup TLibDecoder
43//! \{
44
45#if ENC_DEC_TRACE
46
47#define READ_CODE(length, code, name)     xReadCodeTr ( length, code, name )
48#define READ_UVLC(        code, name)     xReadUvlcTr (         code, name )
49#define READ_SVLC(        code, name)     xReadSvlcTr (         code, name )
50#define READ_FLAG(        code, name)     xReadFlagTr (         code, name )
51
52Void  xTraceSPSHeader (TComSPS *pSPS)
53{
54  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
55}
56
57Void  xTracePPSHeader (TComPPS *pPPS)
58{
59  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
60}
61
62Void  xTraceAPSHeader (TComAPS *pAPS)
63{
64  fprintf( g_hTrace, "=========== Adaptation Parameter Set ===========\n");
65}
66
67Void  xTraceSliceHeader (TComSlice *pSlice)
68{
69  fprintf( g_hTrace, "=========== Slice ===========\n");
70}
71
72
73Void  TDecCavlc::xReadCodeTr           (UInt length, UInt& rValue, const Char *pSymbolName)
74{
75  xReadCode (length, rValue);
76  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
77  fprintf( g_hTrace, "%-40s u(%d) : %d\n", pSymbolName, length, rValue ); 
78  fflush ( g_hTrace );
79}
80
81Void  TDecCavlc::xReadUvlcTr           (UInt& rValue, const Char *pSymbolName)
82{
83  xReadUvlc (rValue);
84  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
85  fprintf( g_hTrace, "%-40s u(v) : %d\n", pSymbolName, rValue ); 
86  fflush ( g_hTrace );
87}
88
89Void  TDecCavlc::xReadSvlcTr           (Int& rValue, const Char *pSymbolName)
90{
91  xReadSvlc(rValue);
92  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
93  fprintf( g_hTrace, "%-40s s(v) : %d\n", pSymbolName, rValue ); 
94  fflush ( g_hTrace );
95}
96
97Void  TDecCavlc::xReadFlagTr           (UInt& rValue, const Char *pSymbolName)
98{
99  xReadFlag(rValue);
100  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
101  fprintf( g_hTrace, "%-40s u(1) : %d\n", pSymbolName, rValue ); 
102  fflush ( g_hTrace );
103}
104
105#else
106
107#define READ_CODE(length, code, name)     xReadCode ( length, code )
108#define READ_UVLC(        code, name)     xReadUvlc (         code )
109#define READ_SVLC(        code, name)     xReadSvlc (         code )
110#define READ_FLAG(        code, name)     xReadFlag (         code )
111
112#endif
113
114
115
116// ====================================================================================================================
117// Constructor / destructor / create / destroy
118// ====================================================================================================================
119
120TDecCavlc::TDecCavlc()
121{
122  m_iSliceGranularity = 0;
123
124  m_aaiTempScale            = new Int* [ MAX_VIEW_NUM ];
125  m_aaiTempOffset           = new Int* [ MAX_VIEW_NUM ];
126  m_aaiTempPdmScaleNomDelta = new Int* [ MAX_VIEW_NUM ];
127  m_aaiTempPdmOffset        = new Int* [ MAX_VIEW_NUM ];
128  for( UInt uiVId = 0; uiVId < MAX_VIEW_NUM; uiVId++ )
129  {
130    m_aaiTempScale            [ uiVId ] = new Int [ MAX_VIEW_NUM ];
131    m_aaiTempOffset           [ uiVId ] = new Int [ MAX_VIEW_NUM ];
132    m_aaiTempPdmScaleNomDelta [ uiVId ] = new Int [ MAX_VIEW_NUM ];
133    m_aaiTempPdmOffset        [ uiVId ] = new Int [ MAX_VIEW_NUM ];
134  }
135}
136
137TDecCavlc::~TDecCavlc()
138{
139  for( UInt uiVId = 0; uiVId < MAX_VIEW_NUM; uiVId++ )
140  {
141    delete [] m_aaiTempScale            [ uiVId ];
142    delete [] m_aaiTempOffset           [ uiVId ];
143    delete [] m_aaiTempPdmScaleNomDelta [ uiVId ];
144    delete [] m_aaiTempPdmOffset        [ uiVId ];
145  }
146  delete [] m_aaiTempScale;
147  delete [] m_aaiTempOffset;
148  delete [] m_aaiTempPdmScaleNomDelta;
149  delete [] m_aaiTempPdmOffset;
150}
151
152// ====================================================================================================================
153// Public member functions
154// ====================================================================================================================
155
156/**
157 * unmarshal a sequence of SEI messages from bitstream.
158 */
159void TDecCavlc::parseSEI(SEImessages& seis)
160{
161  assert(!m_pcBitstream->getNumBitsUntilByteAligned());
162  do
163  {
164    parseSEImessage(*m_pcBitstream, seis);
165    /* SEI messages are an integer number of bytes, something has failed
166     * in the parsing if bitstream not byte-aligned */
167    assert(!m_pcBitstream->getNumBitsUntilByteAligned());
168  } while (0x80 != m_pcBitstream->peekBits(8));
169  assert(m_pcBitstream->getNumBitsLeft() == 8); /* rsbp_trailing_bits */
170}
171void TDecCavlc::parseShortTermRefPicSet( TComSPS* sps, TComReferencePictureSet* rps, Int idx )
172{
173  UInt code;
174  UInt interRPSPred;
175  READ_FLAG(interRPSPred, "inter_ref_pic_set_prediction_flag");  rps->setInterRPSPrediction(interRPSPred);
176  if (interRPSPred) 
177  {
178    UInt bit;
179    READ_UVLC(code, "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1
180    Int rIdx =  idx - 1 - code;
181    assert (rIdx <= idx && rIdx >= 0);
182    TComReferencePictureSet*   rpsRef = sps->getRPSList()->getReferencePictureSet(rIdx);
183    Int k = 0, k0 = 0, k1 = 0;
184    READ_CODE(1, bit, "delta_rps_sign"); // delta_RPS_sign
185    READ_UVLC(code, "abs_delta_rps_minus1");  // absolute delta RPS minus 1
186    Int deltaRPS = (1 - (bit<<1)) * (code + 1); // delta_RPS
187    for(Int j=0 ; j <= rpsRef->getNumberOfPictures(); j++)
188    {
189      READ_CODE(1, bit, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1
190      Int refIdc = bit;
191      if (refIdc == 0) 
192      {
193        READ_CODE(1, bit, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise.
194        refIdc = bit<<1; //second bit is "1" if refIdc is 2, "0" if refIdc = 0.
195      }
196      if (refIdc == 1 || refIdc == 2)
197      {
198        Int deltaPOC = deltaRPS + ((j < rpsRef->getNumberOfPictures())? rpsRef->getDeltaPOC(j) : 0);
199        rps->setDeltaPOC(k, deltaPOC);
200        rps->setUsed(k, (refIdc == 1));
201
202        if (deltaPOC < 0) {
203          k0++;
204        }
205        else 
206        {
207          k1++;
208        }
209        k++;
210      } 
211      rps->setRefIdc(j,refIdc); 
212    }
213    rps->setNumRefIdc(rpsRef->getNumberOfPictures()+1); 
214    rps->setNumberOfPictures(k);
215    rps->setNumberOfNegativePictures(k0);
216    rps->setNumberOfPositivePictures(k1);
217    rps->sortDeltaPOC();
218  }
219  else
220  {
221    READ_UVLC(code, "num_negative_pics");           rps->setNumberOfNegativePictures(code);
222    READ_UVLC(code, "num_positive_pics");           rps->setNumberOfPositivePictures(code);
223    Int prev = 0;
224    Int poc;
225    for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++)
226    {
227      READ_UVLC(code, "delta_poc_s0_minus1");
228      poc = prev-code-1;
229      prev = poc;
230      rps->setDeltaPOC(j,poc);
231      READ_FLAG(code, "used_by_curr_pic_s0_flag");  rps->setUsed(j,code);
232    }
233    prev = 0;
234    for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++)
235    {
236      READ_UVLC(code, "delta_poc_s1_minus1");
237      poc = prev+code+1;
238      prev = poc;
239      rps->setDeltaPOC(j,poc);
240      READ_FLAG(code, "used_by_curr_pic_s1_flag");  rps->setUsed(j,code);
241    }
242    rps->setNumberOfPictures(rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures());
243  }
244#if PRINT_RPS_INFO
245  rps->printDeltaPOC();
246#endif
247}
248
249Void TDecCavlc::parseAPS(TComAPS* aps)
250{
251#if ENC_DEC_TRACE 
252  xTraceAPSHeader(aps);
253#endif
254
255  UInt uiCode;
256  READ_UVLC(uiCode, "aps_id");                             aps->setAPSID(uiCode);
257  READ_FLAG(uiCode, "aps_scaling_list_data_present_flag"); aps->setScalingListEnabled( (uiCode==1)?true:false );
258  READ_FLAG(uiCode, "aps_deblocking_filter_flag");         aps->setLoopFilterOffsetInAPS( (uiCode==1)?true:false );
259  if(aps->getScalingListEnabled())
260  {
261    parseScalingList( aps->getScalingList() );
262  }
263  if(aps->getLoopFilterOffsetInAPS())
264  {
265    xParseDblParam( aps );   
266  }
267  READ_FLAG(uiCode, "aps_sao_interleaving_flag");      aps->setSaoInterleavingFlag( (uiCode==1)?true:false );
268  if(!aps->getSaoInterleavingFlag())
269  {
270    READ_FLAG(uiCode, "aps_sample_adaptive_offset_flag");      aps->setSaoEnabled( (uiCode==1)?true:false );
271  if(aps->getSaoEnabled())
272  {
273    aps->getSaoParam()->bSaoFlag[0] = true;
274    xParseSaoParam( aps->getSaoParam() );
275  }
276  }
277  READ_FLAG(uiCode, "aps_adaptive_loop_filter_flag");      aps->setAlfEnabled( (uiCode==1)?true:false );
278  if(aps->getAlfEnabled())
279  {
280    xParseAlfParam( aps->getAlfParam());
281  }
282  READ_FLAG( uiCode, "aps_extension_flag");
283  if (uiCode)
284  {
285    while ( xMoreRbspData() )
286    {
287      READ_FLAG( uiCode, "aps_extension_data_flag");
288    }
289  }
290
291}
292
293Void  TDecCavlc::xParseDblParam       ( TComAPS* aps )
294{
295  UInt uiSymbol;
296  Int iSymbol;
297
298  parseDFFlag(uiSymbol, "loop_filter_disable");
299  aps->setLoopFilterDisable(uiSymbol?true:false);
300
301  if (!aps->getLoopFilterDisable())
302  {
303    parseDFSvlc(iSymbol, "beta_offset_div2");
304    aps->setLoopFilterBetaOffset(iSymbol);
305    parseDFSvlc(iSymbol, "tc_offset_div2");
306    aps->setLoopFilterTcOffset(iSymbol);
307  }
308}
309/** parse SAO parameters
310 * \param pSaoParam
311 */
312Void TDecCavlc::xParseSaoParam(SAOParam* pSaoParam)
313{
314  UInt uiSymbol;
315
316  int i,j, compIdx; 
317  int numCuInWidth; 
318  int numCuInHeight; 
319  Bool repeatedRow[3];
320  if (pSaoParam->bSaoFlag[0])                                                                   
321  {     
322    READ_FLAG (uiSymbol, "sao_cb_enable_flag");            pSaoParam->bSaoFlag[1]   = uiSymbol? true:false; 
323    READ_FLAG (uiSymbol, "sao_cr_enable_flag");            pSaoParam->bSaoFlag[2]   = uiSymbol? true:false; 
324    READ_UVLC (uiSymbol, "sao_num_lcu_in_width_minus1");   pSaoParam->numCuInWidth  = uiSymbol + 1;                         
325    READ_UVLC (uiSymbol, "sao_num_lcu_in_height_minus1");  pSaoParam->numCuInHeight = uiSymbol + 1;                         
326    numCuInWidth  = pSaoParam->numCuInWidth;
327    numCuInHeight = pSaoParam->numCuInHeight;
328
329    READ_FLAG (uiSymbol, "sao_one_luma_unit_flag");  pSaoParam->oneUnitFlag[0] = uiSymbol? true:false; 
330    if (pSaoParam->oneUnitFlag[0] )
331      xParseSaoOffset(&(pSaoParam->saoLcuParam[0][0]));
332
333    if (pSaoParam->bSaoFlag[1])
334    {
335      READ_FLAG (uiSymbol, "sao_one_cb_unit_flag");  pSaoParam->oneUnitFlag[1] = uiSymbol? true:false; 
336      if (pSaoParam->oneUnitFlag[1] )
337        xParseSaoOffset(&(pSaoParam->saoLcuParam[1][0]));
338    }
339    if (pSaoParam->bSaoFlag[2])
340    {
341      READ_FLAG (uiSymbol, "sao_one_cr_unit_flag");  pSaoParam->oneUnitFlag[2] = uiSymbol? true:false; 
342      if (pSaoParam->oneUnitFlag[2] )
343        xParseSaoOffset(&(pSaoParam->saoLcuParam[2][0]));
344    }
345    for (j=0;j<numCuInHeight;j++)
346    {
347      for (compIdx=0;compIdx<3;compIdx++)
348      {
349        repeatedRow[compIdx] = 0;
350      }
351      for (i=0;i<numCuInWidth;i++)
352      {
353        for (compIdx=0; compIdx<3; compIdx++)
354        {
355          if (pSaoParam->bSaoFlag[compIdx]  && !pSaoParam->oneUnitFlag[compIdx]) 
356          {
357            if (j>0 && i==0) 
358            {
359              READ_FLAG (uiSymbol, "sao_repeat_row_flag");  repeatedRow[compIdx] = uiSymbol? true:false; 
360            }
361            xParseSaoUnit (i,j, compIdx, pSaoParam, repeatedRow[compIdx]);
362          }
363        }
364      }
365    }
366  }
367}
368/** copy SAO parameter
369 * \param dst 
370 * \param src
371 */
372inline Void copySaoOneLcuParam(SaoLcuParam* dst,  SaoLcuParam* src)
373{
374  Int i;
375  dst->partIdx = src->partIdx;
376  dst->typeIdx = src->typeIdx;
377  if (dst->typeIdx != -1)
378  {
379    if (dst->typeIdx == SAO_BO)
380    {
381      dst->bandPosition = src->bandPosition ;
382    }
383    else
384    {
385      dst->bandPosition = 0;
386    }
387    dst->length  = src->length;
388    for (i=0;i<dst->length;i++)
389    {
390      dst->offset[i] = src->offset[i];
391    }
392  }
393  else
394  {
395    dst->length  = 0;
396    for (i=0;i<SAO_BO_LEN;i++)
397    {
398      dst->offset[i] = 0;
399    }
400  }
401}
402/** parse SAO offset
403 * \param saoLcuParam SAO LCU parameters
404 */
405Void TDecCavlc::xParseSaoOffset(SaoLcuParam* saoLcuParam)
406{
407  UInt uiSymbol;
408  Int iSymbol;
409  static Int typeLength[MAX_NUM_SAO_TYPE] = {
410    SAO_EO_LEN,
411    SAO_EO_LEN,
412    SAO_EO_LEN,
413    SAO_EO_LEN,
414    SAO_BO_LEN
415  }; 
416
417  READ_UVLC (uiSymbol, "sao_type_idx");   saoLcuParam->typeIdx = (Int)uiSymbol - 1;       
418  if (uiSymbol)
419  {
420    saoLcuParam->length = typeLength[saoLcuParam->typeIdx];
421    if( saoLcuParam->typeIdx == SAO_BO )
422    {
423      READ_CODE( 5, uiSymbol, "sao_band_position"); saoLcuParam->bandPosition = uiSymbol; 
424      for(Int i=0; i< saoLcuParam->length; i++)
425      {
426        READ_SVLC (iSymbol, "sao_offset");    saoLcuParam->offset[i] = iSymbol;   
427      }   
428    }
429    else if( saoLcuParam->typeIdx < 4 )
430    {
431      READ_UVLC (uiSymbol, "sao_offset");  saoLcuParam->offset[0] = uiSymbol;
432      READ_UVLC (uiSymbol, "sao_offset");  saoLcuParam->offset[1] = uiSymbol;
433      READ_UVLC (uiSymbol, "sao_offset");  saoLcuParam->offset[2] = -(Int)uiSymbol;
434      READ_UVLC (uiSymbol, "sao_offset");  saoLcuParam->offset[3] = -(Int)uiSymbol;
435    }
436  }
437  else
438  {
439    saoLcuParam->length = 0;
440  }
441}
442
443/** parse SAO unit
444 * \param rx x-axis location
445 * \param ry y-axis location
446 * \param compIdx color component index
447 * \param saoParam SAO parameters
448 * \param repeatedRow repeat row flag
449 */
450void TDecCavlc::xParseSaoUnit(Int rx, Int ry, Int compIdx, SAOParam* saoParam, Bool& repeatedRow )
451{
452  int addr, addrUp, addrLeft; 
453  int numCuInWidth  = saoParam->numCuInWidth;
454  SaoLcuParam* saoOneLcu;
455  SaoLcuParam* saoOneLcuUp;
456  SaoLcuParam* saoOneLcuLeft;
457  UInt uiSymbol;
458  Int  iSymbol;
459  Int  runLeft;
460  UInt maxValue;
461
462  addr      =  rx + ry*numCuInWidth;
463  addrLeft  =  (addr%numCuInWidth == 0) ? -1 : addr - 1;
464  addrUp    =  (addr<numCuInWidth)      ? -1 : addr - numCuInWidth;
465
466  saoOneLcu = &(saoParam->saoLcuParam[compIdx][addr]);     
467  if (!repeatedRow)
468  {
469    runLeft = (addrLeft>=0 )  ? saoParam->saoLcuParam[compIdx][addrLeft].run : -1;
470    if (rx == 0 || runLeft==0)
471    {
472      saoOneLcu->mergeLeftFlag = 0;
473      if (ry == 0)
474      {
475        maxValue = numCuInWidth-rx-1;
476        UInt length = 0;
477        UInt val = 0;
478        if (maxValue)
479        {
480          for(UInt i=0; i<32; i++)
481          {
482            if(maxValue&0x1)
483            {
484              length = i+1;
485            }
486            maxValue = (maxValue >> 1);
487          }
488          if(length)
489          {
490            READ_CODE(length, val, "sao_run_diff");
491          }
492        }
493        uiSymbol = val;
494        saoOneLcu->runDiff = uiSymbol; 
495        xParseSaoOffset(saoOneLcu);
496        saoOneLcu->run = saoOneLcu->runDiff;
497      }
498      else 
499      {
500        saoOneLcuUp = &(saoParam->saoLcuParam[compIdx][addrUp]);
501        READ_SVLC (iSymbol , "sao_run_diff"     );  saoOneLcu->runDiff = iSymbol; 
502        READ_FLAG (uiSymbol, "sao_merge_up_flag");  saoOneLcu->mergeUpFlag   = uiSymbol? true:false;
503        if (!saoOneLcu->mergeUpFlag)
504        {
505          xParseSaoOffset(saoOneLcu);
506        }
507        else
508        {
509          saoOneLcuUp = &(saoParam->saoLcuParam[compIdx][addrUp]);
510          copySaoOneLcuParam(saoOneLcu, saoOneLcuUp);
511        }
512        saoOneLcu->run = saoOneLcu->runDiff + saoOneLcuUp->run;
513      }
514    }
515    else
516    {
517      saoOneLcuLeft = &(saoParam->saoLcuParam[compIdx][addrLeft]);
518      copySaoOneLcuParam(saoOneLcu, saoOneLcuLeft);
519      saoOneLcu->mergeLeftFlag = 1;
520      saoOneLcu->run = saoOneLcuLeft->run-1;
521    }
522  }
523  else
524  {
525    if (ry > 0)
526    {
527      saoOneLcuUp = &(saoParam->saoLcuParam[compIdx][addrUp]);
528      copySaoOneLcuParam(saoOneLcu, saoOneLcuUp);
529      saoOneLcu->mergeLeftFlag = 0;
530      saoOneLcu->run = saoOneLcuUp->run;
531    }
532  }
533}
534
535
536Void TDecCavlc::xParseAlfParam(AlfParamSet* pAlfParamSet, Bool bSentInAPS, Int firstLCUAddr, Bool acrossSlice, Int numLCUInWidth, Int numLCUInHeight)
537{
538  Int  numLCU;
539  UInt uiSymbol;
540  Bool isEnabled[NUM_ALF_COMPONENT];
541  Bool isUniParam[NUM_ALF_COMPONENT];
542 
543  isEnabled[ALF_Y] = true;
544  READ_FLAG(uiSymbol, "alf_cb_enable_flag");  isEnabled[ALF_Cb] = ((uiSymbol ==1)?true:false);
545  READ_FLAG(uiSymbol, "alf_cr_enable_flag");  isEnabled[ALF_Cr] = ((uiSymbol ==1)?true:false);
546  READ_FLAG(uiSymbol, "alf_one_luma_unit_per_slice_flag");   isUniParam[ALF_Y] = ((uiSymbol ==1)?true:false);
547 
548  isUniParam[ALF_Cb] = true;
549  if (isEnabled[ALF_Cb])
550  {
551    READ_FLAG(uiSymbol, "alf_one_cb_unit_per_slice_flag");   isUniParam[ALF_Cb] = ((uiSymbol ==1)?true:false);
552  }
553 
554  isUniParam[ALF_Cr] = true;
555  if (isEnabled[ALF_Cr])
556  {
557    READ_FLAG(uiSymbol, "alf_one_cr_unit_per_slice_flag");   isUniParam[ALF_Cr] = ((uiSymbol ==1)?true:false);
558  }
559 
560  if(bSentInAPS)
561  {
562    READ_UVLC(uiSymbol, "alf_num_lcu_in_width_minus1");  numLCUInWidth = uiSymbol+1;
563    READ_UVLC(uiSymbol, "alf_num_lcu_in_height_minus1");  numLCUInHeight = uiSymbol+1;
564    numLCU = numLCUInWidth*numLCUInHeight;
565  }
566  else //sent in slice header
567  {
568    READ_UVLC(uiSymbol, "alf_num_lcu_in_slice_minus1");  numLCU = uiSymbol+1;
569  }
570 
571  assert(pAlfParamSet != NULL);
572 
573  pAlfParamSet->create(numLCUInWidth, numLCUInHeight, numLCU);
574  for(Int compIdx = 0; compIdx < NUM_ALF_COMPONENT; compIdx++)
575  {
576    pAlfParamSet->isEnabled[compIdx] = isEnabled[compIdx];
577    pAlfParamSet->isUniParam[compIdx]= isUniParam[compIdx];
578  }
579 
580  parseAlfParamSet(pAlfParamSet, firstLCUAddr, acrossSlice);
581}
582
583
584Void TDecCavlc::parseAlfParamSet(AlfParamSet* pAlfParamSet, Int firstLCUAddr, Bool alfAcrossSlice)
585{
586  Int numLCUInWidth = pAlfParamSet->numLCUInWidth;
587  Int numLCU        = pAlfParamSet->numLCU;
588 
589  static Bool isRepeatedRow   [NUM_ALF_COMPONENT];
590  static Int  numStoredFilters[NUM_ALF_COMPONENT];
591  static Int* run             [NUM_ALF_COMPONENT];
592 
593  for(Int compIdx =0; compIdx < NUM_ALF_COMPONENT; compIdx++)
594  {
595    isRepeatedRow[compIdx]    = false;
596    numStoredFilters[compIdx] = 0;
597   
598    run[compIdx] = new Int[numLCU+1];
599    run[compIdx][0] = -1; 
600  }
601 
602  UInt uiSymbol;
603  Int  iSymbol, ry, rx, addrUp;
604 
605  for(Int i=0; i< numLCU; i++)
606  {
607    rx    = (i+ firstLCUAddr)% numLCUInWidth;
608    ry    = (i+ firstLCUAddr)/ numLCUInWidth;
609   
610    for(Int compIdx =0; compIdx < NUM_ALF_COMPONENT; compIdx++)
611    {
612      AlfUnitParam& alfUnitParam = pAlfParamSet->alfUnitParam[compIdx][i];
613     
614      if(pAlfParamSet->isEnabled[compIdx])
615      {
616        if(!pAlfParamSet->isUniParam[compIdx])
617        {
618          addrUp = i-numLCUInWidth;
619          if(rx ==0 && addrUp >=0)
620          {
621            READ_FLAG(uiSymbol, "alf_repeat_row _flag"); isRepeatedRow[compIdx] = ((uiSymbol ==1)?true:false);
622          }
623         
624          if(isRepeatedRow[compIdx])
625          {
626            alfUnitParam.mergeType = ALF_MERGE_UP;
627            assert(addrUp >=0);
628            run[compIdx][i] = run[compIdx][addrUp];
629          }
630          else
631          {
632            if(rx == 0 || run[compIdx][i] < 0)
633            {             
634              if(addrUp < 0)
635              {
636                //alf_run_diff u(v)
637                parseAlfFixedLengthRun(uiSymbol, rx, numLCUInWidth);
638                run[compIdx][i] = uiSymbol;
639              }
640              else
641              {
642                //alf_run_diff s(v)
643                READ_SVLC(iSymbol, "alf_run_diff");
644                run[compIdx][i] = run[compIdx][addrUp] + iSymbol;
645                assert(run[compIdx][i] >= 0);
646              }
647             
648              if(ry > 0 && (addrUp >=0 || alfAcrossSlice))
649              {
650                //alf_merge_up_flag
651                READ_FLAG(uiSymbol, "alf_merge_up_flag");  alfUnitParam.mergeType = ((uiSymbol ==1)?ALF_MERGE_UP:ALF_MERGE_DISABLED);
652              }
653              else
654              {
655                alfUnitParam.mergeType = ALF_MERGE_DISABLED;
656              }
657             
658              if(alfUnitParam.mergeType != ALF_MERGE_UP)
659              {
660                //alf_lcu_enable_flag
661                READ_FLAG(uiSymbol, "alf_lcu_enable_flag");  alfUnitParam.isEnabled = ((uiSymbol ==1)?true:false);
662               
663                if(alfUnitParam.isEnabled)
664                {
665                  if(numStoredFilters[compIdx] > 0)
666                  {
667                    //alf_new_filter_set_flag
668                    READ_FLAG(uiSymbol, "alf_new_filter_set_flag");  alfUnitParam.isNewFilt = ((uiSymbol ==1)?true:false);
669                   
670                    if(!alfUnitParam.isNewFilt)
671                    {
672                      //alf_stored_filter_set_idx
673                      parseAlfStoredFilterIdx(uiSymbol, numStoredFilters[compIdx]);
674                     
675                      alfUnitParam.storedFiltIdx = uiSymbol;
676                     
677                      assert( alfUnitParam.storedFiltIdx < numStoredFilters[compIdx]);
678                    }
679                  }
680                  else
681                  {
682                    alfUnitParam.isNewFilt = true;
683                  }
684                 
685                  if(alfUnitParam.isNewFilt)
686                  {
687                    alfUnitParam.alfFiltParam = new ALFParam(compIdx);
688                    xParseAlfParam(alfUnitParam.alfFiltParam);
689                    alfUnitParam.alfFiltParam->alf_flag = 1;
690                   
691                    numStoredFilters[compIdx]++;
692                  }
693                }
694               
695              }
696            }
697            else
698            {
699              alfUnitParam.mergeType = ALF_MERGE_LEFT;
700            }
701           
702            run[compIdx][i+1] = run[compIdx][i] -1;
703          }
704         
705        }
706        else // uni-param
707        {
708          if(i == 0)
709          {
710            alfUnitParam.mergeType = ALF_MERGE_DISABLED;
711           
712            //alf_lcu_enable_flag
713            READ_FLAG(uiSymbol, "alf_lcu_enable_flag");  alfUnitParam.isEnabled = ((uiSymbol ==1)?true:false);
714            if(alfUnitParam.isEnabled)
715            {
716              alfUnitParam.isNewFilt = true;
717              alfUnitParam.alfFiltParam = new ALFParam(compIdx);
718              xParseAlfParam(alfUnitParam.alfFiltParam);
719              alfUnitParam.alfFiltParam->alf_flag = 1;
720            }
721          }
722          else
723          {
724            alfUnitParam.mergeType = ALF_MERGE_FIRST;
725          }
726         
727        }
728      }
729      else
730      {
731        alfUnitParam.mergeType = ALF_MERGE_DISABLED;
732        alfUnitParam.isEnabled = false;
733      }
734    }
735  }
736 
737  for(Int compIdx =0; compIdx < NUM_ALF_COMPONENT; compIdx++)
738  {
739    delete[] run[compIdx];
740  }
741}
742
743
744Void TDecCavlc::parseAlfFixedLengthRun( UInt& idx, UInt rx, UInt numLCUInWidth )
745{
746  assert(numLCUInWidth > rx);
747 
748  UInt length = 0; 
749  UInt maxNumRun = numLCUInWidth - rx - 1; 
750 
751  for(UInt i=0; i<32; i++)
752  {
753    if(maxNumRun&0x1)
754    {
755      length = i+1;
756    }
757    maxNumRun = (maxNumRun >> 1);
758  }
759 
760  idx = 0;
761  if(length)
762  {
763    READ_CODE( length, idx, "alf_run_diff" );
764  }
765  else
766  {
767    idx = 0;
768  }
769}
770
771
772Void TDecCavlc::parseAlfStoredFilterIdx( UInt& idx, UInt numFilterSetsInBuffer )
773{
774  assert(numFilterSetsInBuffer > 0);
775 
776  UInt length = 0; 
777  UInt maxValue = numFilterSetsInBuffer - 1;
778 
779  for(UInt i=0; i<32; i++)
780  {
781    if(maxValue&0x1)
782    {
783      length = i+1;
784    }
785    maxValue = (maxValue >> 1);
786  }
787 
788  idx = 0;
789  if(length)
790  {
791    READ_CODE( length, idx, "alf_stored_filter_set_idx" );
792  }
793  else
794  {
795    idx = 0;
796  }
797}
798
799
800Void TDecCavlc::xParseAlfParam(ALFParam* pAlfParam)
801{
802  UInt uiSymbol;
803  Int iSymbol;
804  Int sqrFiltLengthTab[NUM_ALF_FILTER_SHAPE] = {ALF_FILTER_LEN}; 
805
806  switch(pAlfParam->componentID)
807  {
808  case ALF_Cb:
809  case ALF_Cr:
810    {
811      pAlfParam->filter_shape = ALF_CROSS9x7_SQUARE3x3;
812      pAlfParam->num_coeff = sqrFiltLengthTab[pAlfParam->filter_shape];
813      pAlfParam->filters_per_group = 1;
814      for(Int pos=0; pos< pAlfParam->num_coeff; pos++)
815      {
816        READ_SVLC(iSymbol, "alf_filt_coeff");
817        pAlfParam->coeffmulti[0][pos] = iSymbol;
818      }
819    }
820    break;
821  case ALF_Y:
822    {
823  pAlfParam->filters_per_group = 0;
824  memset (pAlfParam->filterPattern, 0 , sizeof(Int)*NO_VAR_BINS);
825  pAlfParam->filter_shape = 0;
826  pAlfParam->num_coeff = sqrFiltLengthTab[pAlfParam->filter_shape];
827
828  // filters_per_fr
829  READ_UVLC (uiSymbol, "alf_no_filters_minus1");
830  pAlfParam->filters_per_group = uiSymbol + 1;
831
832  if(uiSymbol == 1) // filters_per_group == 2
833  {
834    READ_UVLC (uiSymbol, "alf_start_second_filter");
835    pAlfParam->startSecondFilter = uiSymbol;
836    pAlfParam->filterPattern [uiSymbol] = 1;
837  }
838  else if (uiSymbol > 1) // filters_per_group > 2
839  {
840    pAlfParam->filters_per_group = 1;
841    Int numMergeFlags = 16;
842    for (Int i=1; i<numMergeFlags; i++) 
843    {
844      READ_FLAG (uiSymbol,  "alf_filter_pattern");
845      pAlfParam->filterPattern[i] = uiSymbol;
846      pAlfParam->filters_per_group += uiSymbol;
847    }
848  }
849
850  if (pAlfParam->filters_per_group > 1)
851  {
852    READ_FLAG (uiSymbol, "alf_pred_method");
853    pAlfParam->predMethod = uiSymbol;
854  }
855  for(Int idx = 0; idx < pAlfParam->filters_per_group; ++idx)
856  {
857    READ_FLAG (uiSymbol,"alf_nb_pred_luma");
858    pAlfParam->nbSPred[idx] = uiSymbol;
859  }
860
861  Int minScanVal = MIN_SCAN_POS_CROSS;
862
863  // Determine maxScanVal
864  Int maxScanVal = 0;
865  Int *pDepthInt = pDepthIntTabShapes[pAlfParam->filter_shape];
866  for(Int idx = 0; idx < pAlfParam->num_coeff; idx++)
867  {
868    maxScanVal = max(maxScanVal, pDepthInt[idx]);
869  }
870
871  // Golomb parameters
872  if( pAlfParam->filters_per_group > 1 )
873  {
874  READ_UVLC (uiSymbol, "alf_min_kstart_minus1");
875  pAlfParam->minKStart = 1 + uiSymbol;
876
877  Int kMin = pAlfParam->minKStart;
878
879  for(Int scanPos = minScanVal; scanPos < maxScanVal; scanPos++)
880  {
881    READ_FLAG (uiSymbol, "alf_golomb_index_bit");
882    pAlfParam->kMinTab[scanPos] = kMin + uiSymbol;
883    kMin = pAlfParam->kMinTab[scanPos];
884  }
885  }
886
887  Int scanPos;
888  for(Int idx = 0; idx < pAlfParam->filters_per_group; ++idx)
889  {
890    for(Int i = 0; i < pAlfParam->num_coeff; i++)
891    {
892      scanPos = pDepthInt[i] - 1;
893      Int k = (pAlfParam->filters_per_group == 1) ? kTableTabShapes[ALF_CROSS9x7_SQUARE3x3][i] : pAlfParam->kMinTab[scanPos];
894      pAlfParam->coeffmulti[idx][i] = xGolombDecode(k);
895    }
896  }
897    }
898    break;
899  default:
900    {
901      printf("Not a legal component ID for ALF\n");
902      assert(0);
903      exit(-1);
904    }
905  }
906}
907
908Int TDecCavlc::xGolombDecode(Int k)
909{
910  UInt uiSymbol;
911  Int q = -1;
912  Int nr = 0;
913  Int a;
914
915  uiSymbol = 1;
916  while (uiSymbol)
917  {
918    xReadFlag(uiSymbol);
919    q++;
920  }
921  for(a = 0; a < k; ++a)          // read out the sequential log2(M) bits
922  {
923    xReadFlag(uiSymbol);
924    if(uiSymbol)
925      nr += 1 << a;
926  }
927  nr += q << k;
928  if(nr != 0)
929  {
930    xReadFlag(uiSymbol);
931    nr = (uiSymbol)? nr: -nr;
932  }
933#if ENC_DEC_TRACE
934  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
935  fprintf( g_hTrace, "%-40s ge(v) : %d\n", "alf_coeff_luma", nr ); 
936#endif
937  return nr;
938}
939
940Void TDecCavlc::parsePPS(TComPPS* pcPPS, ParameterSetManagerDecoder *parameterSet)
941{
942#if ENC_DEC_TRACE 
943  xTracePPSHeader (pcPPS);
944#endif
945  UInt  uiCode;
946
947  Int   iCode;
948
949  READ_UVLC( uiCode, "pic_parameter_set_id");                      pcPPS->setPPSId (uiCode);
950  READ_UVLC( uiCode, "seq_parameter_set_id");                      pcPPS->setSPSId (uiCode);
951
952  READ_FLAG ( uiCode, "sign_data_hiding_flag" ); pcPPS->setSignHideFlag( uiCode );
953  if( pcPPS->getSignHideFlag() )
954  {
955    READ_CODE( 4, uiCode, "sign_hiding_threshold"); pcPPS->setTSIG(uiCode);
956  }
957
958#if CABAC_INIT_FLAG
959  READ_FLAG( uiCode,   "cabac_init_present_flag" );            pcPPS->setCabacInitPresentFlag( uiCode ? true : false );
960#endif
961  // entropy_coding_mode_flag
962  // We code the entropy_coding_mode_flag, it's needed for tests.
963  READ_FLAG( uiCode, "entropy_coding_mode_flag" );                 pcPPS->setEntropyCodingMode( uiCode ? true : false );
964  if (pcPPS->getEntropyCodingMode())
965  {
966  }
967 
968  // num_ref_idx_l0_default_active_minus1
969  // num_ref_idx_l1_default_active_minus1
970  READ_SVLC(iCode, "pic_init_qp_minus26" );                        pcPPS->setPicInitQPMinus26(iCode);
971  READ_FLAG( uiCode, "constrained_intra_pred_flag" );              pcPPS->setConstrainedIntraPred( uiCode ? true : false );
972  READ_FLAG( uiCode, "enable_temporal_mvp_flag" );                 pcPPS->setEnableTMVPFlag( uiCode ? true : false );
973  READ_CODE( 2, uiCode, "slice_granularity" );                     pcPPS->setSliceGranularity(uiCode);
974
975  // alf_param() ?
976
977  READ_UVLC( uiCode, "max_cu_qp_delta_depth");
978  if(uiCode == 0)
979  {
980    pcPPS->setUseDQP (false);
981    pcPPS->setMaxCuDQPDepth( 0 );
982  }
983  else
984  {
985    pcPPS->setUseDQP (true);
986    pcPPS->setMaxCuDQPDepth(uiCode - 1);
987  }
988
989  READ_SVLC( iCode, "chroma_qp_offset");
990  pcPPS->setChromaQpOffset(iCode);
991
992  READ_SVLC( iCode, "chroma_qp_offset_2nd");
993  pcPPS->setChromaQpOffset2nd(iCode);
994
995  READ_FLAG( uiCode, "weighted_pred_flag" );          // Use of Weighting Prediction (P_SLICE)
996  pcPPS->setUseWP( uiCode==1 );
997  READ_CODE( 2, uiCode, "weighted_bipred_idc" );      // Use of Bi-Directional Weighting Prediction (B_SLICE)
998  pcPPS->setWPBiPredIdc( uiCode );
999//printf("TDecCavlc::parsePPS():\tm_bUseWeightPred=%d\tm_uiBiPredIdc=%d\n", pcPPS->getUseWP(), pcPPS->getWPBiPredIdc());
1000
1001  READ_FLAG( uiCode, "output_flag_present_flag" );
1002  pcPPS->setOutputFlagPresentFlag( uiCode==1 );
1003
1004  if(parameterSet->getPrefetchedSPS(pcPPS->getSPSId())->getTilesOrEntropyCodingSyncIdc()==1)
1005  {
1006    READ_FLAG ( uiCode, "tile_info_present_flag" );
1007    pcPPS->setColumnRowInfoPresent(uiCode);
1008    READ_FLAG ( uiCode, "tile_control_present_flag" );
1009    pcPPS->setTileBehaviorControlPresentFlag(uiCode);
1010    if( pcPPS->getColumnRowInfoPresent() == 1 )
1011    {
1012      READ_UVLC ( uiCode, "num_tile_columns_minus1" );   
1013      pcPPS->setNumColumnsMinus1( uiCode ); 
1014      READ_UVLC ( uiCode, "num_tile_rows_minus1" ); 
1015      pcPPS->setNumRowsMinus1( uiCode ); 
1016      READ_FLAG ( uiCode, "uniform_spacing_flag" ); 
1017      pcPPS->setUniformSpacingIdr( uiCode );
1018
1019      if( pcPPS->getUniformSpacingIdr() == 0 )
1020      {
1021        UInt* columnWidth = (UInt*)malloc(pcPPS->getNumColumnsMinus1()*sizeof(UInt));
1022        for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++)
1023        { 
1024          READ_UVLC( uiCode, "column_width" ); 
1025          columnWidth[i] = uiCode; 
1026        }
1027        pcPPS->setColumnWidth(columnWidth);
1028        free(columnWidth);
1029
1030        UInt* rowHeight = (UInt*)malloc(pcPPS->getNumRowsMinus1()*sizeof(UInt));
1031        for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++)
1032        {
1033          READ_UVLC( uiCode, "row_height" ); 
1034          rowHeight[i] = uiCode; 
1035        }
1036        pcPPS->setRowHeight(rowHeight);
1037        free(rowHeight); 
1038      }
1039    }
1040
1041
1042    if(pcPPS->getTileBehaviorControlPresentFlag() == 1)
1043    {
1044      Int iNumColTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumColumnsMinus1());
1045      Int iNumRowTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumRowsMinus1());
1046      pcPPS->setLFCrossTileBoundaryFlag(true); //default
1047
1048      if(iNumColTilesMinus1 !=0 || iNumRowTilesMinus1 !=0)
1049      {
1050          READ_FLAG ( uiCode, "loop_filter_across_tile_flag" ); 
1051          pcPPS->setLFCrossTileBoundaryFlag( (uiCode == 1)?true:false );
1052      }
1053    }
1054  }
1055  else if(parameterSet->getPrefetchedSPS(pcPPS->getSPSId())->getTilesOrEntropyCodingSyncIdc()==2)
1056  {
1057    READ_UVLC( uiCode, "num_substreams_minus1" );                pcPPS->setNumSubstreams(uiCode+1);
1058  }
1059
1060  READ_FLAG( uiCode, "deblocking_filter_control_present_flag" ); 
1061  pcPPS->setDeblockingFilterControlPresent( uiCode ? true : false);
1062  READ_UVLC( uiCode, "log2_parallel_merge_level_minus2");
1063  assert(uiCode == LOG2_PARALLEL_MERGE_LEVEL_MINUS2);
1064  pcPPS->setLog2ParallelMergeLevelMinus2 (uiCode);
1065
1066  READ_FLAG( uiCode, "pps_extension_flag");
1067  if (uiCode)
1068  {
1069    while ( xMoreRbspData() )
1070    {
1071      READ_FLAG( uiCode, "pps_extension_data_flag");
1072    }
1073  }
1074}
1075#if QC_MVHEVC_B0046
1076Void TDecCavlc::parseVPS(TComVPS* pcVPS)
1077{
1078  UInt  uiCode;
1079  READ_CODE( 4, uiCode,  "video_parameter_set_id"   );       pcVPS->setVPSId( uiCode );
1080  READ_FLAG( uiCode,     "temporal_id_nesting_flag" );       pcVPS->setTemporalNestingFlag( uiCode ? true:false );
1081  READ_CODE( 2, uiCode,  "vps_reserved_zero_2bits" );         assert( !uiCode );
1082  READ_CODE( 6, uiCode,  "vps_max_layers_minus1" );               pcVPS->setMaxLayers( uiCode + 1 );
1083  READ_CODE( 3, uiCode,  "vps_max_sub_layers_minus1" );      pcVPS->setMaxTLayers( uiCode + 1 );
1084  READ_CODE( 12, uiCode, "vps_extension_offset"      );      assert( !uiCode );
1085  for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++)
1086  {
1087    READ_UVLC( uiCode,  "max_dec_pic_buffering[i]" );     pcVPS->setMaxDecPicBuffering( uiCode, i );
1088    READ_UVLC( uiCode,  "num_reorder_pics[i]" );          pcVPS->setNumReorderPics( uiCode, i );
1089    READ_UVLC( uiCode,  "max_latency_increase[i]" );      pcVPS->setMaxLatencyIncrease( uiCode, i );
1090  }
1091  READ_UVLC( uiCode,                 "vps_num_hrd_parameters"   ); pcVPS->setNumHRDParameters(uiCode);
1092  assert(pcVPS->getNumHRDParameters()==0);
1093  for ( UInt i = 0; i < pcVPS->getNumHRDParameters(); i ++)
1094  {
1095   //   if( i > 0 ) 
1096    //{
1097    //  READ_UVLC (0, "op_num_layer_id_values_minus1[ opIdx ]");
1098    //  for( i = 0; i <= op_num_layer_id_values_minus1[ opIdx ]; i++ ) 
1099    //    READ_UVLC(0, 6, "op_layer_id[ opIdx ][ i ]");
1100    //} 
1101    //hrd_parameters( i  = =  0, vps_max_sub_layers_minus1 ); 
1102  }
1103 
1104  READ_CODE( 1, uiCode, "bit_equal_to_one" );             assert( uiCode );
1105  //vps_extension_byte_alignment_reserved_one_bit
1106  xReadVPSAlignOne();
1107  READ_CODE( 8, uiCode, "num_additional_layer_operation_points" );     pcVPS->setNumAddiLayerOperationPoints( uiCode );
1108  READ_CODE( 8, uiCode, "num_additional_profile_level_sets"     );     pcVPS->setNumAddiProLevelSets( uiCode);
1109
1110
1111  for(UInt i=0; i <= pcVPS->getMaxLayers()-1; i++)
1112  {
1113    READ_CODE( 4,  uiCode,             "num_types_zero_4bits[i]" );   assert( !uiCode );
1114    READ_CODE( 4,  uiCode,             "type_zero_4bits[i]"      );   assert( !uiCode );
1115    READ_CODE( 8,  uiCode,             "view_id[i]" );                pcVPS->setViewId(uiCode, i);
1116    // WRITE_SVLC( pcVPS->getViewOrderIdx(i),                  "view_order_idx[i]" );
1117    if(i)
1118    {
1119      READ_CODE( 6, uiCode,  "num_direct_ref_layers[ i ]" );    pcVPS->setNumDirectRefLayer(uiCode, i);
1120      for (UInt j = 0; j< pcVPS->getNumDirectRefLayer(i); j++)
1121      {
1122        READ_CODE( 6, uiCode, "ref_layer_id[i][j]" );         pcVPS->setDirectRefLayerId (uiCode, i, j);
1123      }
1124    }
1125  }
1126  for( UInt i=1; i<=pcVPS->getNumAddiProLevelSets(); i++)
1127  {
1128    //profile_tier_level
1129  }
1130  for( UInt i=1; i<= pcVPS->getNumAddiLayerOperationPoints(); i++)
1131  {   
1132    if(pcVPS->getMaxLayers() == 3)
1133    {
1134      pcVPS->setNumOpLayerIdMinus1((i < pcVPS->getNumAddiLayerOperationPoints() ? 1: 2), (i-1)); 
1135    }
1136    else if( i==1 )
1137    {
1138      assert(pcVPS->getNumAddiLayerOperationPoints()==1);
1139      pcVPS->setNumOpLayerIdMinus1(pcVPS->getMaxLayers()-1, (i-1)); 
1140    }
1141    READ_UVLC( uiCode,           "op_num_layer_id_values_minus1[ opIdx ]" ); pcVPS->setNumOpLayerIdMinus1(uiCode, i-1);
1142    for(UInt j = 0; j <= pcVPS->getNumOpLayerIdMinus1(i-1); j++ )
1143    {
1144      READ_UVLC( uiCode,           "op_layer_id[ opIdx ][ i ]" ); pcVPS->setNumOpLayerId(uiCode, i-1, j);
1145    }
1146    if (pcVPS->getNumAddiProLevelSets())
1147    {
1148      //profile_level_idx[ i ]
1149    }
1150  }
1151  return;
1152}
1153#else
1154#if VIDYO_VPS_INTEGRATION
1155Void TDecCavlc::parseVPS(TComVPS* pcVPS)
1156{
1157  UInt  uiCode;
1158  Int   iCode;
1159 
1160  READ_CODE( 3, uiCode, "max_temporal_layers_minus1" );   pcVPS->setMaxTLayers( uiCode + 1 );
1161  READ_CODE( 5, uiCode, "max_layers_minus1" );            pcVPS->setMaxLayers( uiCode + 1 );
1162  READ_FLAG( uiCode,  "temporal_id_nesting_flag" );       pcVPS->setTemporalNestingFlag( uiCode ? true:false );
1163  READ_UVLC( uiCode,  "video_parameter_set_id" );         pcVPS->setVPSId( uiCode );
1164  for(UInt i = 0; i <= pcVPS->getMaxTLayers()-1; i++)
1165  {
1166    READ_UVLC( uiCode,  "max_dec_pic_buffering[i]" );     pcVPS->setMaxDecPicBuffering( uiCode, i );
1167    READ_UVLC( uiCode,  "num_reorder_pics[i]" );          pcVPS->setNumReorderPics( uiCode, i );
1168    READ_UVLC( uiCode,  "max_latency_increase[i]" );      pcVPS->setMaxLatencyIncrease( uiCode, i );
1169  }
1170 
1171  READ_CODE( 1, uiCode, "bit_equal_to_one" );             assert( uiCode );
1172 
1173  if( pcVPS->getMaxLayers() - 1 > 0 )
1174  {
1175    READ_UVLC( uiCode,  "extension_type" );               pcVPS->setExtensionType( uiCode );
1176   
1177    pcVPS->setViewOrderIdx( 0, 0 );
1178    pcVPS->setViewId( 0, 0 );
1179    pcVPS->setDepthFlag( 0, 0 );
1180    for(UInt i = 1; i <= pcVPS->getMaxLayers()-1; i++)
1181    {
1182      READ_FLAG( uiCode, "dependent_flag[i]" );           pcVPS->setDependentFlag( uiCode ? true:false, i);
1183      if( pcVPS->getDependentFlag(i) )
1184      {
1185        READ_UVLC( uiCode,  "delta_reference_layer_id_minus1[i]" ); pcVPS->setDependentLayer( i - uiCode + 1, i );
1186        if( pcVPS->getExtensionType() == VPS_EXTENSION_TYPE_MULTI_VIEW )
1187        {
1188          READ_UVLC( uiCode,  "view_id[i]" );             pcVPS->setViewId( uiCode, i );
1189          READ_FLAG( uiCode,  "depth_flag[i]" );          pcVPS->setDepthFlag( uiCode ? true:false, i ); 
1190          READ_SVLC( iCode,  "view_order_idx[i]" );       pcVPS->setViewOrderIdx( iCode, i );
1191        }
1192       
1193      }
1194    }
1195#if INTER_VIEW_VECTOR_SCALING_C0115
1196    READ_FLAG( uiCode,  "inter_view_vector_scaling_flag" );    pcVPS->setIVScalingFlag( uiCode ? true:false); 
1197#endif
1198  }
1199 
1200  READ_FLAG( uiCode,  "vps_extension_flag" );          assert(!uiCode);
1201  //future extensions go here..
1202 
1203  return;
1204}
1205
1206#endif
1207#endif
1208#if HHI_MPI || H3D_QTL
1209Void TDecCavlc::parseSPS(TComSPS* pcSPS, Bool bIsDepth)
1210#else
1211Void TDecCavlc::parseSPS(TComSPS* pcSPS)
1212#endif
1213{
1214#if ENC_DEC_TRACE 
1215  xTraceSPSHeader (pcSPS);
1216#endif
1217 
1218  UInt  uiCode;
1219#if !QC_MVHEVC_B0046
1220  Int   iCode;
1221#endif
1222  READ_CODE( 8,  uiCode, "profile_idc" );                        pcSPS->setProfileIdc( uiCode );
1223  READ_CODE( 8,  uiCode, "reserved_zero_8bits" );
1224  READ_CODE( 8,  uiCode, "level_idc" );                          pcSPS->setLevelIdc( uiCode );
1225  READ_UVLC(     uiCode, "seq_parameter_set_id" );               pcSPS->setSPSId( uiCode );
1226#if VIDYO_VPS_INTEGRATION
1227  READ_UVLC(     uiCode, "video_parameter_set_id" );             pcSPS->setVPSId( uiCode );
1228#endif
1229  READ_UVLC(     uiCode, "chroma_format_idc" );                  pcSPS->setChromaFormatIdc( uiCode );
1230  READ_CODE( 3,  uiCode, "max_temporal_layers_minus1" );         pcSPS->setMaxTLayers( uiCode+1 );
1231  READ_UVLC (    uiCode, "pic_width_in_luma_samples" );          pcSPS->setPicWidthInLumaSamples ( uiCode    );
1232  READ_UVLC (    uiCode, "pic_height_in_luma_samples" );         pcSPS->setPicHeightInLumaSamples( uiCode    );
1233  READ_FLAG(     uiCode, "pic_cropping_flag");                   pcSPS->setPicCroppingFlag ( uiCode ? true : false );
1234  if (uiCode != 0)
1235  {
1236    READ_UVLC(   uiCode, "pic_crop_left_offset" );               pcSPS->setPicCropLeftOffset( uiCode );
1237    READ_UVLC(   uiCode, "pic_crop_right_offset" );              pcSPS->setPicCropRightOffset( uiCode );
1238    READ_UVLC(   uiCode, "pic_crop_top_offset" );                pcSPS->setPicCropTopOffset( uiCode );
1239    READ_UVLC(   uiCode, "pic_crop_bottom_offset" );             pcSPS->setPicCropBottomOffset( uiCode );
1240  }
1241
1242#if FULL_NBIT
1243  READ_UVLC(     uiCode, "bit_depth_luma_minus8" );
1244  g_uiBitDepth = 8 + uiCode;
1245  g_uiBitIncrement = 0;
1246  pcSPS->setBitDepth(g_uiBitDepth);
1247  pcSPS->setBitIncrement(g_uiBitIncrement);
1248#else
1249  READ_UVLC(     uiCode, "bit_depth_luma_minus8" );
1250  g_uiBitDepth = 8;
1251  g_uiBitIncrement = uiCode;
1252  pcSPS->setBitDepth(g_uiBitDepth);
1253  pcSPS->setBitIncrement(g_uiBitIncrement);
1254#endif
1255 
1256#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
1257  g_iDeltaDCsQuantOffset = g_uiBitIncrement - 2;
1258#endif
1259
1260  pcSPS->setQpBDOffsetY( (Int) (6*uiCode) );
1261
1262  g_uiBASE_MAX  = ((1<<(g_uiBitDepth))-1);
1263 
1264#if IBDI_NOCLIP_RANGE
1265  g_uiIBDI_MAX  = g_uiBASE_MAX << g_uiBitIncrement;
1266#else
1267  g_uiIBDI_MAX  = ((1<<(g_uiBitDepth+g_uiBitIncrement))-1);
1268#endif
1269  READ_UVLC( uiCode,    "bit_depth_chroma_minus8" );
1270  pcSPS->setQpBDOffsetC( (Int) (6*uiCode) );
1271
1272  READ_FLAG( uiCode, "pcm_enabled_flag" ); pcSPS->setUsePCM( uiCode ? true : false );
1273
1274  if( pcSPS->getUsePCM() )
1275  {
1276    READ_CODE( 4, uiCode, "pcm_bit_depth_luma_minus1" );           pcSPS->setPCMBitDepthLuma   ( 1 + uiCode );
1277    READ_CODE( 4, uiCode, "pcm_bit_depth_chroma_minus1" );         pcSPS->setPCMBitDepthChroma ( 1 + uiCode );
1278  }
1279
1280#if LOSSLESS_CODING
1281  READ_FLAG( uiCode, "qpprime_y_zero_transquant_bypass_flag" );    pcSPS->setUseLossless ( uiCode ? true : false );
1282#endif
1283
1284  READ_UVLC( uiCode,    "log2_max_pic_order_cnt_lsb_minus4" );   pcSPS->setBitsForPOC( 4 + uiCode );
1285  for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++)
1286  {
1287    READ_UVLC ( uiCode, "max_dec_pic_buffering");
1288    pcSPS->setMaxDecPicBuffering( uiCode, i);
1289    READ_UVLC ( uiCode, "num_reorder_pics" );
1290    pcSPS->setNumReorderPics(uiCode, i);
1291    READ_UVLC ( uiCode, "max_latency_increase");
1292    pcSPS->setMaxLatencyIncrease( uiCode, i );
1293  }
1294
1295  READ_FLAG( uiCode, "restricted_ref_pic_lists_flag" );
1296  pcSPS->setRestrictedRefPicListsFlag( uiCode );
1297  if( pcSPS->getRestrictedRefPicListsFlag() )
1298  {
1299    READ_FLAG( uiCode, "lists_modification_present_flag" );
1300    pcSPS->setListsModificationPresentFlag(uiCode);
1301  }
1302  else 
1303  {
1304    pcSPS->setListsModificationPresentFlag(true);
1305  }
1306  READ_UVLC( uiCode, "log2_min_coding_block_size_minus3" );
1307  UInt log2MinCUSize = uiCode + 3;
1308  READ_UVLC( uiCode, "log2_diff_max_min_coding_block_size" );
1309  UInt uiMaxCUDepthCorrect = uiCode;
1310  pcSPS->setMaxCUWidth  ( 1<<(log2MinCUSize + uiMaxCUDepthCorrect) ); g_uiMaxCUWidth  = 1<<(log2MinCUSize + uiMaxCUDepthCorrect);
1311  pcSPS->setMaxCUHeight ( 1<<(log2MinCUSize + uiMaxCUDepthCorrect) ); g_uiMaxCUHeight = 1<<(log2MinCUSize + uiMaxCUDepthCorrect);
1312  READ_UVLC( uiCode, "log2_min_transform_block_size_minus2" );   pcSPS->setQuadtreeTULog2MinSize( uiCode + 2 );
1313
1314  READ_UVLC( uiCode, "log2_diff_max_min_transform_block_size" ); pcSPS->setQuadtreeTULog2MaxSize( uiCode + pcSPS->getQuadtreeTULog2MinSize() );
1315  pcSPS->setMaxTrSize( 1<<(uiCode + pcSPS->getQuadtreeTULog2MinSize()) );
1316
1317  if(log2MinCUSize == 3)
1318  {
1319    xReadFlag( uiCode ); pcSPS->setDisInter4x4( uiCode ? true : false );
1320  }
1321
1322  if( pcSPS->getUsePCM() )
1323  {
1324    READ_UVLC( uiCode, "log2_min_pcm_coding_block_size_minus3" );  pcSPS->setPCMLog2MinSize (uiCode+3); 
1325    READ_UVLC( uiCode, "log2_diff_max_min_pcm_coding_block_size" ); pcSPS->setPCMLog2MaxSize ( uiCode+pcSPS->getPCMLog2MinSize() );
1326  }
1327
1328  READ_UVLC( uiCode, "max_transform_hierarchy_depth_inter" );    pcSPS->setQuadtreeTUMaxDepthInter( uiCode+1 );
1329  READ_UVLC( uiCode, "max_transform_hierarchy_depth_intra" );    pcSPS->setQuadtreeTUMaxDepthIntra( uiCode+1 );
1330  g_uiAddCUDepth = 0;
1331  while( ( pcSPS->getMaxCUWidth() >> uiMaxCUDepthCorrect ) > ( 1 << ( pcSPS->getQuadtreeTULog2MinSize() + g_uiAddCUDepth )  ) )
1332  {
1333    g_uiAddCUDepth++;
1334  }
1335  pcSPS->setMaxCUDepth( uiMaxCUDepthCorrect+g_uiAddCUDepth  ); 
1336  g_uiMaxCUDepth  = uiMaxCUDepthCorrect+g_uiAddCUDepth;
1337  // BB: these parameters may be removed completly and replaced by the fixed values
1338  pcSPS->setMinTrDepth( 0 );
1339  pcSPS->setMaxTrDepth( 1 );
1340  READ_FLAG( uiCode, "scaling_list_enabled_flag" );                 pcSPS->setScalingListFlag ( uiCode );
1341  READ_FLAG( uiCode, "chroma_pred_from_luma_enabled_flag" );        pcSPS->setUseLMChroma ( uiCode ? true : false ); 
1342  READ_FLAG( uiCode, "deblocking_filter_in_aps_enabled_flag" );     pcSPS->setUseDF ( uiCode ? true : false ); 
1343  READ_FLAG( uiCode, "loop_filter_across_slice_flag" );             pcSPS->setLFCrossSliceBoundaryFlag( uiCode ? true : false);
1344  READ_FLAG( uiCode, "asymmetric_motion_partitions_enabled_flag" ); pcSPS->setUseAMP( uiCode );
1345  READ_FLAG( uiCode, "non_square_quadtree_enabled_flag" );          pcSPS->setUseNSQT( uiCode );
1346  READ_FLAG( uiCode, "sample_adaptive_offset_enabled_flag" );       pcSPS->setUseSAO ( uiCode ? true : false ); 
1347  READ_FLAG( uiCode, "adaptive_loop_filter_enabled_flag" );         pcSPS->setUseALF ( uiCode ? true : false );
1348  if(pcSPS->getUseALF())
1349  {
1350    READ_FLAG( uiCode, "alf_coef_in_slice_flag" );      pcSPS->setUseALFCoefInSlice ( uiCode ? true : false );
1351  }
1352  if( pcSPS->getUsePCM() )
1353  {
1354    READ_FLAG( uiCode, "pcm_loop_filter_disable_flag" );           pcSPS->setPCMFilterDisableFlag ( uiCode ? true : false );
1355  }
1356
1357  READ_FLAG( uiCode, "temporal_id_nesting_flag" );               pcSPS->setTemporalIdNestingFlag ( uiCode > 0 ? true : false );
1358
1359
1360  TComRPSList* rpsList = pcSPS->getRPSList();
1361  TComReferencePictureSet* rps;
1362
1363  READ_UVLC( uiCode, "num_short_term_ref_pic_sets" );
1364  rpsList->create(uiCode);
1365
1366  for(UInt i=0; i< rpsList->getNumberOfReferencePictureSets(); i++)
1367  {
1368    rps = rpsList->getReferencePictureSet(i);
1369    parseShortTermRefPicSet(pcSPS,rps,i);
1370  }
1371  READ_FLAG( uiCode, "long_term_ref_pics_present_flag" );          pcSPS->setLongTermRefsPresent(uiCode);
1372 
1373  // AMVP mode for each depth (AM_NONE or AM_EXPL)
1374  for (Int i = 0; i < pcSPS->getMaxCUDepth(); i++)
1375  {
1376    xReadFlag( uiCode );
1377    pcSPS->setAMVPMode( i, (AMVP_MODE)uiCode );
1378  }
1379
1380  READ_CODE(2, uiCode, "tiles_or_entropy_coding_sync_idc");         pcSPS->setTilesOrEntropyCodingSyncIdc(uiCode);
1381
1382  if(pcSPS->getTilesOrEntropyCodingSyncIdc() == 1)
1383  {
1384    READ_UVLC ( uiCode, "num_tile_columns_minus1" );
1385    pcSPS->setNumColumnsMinus1( uiCode ); 
1386    READ_UVLC ( uiCode, "num_tile_rows_minus1" ); 
1387    pcSPS->setNumRowsMinus1( uiCode ); 
1388    READ_FLAG ( uiCode, "uniform_spacing_flag" ); 
1389    pcSPS->setUniformSpacingIdr( uiCode );
1390    if( pcSPS->getUniformSpacingIdr() == 0 )
1391    {
1392      UInt* columnWidth = (UInt*)malloc(pcSPS->getNumColumnsMinus1()*sizeof(UInt));
1393      for(UInt i=0; i<pcSPS->getNumColumnsMinus1(); i++)
1394      { 
1395        READ_UVLC( uiCode, "column_width" );
1396        columnWidth[i] = uiCode; 
1397      }
1398      pcSPS->setColumnWidth(columnWidth);
1399      free(columnWidth);
1400
1401      UInt* rowHeight = (UInt*)malloc(pcSPS->getNumRowsMinus1()*sizeof(UInt));
1402      for(UInt i=0; i<pcSPS->getNumRowsMinus1(); i++)
1403      {
1404        READ_UVLC( uiCode, "row_height" );
1405        rowHeight[i] = uiCode; 
1406      }
1407      pcSPS->setRowHeight(rowHeight);
1408      free(rowHeight); 
1409    }
1410    pcSPS->setLFCrossTileBoundaryFlag(true); //default
1411
1412    if( pcSPS->getNumColumnsMinus1() !=0 || pcSPS->getNumRowsMinus1() != 0)
1413    {
1414        READ_FLAG ( uiCode, "loop_filter_across_tile_flag" ); 
1415        pcSPS->setLFCrossTileBoundaryFlag( (uiCode==1)?true:false);
1416    }
1417  }
1418  READ_FLAG( uiCode, "sps_extension_flag");
1419#if !QC_MVHEVC_B0046
1420  if(uiCode)
1421  {
1422    READ_FLAG( uiCode, "interview_refs_present_flag");
1423    if(uiCode)
1424    {
1425      READ_UVLC( uiCode, "num_usable_interview_refs_minus1" );
1426      pcSPS->setNumberOfUsableInterViewRefs( uiCode + 1 );
1427
1428      Int prev = 0;
1429      for( Int j = 0 ; j < pcSPS->getNumberOfUsableInterViewRefs(); j++ )
1430      {
1431        READ_UVLC(uiCode, "delta_usable_interview_ref_minus1");
1432        pcSPS->setUsableInterViewRef( j, (prev - uiCode - 1) );
1433        prev = pcSPS->getUsableInterViewRef( j );
1434      }
1435    }
1436
1437#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
1438    READ_FLAG( uiCode, "enable_dmm_flag" ); 
1439    pcSPS->setUseDMM( uiCode );
1440#endif
1441
1442#if HHI_MPI
1443    if( bIsDepth )
1444    {
1445      READ_FLAG( uiCode, "use_mvi_flag" );
1446      pcSPS->setUseMVI( uiCode );
1447    }
1448#endif
1449#if H3D_QTL
1450    if( bIsDepth )
1451    {
1452      READ_FLAG( uiCode, "use_qtlpc_flag" );
1453      pcSPS->setUseQTLPC( uiCode );
1454    }
1455#endif
1456   
1457#if RWTH_SDC_DLT_B0036
1458    if( bIsDepth )
1459    {
1460      READ_FLAG( uiCode, "use_dlt_flag" );
1461      pcSPS->setUseDLT( uiCode );
1462      if( pcSPS->getUseDLT() )
1463      {
1464        // decode mapping
1465        UInt uiNumDepthValues;
1466        // parse number of values in DLT
1467        xReadUvlc( uiNumDepthValues );
1468       
1469        // parse actual DLT values
1470        UInt* auiIdx2DepthValue = (UInt*) calloc(uiNumDepthValues, sizeof(UInt));
1471        for(UInt d=0; d<uiNumDepthValues; d++)
1472        {
1473          xReadUvlc( uiCode );
1474          auiIdx2DepthValue[d] = uiCode;
1475        }
1476       
1477        pcSPS->setDepthLUTs(auiIdx2DepthValue, uiNumDepthValues);
1478       
1479        // clean memory
1480        free(auiIdx2DepthValue);
1481      }
1482      else
1483        pcSPS->setDepthLUTs();
1484    }
1485#endif
1486
1487    READ_FLAG( uiCode, "base_view_flag" );
1488    if( uiCode )
1489    { // baseview SPS -> set standard values
1490      pcSPS->initMultiviewSPS         ( 0 );
1491#if DEPTH_MAP_GENERATION
1492      pcSPS->setPredDepthMapGeneration( 0, false );
1493#endif
1494#if H3D_IVRP
1495    pcSPS->setMultiviewResPredMode  ( 0 );
1496#endif
1497    }
1498    else
1499    {
1500      READ_FLAG( uiCode, "depth_flag" ); 
1501      if( uiCode )
1502      {
1503#if FCO_FIX_SPS_CHANGE
1504        UInt  uiViewId, uiCamParPrecision;
1505        Int   iVOI;
1506        Bool  bCamParSlice;
1507        READ_UVLC( uiCode, "view_id" ); 
1508        READ_SVLC( iCode, "view_order_idx" );
1509        uiViewId = uiCode;
1510        iVOI = iCode;
1511
1512        if ( uiViewId == 0 )
1513        {
1514          pcSPS->initMultiviewSPSDepth    ( uiViewId, iVOI );
1515        }
1516        else
1517        {
1518          READ_UVLC( uiCamParPrecision, "camera_parameter_precision" );
1519          READ_FLAG( uiCode, "camera_parameter_in_slice_header" );    bCamParSlice = ( uiCode == 1 );
1520          if( !bCamParSlice )
1521          {
1522            for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ )
1523            {
1524              READ_SVLC( iCode, "coded_scale" );   m_aaiTempScale [ uiBaseId ][ uiViewId ] = iCode;
1525              READ_SVLC( iCode, "coded_offset" );   m_aaiTempOffset[ uiBaseId ][ uiViewId ] = iCode;
1526              READ_SVLC( iCode, "inverse_coded_scale_plus_coded_scale" );   m_aaiTempScale [ uiViewId ][ uiBaseId ] = iCode - m_aaiTempScale [ uiBaseId ][ uiViewId ];
1527              READ_SVLC( iCode, "inverse_coded_offset_plus_coded_offset" );   m_aaiTempOffset[ uiViewId ][ uiBaseId ] = iCode - m_aaiTempOffset[ uiBaseId ][ uiViewId ];
1528            }
1529          }
1530          pcSPS->initMultiviewSPSDepth( uiViewId, iVOI, uiCamParPrecision, bCamParSlice, m_aaiTempScale, m_aaiTempOffset );
1531
1532        }
1533#else
1534        READ_UVLC( uiCode, "view_id" ); 
1535        READ_SVLC(  iCode, "view_order_idx" ); 
1536        pcSPS->initMultiviewSPSDepth    ( uiCode, iCode );
1537#endif
1538#if DEPTH_MAP_GENERATION
1539#if FCO_FIX_SPS_CHANGE
1540        pcSPS->setPredDepthMapGeneration( uiViewId, true );
1541#else
1542        pcSPS->setPredDepthMapGeneration( uiCode, true );
1543#endif
1544#endif
1545#if H3D_IVRP
1546      pcSPS->setMultiviewResPredMode  ( 0 );
1547#endif
1548      }
1549      else
1550      {
1551        UInt  uiViewId, uiCamParPrecision;
1552        Int   iVOI;
1553        Bool  bCamParSlice;
1554        READ_UVLC( uiViewId, "view_id" );  uiViewId++;
1555        READ_SVLC( iVOI, "view_order_idx" );
1556        READ_UVLC( uiCamParPrecision, "camera_parameter_precision" );
1557        READ_FLAG( uiCode, "camera_parameter_in_slice_header" );    bCamParSlice = ( uiCode == 1 );
1558        if( !bCamParSlice )
1559        {
1560          for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ )
1561          {
1562            READ_SVLC( iCode, "coded_scale" );   m_aaiTempScale [ uiBaseId ][ uiViewId ] = iCode;
1563            READ_SVLC( iCode, "coded_offset" );   m_aaiTempOffset[ uiBaseId ][ uiViewId ] = iCode;
1564            READ_SVLC( iCode, "inverse_coded_scale_plus_coded_scale" );   m_aaiTempScale [ uiViewId ][ uiBaseId ] = iCode - m_aaiTempScale [ uiBaseId ][ uiViewId ];
1565            READ_SVLC( iCode, "inverse_coded_offset_plus_coded_offset" );   m_aaiTempOffset[ uiViewId ][ uiBaseId ] = iCode - m_aaiTempOffset[ uiBaseId ][ uiViewId ];
1566          }
1567        }
1568        pcSPS->initMultiviewSPS( uiViewId, iVOI, uiCamParPrecision, bCamParSlice, m_aaiTempScale, m_aaiTempOffset );
1569
1570#if DEPTH_MAP_GENERATION
1571        UInt uiPredDepthMapGeneration = 0, uiPdmPrecision = 0;
1572#if H3D_IVMP
1573        UInt uiMultiviewMvPredMode = 0;
1574#endif
1575#if H3D_IVRP
1576      UInt uiMultiviewResPredMode = 0;
1577#endif
1578        READ_UVLC( uiPredDepthMapGeneration, "Pdm_generation" );
1579        if( uiPredDepthMapGeneration )
1580        {
1581          READ_UVLC( uiPdmPrecision, "Pdm_precision" );
1582          for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ )
1583          {
1584            READ_SVLC( iCode, "Pdm_scale_nom_delta" );   m_aaiTempPdmScaleNomDelta[ uiViewId ][ uiBaseId ] = iCode;
1585            READ_SVLC( iCode, "Pdm_offset" );   m_aaiTempPdmOffset       [ uiViewId ][ uiBaseId ] = iCode;
1586          }
1587#if H3D_IVMP
1588          READ_UVLC( uiMultiviewMvPredMode, "multi_view_mv_pred_mode" );
1589#endif
1590#if H3D_IVRP
1591          READ_FLAG( uiMultiviewResPredMode, "multi_view_residual_pred_mode" );
1592#endif
1593        }
1594#if H3D_IVMP
1595        pcSPS->setPredDepthMapGeneration( uiViewId, false, uiPredDepthMapGeneration, uiMultiviewMvPredMode, uiPdmPrecision, m_aaiTempPdmScaleNomDelta, m_aaiTempPdmOffset );
1596#else
1597        pcSPS->setPredDepthMapGeneration( uiViewId, false, uiPredDepthMapGeneration, 0, uiPdmPrecision, m_aaiTempPdmScaleNomDelta, m_aaiTempPdmOffset );
1598#endif
1599#endif
1600#if H3D_IVRP
1601      pcSPS->setMultiviewResPredMode  ( uiMultiviewResPredMode );
1602#endif
1603      }
1604    }
1605    READ_FLAG( uiCode, "sps_extension2_flag");
1606    if (uiCode)
1607    {
1608      while ( xMoreRbspData() )
1609      {
1610        READ_FLAG( uiCode, "sps_extension2_data_flag");
1611      }
1612    }
1613  }
1614#endif
1615}
1616
1617Void TDecCavlc::readTileMarker   ( UInt& uiTileIdx, UInt uiBitsUsed )
1618{
1619  xReadCode ( uiBitsUsed, uiTileIdx );
1620}
1621
1622#if MTK_DEPTH_MERGE_TEXTURE_CANDIDATE_C0137
1623Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet, bool isDepth)
1624#else
1625Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet)
1626#endif
1627{
1628  UInt  uiCode;
1629  Int   iCode;
1630 
1631#if ENC_DEC_TRACE
1632  xTraceSliceHeader(rpcSlice);
1633#endif
1634  Int numCUs = ((rpcSlice->getSPS()->getPicWidthInLumaSamples()+rpcSlice->getSPS()->getMaxCUWidth()-1)/rpcSlice->getSPS()->getMaxCUWidth())*((rpcSlice->getSPS()->getPicHeightInLumaSamples()+rpcSlice->getSPS()->getMaxCUHeight()-1)/rpcSlice->getSPS()->getMaxCUHeight());
1635  Int maxParts = (1<<(rpcSlice->getSPS()->getMaxCUDepth()<<1));
1636  Int numParts = (1<<(rpcSlice->getPPS()->getSliceGranularity()<<1));
1637  UInt lCUAddress = 0;
1638  Int reqBitsOuter = 0;
1639  while(numCUs>(1<<reqBitsOuter))
1640  {
1641    reqBitsOuter++;
1642  }
1643  Int reqBitsInner = 0;
1644  while((numParts)>(1<<reqBitsInner)) 
1645  {
1646    reqBitsInner++;
1647  }
1648
1649  READ_FLAG( uiCode, "first_slice_in_pic_flag" );
1650  UInt address;
1651  UInt innerAddress = 0;
1652
1653#if LGE_ILLUCOMP_B0045
1654  // IC flag is on only first_slice_in_pic
1655  if (uiCode)
1656  {
1657    UInt uiCodeTmp = 0;
1658    if ( rpcSlice->getSPS()->getViewId() 
1659#if !LGE_ILLUCOMP_DEPTH_C0046
1660        && !rpcSlice->getSPS()->isDepth()
1661#endif
1662        )
1663    {
1664      READ_FLAG (uiCodeTmp, "applying IC flag");
1665    }
1666    rpcSlice->setApplyIC(uiCodeTmp);
1667#if SHARP_ILLUCOMP_PARSE_D0060
1668    if (rpcSlice->getApplyIC())
1669    {
1670      READ_FLAG (uiCodeTmp, "ic_skip_mergeidx0");
1671      rpcSlice->setIcSkipParseFlag(uiCodeTmp);
1672    }
1673#endif
1674  }
1675#endif
1676
1677  if(!uiCode)
1678  {
1679    READ_CODE( reqBitsOuter+reqBitsInner, address, "slice_address" );
1680    lCUAddress = address >> reqBitsInner;
1681    innerAddress = address - (lCUAddress<<reqBitsInner);
1682  }
1683  //set uiCode to equal slice start address (or entropy slice start address)
1684  uiCode=(maxParts*lCUAddress)+(innerAddress*(maxParts>>(rpcSlice->getPPS()->getSliceGranularity()<<1)));
1685 
1686  rpcSlice->setEntropySliceCurStartCUAddr( uiCode );
1687  rpcSlice->setEntropySliceCurEndCUAddr(numCUs*maxParts);
1688
1689  //   slice_type
1690  READ_UVLC (    uiCode, "slice_type" );            rpcSlice->setSliceType((SliceType)uiCode);
1691  // lightweight_slice_flag
1692  READ_FLAG( uiCode, "entropy_slice_flag" );
1693  Bool bEntropySlice = uiCode ? true : false;
1694
1695  if (bEntropySlice)
1696  {
1697    rpcSlice->setNextSlice        ( false );
1698    rpcSlice->setNextEntropySlice ( true  );
1699  }
1700  else
1701  {
1702    rpcSlice->setNextSlice        ( true  );
1703    rpcSlice->setNextEntropySlice ( false );
1704   
1705    uiCode=(maxParts*lCUAddress)+(innerAddress*(maxParts>>(rpcSlice->getPPS()->getSliceGranularity()<<1)));
1706    rpcSlice->setSliceCurStartCUAddr(uiCode);
1707    rpcSlice->setSliceCurEndCUAddr(numCUs*maxParts);
1708  }
1709  TComPPS* pps = NULL;
1710  TComSPS* sps = NULL;
1711
1712  if (!bEntropySlice)
1713  {
1714    READ_UVLC (    uiCode, "pic_parameter_set_id" );  rpcSlice->setPPSId(uiCode);
1715    pps = parameterSetManager->getPrefetchedPPS(uiCode);
1716    sps = parameterSetManager->getPrefetchedSPS(pps->getSPSId());
1717    rpcSlice->setSPS(sps);
1718    rpcSlice->setPPS(pps);
1719    if( pps->getOutputFlagPresentFlag() )
1720    {
1721      READ_FLAG( uiCode, "pic_output_flag" );
1722      rpcSlice->setPicOutputFlag( uiCode ? true : false );
1723    }
1724    else
1725    {
1726      rpcSlice->setPicOutputFlag( true );
1727    }
1728#if QC_REM_IDV_B0046
1729#if !QC_MVHEVC_B0046
1730  if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getSPS()->getViewId() == 0) 
1731#else
1732  if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getViewId() == 0) 
1733#endif
1734#else
1735    if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR) 
1736#endif
1737    { 
1738      READ_UVLC( uiCode, "idr_pic_id" );  //ignored
1739      READ_FLAG( uiCode, "no_output_of_prior_pics_flag" );  //ignored
1740      rpcSlice->setPOC(0);
1741      TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
1742      rps->setNumberOfNegativePictures(0);
1743      rps->setNumberOfPositivePictures(0);
1744      rps->setNumberOfLongtermPictures(0);
1745      rps->setNumberOfPictures(0);
1746      rpcSlice->setRPS(rps);
1747    }
1748    else
1749    {
1750      READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); 
1751      Int iPOClsb = uiCode;
1752      Int iPrevPOC = rpcSlice->getPrevPOC();
1753      Int iMaxPOClsb = 1<< sps->getBitsForPOC();
1754      Int iPrevPOClsb = iPrevPOC%iMaxPOClsb;
1755      Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb;
1756      Int iPOCmsb;
1757      if( ( iPOClsb  <  iPrevPOClsb ) && ( ( iPrevPOClsb - iPOClsb )  >=  ( iMaxPOClsb / 2 ) ) )
1758      {
1759        iPOCmsb = iPrevPOCmsb + iMaxPOClsb;
1760      }
1761      else if( (iPOClsb  >  iPrevPOClsb )  && ( (iPOClsb - iPrevPOClsb )  >  ( iMaxPOClsb / 2 ) ) ) 
1762      {
1763        iPOCmsb = iPrevPOCmsb - iMaxPOClsb;
1764      }
1765      else
1766      {
1767        iPOCmsb = iPrevPOCmsb;
1768      }
1769      rpcSlice->setPOC( iPOCmsb+iPOClsb );
1770#if QC_REM_IDV_B0046
1771#if !QC_MVHEVC_B0046
1772      if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR &&  rpcSlice->getSPS()->getViewId() && rpcSlice->getPOC() == 0 )
1773#else
1774      if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR &&  rpcSlice->getViewId() && rpcSlice->getPOC() == 0 )
1775#endif
1776#else
1777      if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDV && rpcSlice->getPOC() == 0 )
1778#endif
1779      {
1780        TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
1781        rps->setNumberOfNegativePictures(0);
1782        rps->setNumberOfPositivePictures(0);
1783        rps->setNumberOfLongtermPictures(0);
1784        rps->setNumberOfPictures(0);
1785        rpcSlice->setRPS(rps);
1786      }
1787      else
1788      {
1789        TComReferencePictureSet* rps;
1790        READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" );
1791        if(uiCode == 0) // use short-term reference picture set explicitly signalled in slice header
1792        {
1793          rps = rpcSlice->getLocalRPS();
1794          parseShortTermRefPicSet(sps,rps, sps->getRPSList()->getNumberOfReferencePictureSets());
1795          rpcSlice->setRPS(rps);
1796        }
1797        else // use reference to short-term reference picture set in PPS
1798        {
1799          READ_UVLC( uiCode, "short_term_ref_pic_set_idx"); rpcSlice->setRPS(sps->getRPSList()->getReferencePictureSet(uiCode));
1800          rps = rpcSlice->getRPS();
1801        }
1802        if(sps->getLongTermRefsPresent())
1803        {
1804          Int offset = rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures();
1805          READ_UVLC( uiCode, "num_long_term_pics");             rps->setNumberOfLongtermPictures(uiCode);
1806          Int prev = 0;
1807          Int prevMsb=0;
1808          Int prevDeltaPocLt=0;
1809          for(Int j=rps->getNumberOfLongtermPictures()+offset-1 ; j > offset-1; j--)
1810          {
1811            READ_UVLC(uiCode,"delta_poc_lsb_lt"); 
1812            prev += uiCode;
1813
1814            READ_FLAG(uiCode,"delta_poc_msb_present_flag");
1815            Int decDeltaPOCMsbPresent=uiCode;
1816
1817            if(decDeltaPOCMsbPresent==1)
1818            {
1819              READ_UVLC(uiCode, "delta_poc_msb_cycle_lt_minus1");
1820              if(  (j==(rps->getNumberOfLongtermPictures()+offset-1)) || (prev!=prevDeltaPocLt) )
1821              {
1822                prevMsb=(1+uiCode); 
1823              }
1824              else
1825              {
1826                prevMsb+=(1+uiCode); 
1827              }
1828              Int decMaxPocLsb = 1<<rpcSlice->getSPS()->getBitsForPOC();
1829              rps->setPOC(j,rpcSlice->getPOC()-prev-(prevMsb)*decMaxPocLsb); 
1830              rps->setDeltaPOC(j,-(Int)(prev+(prevMsb)*decMaxPocLsb));
1831            }
1832            else
1833            {
1834              rps->setPOC(j,rpcSlice->getPOC()-prev);         
1835              rps->setDeltaPOC(j,-(Int)prev);
1836            }
1837            prevDeltaPocLt=prev;
1838            READ_FLAG( uiCode, "used_by_curr_pic_lt_flag");     rps->setUsed(j,uiCode);
1839          }
1840          offset += rps->getNumberOfLongtermPictures();
1841          rps->setNumberOfPictures(offset);       
1842        } 
1843      }
1844    }
1845
1846    if(sps->getUseSAO() || sps->getUseALF() || sps->getScalingListFlag() || sps->getUseDF())
1847    {
1848      //!!!KS: order is different in WD5!
1849      if (sps->getUseALF())
1850      {
1851        READ_FLAG(uiCode, "slice_adaptive_loop_filter_flag");
1852        rpcSlice->setAlfEnabledFlag((Bool)uiCode);
1853      }
1854      if (sps->getUseSAO())
1855      {
1856        READ_FLAG(uiCode, "slice_sao_interleaving_flag");        rpcSlice->setSaoInterleavingFlag(uiCode);
1857        READ_FLAG(uiCode, "slice_sample_adaptive_offset_flag");  rpcSlice->setSaoEnabledFlag((Bool)uiCode);
1858        if (rpcSlice->getSaoEnabledFlag() && rpcSlice->getSaoInterleavingFlag())
1859        {
1860          READ_FLAG(uiCode, "sao_cb_enable_flag");  rpcSlice->setSaoEnabledFlagCb((Bool)uiCode);
1861          READ_FLAG(uiCode, "sao_cr_enable_flag");  rpcSlice->setSaoEnabledFlagCr((Bool)uiCode);
1862        }
1863        else
1864        {
1865          rpcSlice->setSaoEnabledFlagCb(0);
1866          rpcSlice->setSaoEnabledFlagCr(0);
1867        }
1868      }
1869      READ_UVLC (    uiCode, "aps_id" );  rpcSlice->setAPSId(uiCode);
1870    }
1871    if (!rpcSlice->isIntra())
1872    {
1873      READ_FLAG( uiCode, "num_ref_idx_active_override_flag");
1874      if (uiCode)
1875      {
1876        READ_CODE (3, uiCode, "num_ref_idx_l0_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_0, uiCode + 1 );
1877        if (rpcSlice->isInterB())
1878        {
1879          READ_CODE (3, uiCode, "num_ref_idx_l1_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_1, uiCode + 1 );
1880        }
1881        else
1882        {
1883          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1884        }
1885      }
1886      else
1887      {
1888        rpcSlice->setNumRefIdx(REF_PIC_LIST_0, 0);
1889        rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1890      }
1891    }
1892    TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification();
1893    if( !rpcSlice->isIntra() )
1894    {
1895#if QC_MVHEVC_B0046
1896    if( !rpcSlice->getViewId() || !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1897#else
1898      if( !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1899#endif
1900      {
1901        refPicListModification->setRefPicListModificationFlagL0( 0 );
1902      }
1903      else
1904      {
1905        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l0" ); refPicListModification->setRefPicListModificationFlagL0( uiCode ? 1 : 0 );
1906      }
1907     
1908      if(refPicListModification->getRefPicListModificationFlagL0())
1909      {
1910        uiCode = 0;
1911        Int i = 0;
1912        Int NumPocTotalCurr = rpcSlice->getNumPocTotalCurrMvc();
1913        if ( NumPocTotalCurr > 1 )
1914        {
1915          Int length = 1;
1916          NumPocTotalCurr --;
1917          while ( NumPocTotalCurr >>= 1) 
1918          {
1919            length ++;
1920          }
1921          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1922          {
1923            READ_CODE( length, uiCode, "list_entry_l0" );
1924            refPicListModification->setRefPicSetIdxL0(i, uiCode );
1925          }
1926        }
1927        else
1928        {
1929          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1930          {
1931            refPicListModification->setRefPicSetIdxL0(i, 0 );
1932          }
1933        }
1934      }
1935    }
1936    else
1937    {
1938      refPicListModification->setRefPicListModificationFlagL0(0);
1939    }
1940    if(rpcSlice->isInterB())
1941    {
1942#if QC_MVHEVC_B0046
1943    if( !rpcSlice->getViewId() || !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1944#else
1945      if( !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1946#endif
1947      {
1948        refPicListModification->setRefPicListModificationFlagL1( 0 );
1949      }
1950      else
1951      {
1952        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l1" ); refPicListModification->setRefPicListModificationFlagL1( uiCode ? 1 : 0 );
1953      }
1954      if(refPicListModification->getRefPicListModificationFlagL1())
1955      {
1956        uiCode = 0;
1957        Int i = 0;
1958        Int NumPocTotalCurr = rpcSlice->getNumPocTotalCurrMvc();
1959        if ( NumPocTotalCurr > 1 )
1960        {
1961          Int length = 1;
1962          NumPocTotalCurr --;
1963          while ( NumPocTotalCurr >>= 1) 
1964          {
1965            length ++;
1966          }
1967          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1968          {
1969            READ_CODE( length, uiCode, "list_entry_l1" );
1970            refPicListModification->setRefPicSetIdxL1(i, uiCode );
1971          }
1972        }
1973        else
1974        {
1975          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1976          {
1977            refPicListModification->setRefPicSetIdxL1(i, 0 );
1978          }
1979        }
1980      }
1981    } 
1982    else
1983    {
1984      refPicListModification->setRefPicListModificationFlagL1(0);
1985    }
1986  }
1987  else
1988  {
1989    // initialize from previous slice
1990    pps = rpcSlice->getPPS();
1991    sps = rpcSlice->getSPS();
1992  }
1993  // ref_pic_list_combination( )
1994  //!!!KS: ref_pic_list_combination() should be conditioned on entropy_slice_flag
1995  if (rpcSlice->isInterB())
1996  {
1997    READ_FLAG( uiCode, "ref_pic_list_combination_flag" );       rpcSlice->setRefPicListCombinationFlag( uiCode ? 1 : 0 );
1998    if(uiCode)
1999    {
2000      READ_UVLC( uiCode, "num_ref_idx_lc_active_minus1" );      rpcSlice->setNumRefIdx( REF_PIC_LIST_C, uiCode + 1 );
2001     
2002#if QC_MVHEVC_B0046
2003    if( rpcSlice->getViewId() && rpcSlice->getSPS()->getListsModificationPresentFlag() )
2004#else
2005    if(rpcSlice->getSPS()->getListsModificationPresentFlag() )
2006#endif
2007      {
2008        READ_FLAG( uiCode, "ref_pic_list_modification_flag_lc" ); rpcSlice->setRefPicListModificationFlagLC( uiCode ? 1 : 0 );
2009        if(uiCode)
2010        {
2011          for (UInt i=0;i<rpcSlice->getNumRefIdx(REF_PIC_LIST_C);i++)
2012          {
2013            READ_FLAG( uiCode, "pic_from_list_0_flag" );
2014            rpcSlice->setListIdFromIdxOfLC(i, uiCode);
2015          if (((rpcSlice->getListIdFromIdxOfLC(i) == REF_PIC_LIST_0) && (rpcSlice->getNumRefIdx( REF_PIC_LIST_0 ) == 1)) || ((rpcSlice->getListIdFromIdxOfLC(i) == REF_PIC_LIST_1) && (rpcSlice->getNumRefIdx( REF_PIC_LIST_1 ) == 1)) )
2016          {
2017            uiCode = 0;
2018          }
2019          else
2020          {
2021            READ_UVLC( uiCode, "ref_idx_list_curr" );
2022          }
2023            rpcSlice->setRefIdxFromIdxOfLC(i, uiCode);
2024            rpcSlice->setRefIdxOfLC((RefPicList)rpcSlice->getListIdFromIdxOfLC(i), rpcSlice->getRefIdxFromIdxOfLC(i), i);
2025          }
2026        }
2027      }
2028      else
2029      {
2030        rpcSlice->setRefPicListModificationFlagLC(false);
2031      }
2032    }
2033    else
2034    {
2035      rpcSlice->setRefPicListModificationFlagLC(false);
2036      rpcSlice->setNumRefIdx(REF_PIC_LIST_C, 0);
2037    }
2038  }
2039  else
2040  {
2041    rpcSlice->setRefPicListCombinationFlag(false);     
2042  }
2043 
2044  if (rpcSlice->isInterB())
2045  {
2046    READ_FLAG( uiCode, "mvd_l1_zero_flag" );       rpcSlice->setMvdL1ZeroFlag( (uiCode ? true : false) );
2047  }
2048
2049#if CABAC_INIT_FLAG
2050  rpcSlice->setCabacInitFlag( false ); // default
2051  if(pps->getCabacInitPresentFlag() && !rpcSlice->isIntra())
2052  {
2053    READ_FLAG(uiCode, "cabac_init_flag");
2054    rpcSlice->setCabacInitFlag( uiCode ? true : false );
2055  }
2056#else
2057  if(pps->getEntropyCodingMode() && !rpcSlice->isIntra())
2058  {
2059    READ_UVLC(uiCode, "cabac_init_idc");
2060    rpcSlice->setCABACinitIDC(uiCode);
2061  }
2062  else if (pps->getEntropyCodingMode() && rpcSlice->isIntra())
2063  {
2064    rpcSlice->setCABACinitIDC(0);
2065  }
2066#endif
2067
2068  if(!bEntropySlice)
2069  {
2070    READ_SVLC( iCode, "slice_qp_delta" ); 
2071    rpcSlice->setSliceQp (26 + pps->getPicInitQPMinus26() + iCode);
2072
2073    assert( rpcSlice->getSliceQp() >= -sps->getQpBDOffsetY() );
2074    assert( rpcSlice->getSliceQp() <=  51 );
2075
2076    if (rpcSlice->getPPS()->getDeblockingFilterControlPresent())
2077    {
2078      if ( rpcSlice->getSPS()->getUseDF() )
2079      {
2080        READ_FLAG ( uiCode, "inherit_dbl_param_from_APS_flag" ); rpcSlice->setInheritDblParamFromAPS(uiCode ? 1 : 0);
2081      } else
2082      {
2083        rpcSlice->setInheritDblParamFromAPS(0);
2084      }
2085      if(!rpcSlice->getInheritDblParamFromAPS())
2086      {
2087        READ_FLAG ( uiCode, "disable_deblocking_filter_flag" );  rpcSlice->setLoopFilterDisable(uiCode ? 1 : 0);
2088        if(!rpcSlice->getLoopFilterDisable())
2089        {
2090          READ_SVLC( iCode, "beta_offset_div2" ); rpcSlice->setLoopFilterBetaOffset(iCode);
2091          READ_SVLC( iCode, "tc_offset_div2" ); rpcSlice->setLoopFilterTcOffset(iCode);
2092        }
2093      }
2094   }
2095    if ( rpcSlice->getSliceType() == B_SLICE )
2096    {
2097      READ_FLAG( uiCode, "collocated_from_l0_flag" );
2098      rpcSlice->setColDir(uiCode);
2099    }
2100
2101#if COLLOCATED_REF_IDX
2102    if ( rpcSlice->getSliceType() != I_SLICE &&
2103      ((rpcSlice->getColDir()==0 && rpcSlice->getNumRefIdx(REF_PIC_LIST_0)>1)||
2104      (rpcSlice->getColDir() ==1 && rpcSlice->getNumRefIdx(REF_PIC_LIST_1)>1)))
2105    {
2106      READ_UVLC( uiCode, "collocated_ref_idx" );
2107      rpcSlice->setColRefIdx(uiCode);
2108    }
2109#endif
2110   
2111    if ( (pps->getUseWP() && rpcSlice->getSliceType()==P_SLICE) || (pps->getWPBiPredIdc() && rpcSlice->getSliceType()==B_SLICE) )
2112    {
2113      xParsePredWeightTable(rpcSlice);
2114      rpcSlice->initWpScaling();
2115    }
2116  }
2117 
2118  if (!bEntropySlice)
2119  {
2120    if( rpcSlice->getSPS()->hasCamParInSliceHeader() )
2121    {
2122      UInt uiViewId = rpcSlice->getSPS()->getViewId();
2123      for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ )
2124      {
2125        READ_SVLC( iCode, "coded_scale" );   m_aaiTempScale [ uiBaseId ][ uiViewId ] = iCode;
2126        READ_SVLC( iCode, "coded_offset" );   m_aaiTempOffset[ uiBaseId ][ uiViewId ] = iCode;
2127        READ_SVLC( iCode, "inverse_coded_scale_plus_coded_scale" );   m_aaiTempScale [ uiViewId ][ uiBaseId ] = iCode - m_aaiTempScale [ uiBaseId ][ uiViewId ];
2128        READ_SVLC( iCode, "inverse_coded_offset_plus_coded_offset" );   m_aaiTempOffset[ uiViewId ][ uiBaseId ] = iCode - m_aaiTempOffset[ uiBaseId ][ uiViewId ];
2129      }
2130      rpcSlice->initMultiviewSlice( m_aaiTempScale, m_aaiTempOffset );
2131    }
2132  }
2133
2134#if ( HHI_MPI || H3D_IVMP )
2135  #if ( HHI_MPI && H3D_IVMP )
2136  const int iExtraMergeCandidates = ( sps->getUseMVI() || sps->getMultiviewMvPredMode() ) ? 1 : 0;
2137  #elif HHI_MPI
2138  const int iExtraMergeCandidates = sps->getUseMVI() ? 1 : 0;
2139  #elif MTK_DEPTH_MERGE_TEXTURE_CANDIDATE_C0137
2140  const int iExtraMergeCandidates = (  (isDepth || sps->getMultiviewMvPredMode()) ) ? 1 : 0;   
2141  #else
2142  const int iExtraMergeCandidates = sps->getMultiviewMvPredMode() ? 1 : 0;
2143  #endif
2144  READ_UVLC( uiCode, "5_minus_max_num_merge_cand");
2145  rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS + iExtraMergeCandidates - uiCode);
2146  assert(rpcSlice->getMaxNumMergeCand()==(MRG_MAX_NUM_CANDS_SIGNALED+iExtraMergeCandidates));
2147#else
2148  READ_UVLC( uiCode, "5_minus_max_num_merge_cand");
2149  rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS - uiCode);
2150  assert(rpcSlice->getMaxNumMergeCand()==MRG_MAX_NUM_CANDS_SIGNALED);
2151#endif
2152
2153  if (!bEntropySlice)
2154  {
2155    if(sps->getUseALF() && rpcSlice->getAlfEnabledFlag())
2156    {
2157      UInt uiNumLCUsInWidth   = sps->getPicWidthInLumaSamples()  / g_uiMaxCUWidth;
2158      UInt uiNumLCUsInHeight  = sps->getPicHeightInLumaSamples() / g_uiMaxCUHeight;
2159
2160      uiNumLCUsInWidth  += ( sps->getPicWidthInLumaSamples() % g_uiMaxCUWidth ) ? 1 : 0;
2161      uiNumLCUsInHeight += ( sps->getPicHeightInLumaSamples() % g_uiMaxCUHeight ) ? 1 : 0;
2162
2163      Int uiNumCUsInFrame = uiNumLCUsInWidth* uiNumLCUsInHeight; 
2164      if(sps->getUseALFCoefInSlice())
2165      {
2166        alfParamSet.releaseALFParam();
2167        alfParamSet.init();
2168        Bool isAcrossSlice = sps->getLFCrossSliceBoundaryFlag();   
2169        Int numSUinLCU    = 1<< (g_uiMaxCUDepth << 1); 
2170        Int firstLCUAddr   = rpcSlice->getSliceCurStartCUAddr() / numSUinLCU; 
2171        xParseAlfParam(&alfParamSet, false, firstLCUAddr, isAcrossSlice, uiNumLCUsInWidth, uiNumLCUsInHeight);
2172      }
2173
2174      if(!sps->getUseALFCoefInSlice())
2175      {
2176      xParseAlfCuControlParam(alfCUCtrl, uiNumCUsInFrame);
2177      }
2178
2179    }
2180  }
2181 
2182  //!!!KS: The following syntax is not aligned with the working draft, TRACE support needs to be added
2183  rpcSlice->setTileMarkerFlag ( 0 ); // default
2184  if (!bEntropySlice)
2185  {
2186    xReadCode(1, uiCode); // read flag indicating if tile markers transmitted
2187    rpcSlice->setTileMarkerFlag( uiCode );
2188  }
2189
2190  Int tilesOrEntropyCodingSyncIdc = rpcSlice->getSPS()->getTilesOrEntropyCodingSyncIdc();
2191  UInt *entryPointOffset          = NULL;
2192  UInt numEntryPointOffsets, offsetLenMinus1;
2193
2194  rpcSlice->setNumEntryPointOffsets ( 0 ); // default
2195 
2196  if (tilesOrEntropyCodingSyncIdc>0)
2197  {
2198    READ_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); rpcSlice->setNumEntryPointOffsets ( numEntryPointOffsets );
2199    if (numEntryPointOffsets>0)
2200    {
2201      READ_UVLC(offsetLenMinus1, "offset_len_minus1");
2202    }
2203    entryPointOffset = new UInt[numEntryPointOffsets];
2204    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
2205    {
2206      Int bitsRead = m_pcBitstream->getNumBitsRead();
2207      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset");
2208      entryPointOffset[ idx ] = uiCode;
2209      if ( idx == 0 && tilesOrEntropyCodingSyncIdc == 2 )
2210      {
2211        // Subtract distance from NALU header start to provide WPP 0-th substream the correct size.
2212        entryPointOffset[ idx ] -= ( bitsRead + numEntryPointOffsets*(offsetLenMinus1+1) ) >> 3;
2213      }
2214    }
2215  }
2216
2217  if ( tilesOrEntropyCodingSyncIdc == 1 ) // tiles
2218  {
2219    rpcSlice->setTileLocationCount( numEntryPointOffsets );
2220
2221    UInt prevPos = 0;
2222    for (Int idx=0; idx<rpcSlice->getTileLocationCount(); idx++)
2223    {
2224      rpcSlice->setTileLocation( idx, prevPos + entryPointOffset [ idx ] );
2225      prevPos += entryPointOffset[ idx ];
2226    }
2227  }
2228  else if ( tilesOrEntropyCodingSyncIdc == 2 ) // wavefront
2229  {
2230    Int numSubstreams = pps->getNumSubstreams();
2231    rpcSlice->allocSubstreamSizes(numSubstreams);
2232    UInt *pSubstreamSizes       = rpcSlice->getSubstreamSizes();
2233    for (Int idx=0; idx<numSubstreams-1; idx++)
2234    {
2235      if ( idx < numEntryPointOffsets )
2236      {
2237        pSubstreamSizes[ idx ] = ( entryPointOffset[ idx ] << 3 ) ;
2238      }
2239      else
2240      {
2241        pSubstreamSizes[ idx ] = 0;
2242      }
2243    }
2244  }
2245
2246  if (entryPointOffset)
2247  {
2248    delete [] entryPointOffset;
2249  }
2250
2251  if (!bEntropySlice)
2252  {
2253    // Reading location information
2254
2255      // read out trailing bits
2256    m_pcBitstream->readOutTrailingBits();
2257  }
2258  return;
2259}
2260
2261Void TDecCavlc::xParseAlfCuControlParam(AlfCUCtrlInfo& cAlfParam, Int iNumCUsInPic)
2262{
2263  UInt uiSymbol;
2264  Int iSymbol;
2265
2266  READ_FLAG (uiSymbol, "alf_cu_control_flag");
2267  cAlfParam.cu_control_flag = uiSymbol;
2268  if (cAlfParam.cu_control_flag)
2269  {
2270    READ_UVLC (uiSymbol, "alf_cu_control_max_depth"); 
2271    cAlfParam.alf_max_depth = uiSymbol;
2272
2273    READ_SVLC (iSymbol, "alf_length_cu_control_info");
2274    cAlfParam.num_alf_cu_flag = (UInt)(iSymbol + iNumCUsInPic);
2275
2276    cAlfParam.alf_cu_flag.resize(cAlfParam.num_alf_cu_flag);
2277
2278    for(UInt i=0; i< cAlfParam.num_alf_cu_flag; i++)
2279    {
2280      READ_FLAG (cAlfParam.alf_cu_flag[i], "alf_cu_flag");
2281    }
2282  }
2283}
2284
2285#if !CABAC_INIT_FLAG
2286Void TDecCavlc::resetEntropy          (TComSlice* pcSlice)
2287{
2288}
2289#endif
2290
2291Void TDecCavlc::parseTerminatingBit( UInt& ruiBit )
2292{
2293  ruiBit = false;
2294  Int iBitsLeft = m_pcBitstream->getNumBitsLeft();
2295  if(iBitsLeft <= 8)
2296  {
2297    UInt uiPeekValue = m_pcBitstream->peekBits(iBitsLeft);
2298    if (uiPeekValue == (1<<(iBitsLeft-1)))
2299    {
2300      ruiBit = true;
2301    }
2302  }
2303}
2304
2305Void TDecCavlc::parseSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2306{
2307  assert(0);
2308}
2309
2310#if LGE_ILLUCOMP_B0045
2311Void TDecCavlc::parseICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2312{
2313  assert(0);
2314}
2315#endif
2316
2317#if H3D_IVMP
2318Void TDecCavlc::parseMVPIdx( Int& riMVPIdx, Int iAMVPCands )
2319#else
2320Void TDecCavlc::parseMVPIdx( Int& riMVPIdx )
2321#endif
2322{
2323  assert(0);
2324}
2325
2326Void TDecCavlc::parseSplitFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2327{
2328  assert(0);
2329}
2330
2331Void TDecCavlc::parsePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2332{
2333  assert(0);
2334}
2335
2336Void TDecCavlc::parsePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2337{
2338  assert(0);
2339}
2340
2341/** Parse I_PCM information.
2342 * \param pcCU pointer to CU
2343 * \param uiAbsPartIdx CU index
2344 * \param uiDepth CU depth
2345 * \returns Void
2346 *
2347 * If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes. 
2348 */
2349Void TDecCavlc::parseIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2350{
2351  assert(0);
2352}
2353
2354Void TDecCavlc::parseIntraDirLumaAng  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2355{ 
2356  assert(0);
2357}
2358
2359Void TDecCavlc::parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2360{
2361  assert(0);
2362}
2363
2364Void TDecCavlc::parseInterDir( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth )
2365{
2366  assert(0);
2367}
2368
2369Void TDecCavlc::parseRefFrmIdx( TComDataCU* pcCU, Int& riRefFrmIdx, UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList )
2370{
2371  assert(0);
2372}
2373
2374Void TDecCavlc::parseMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList )
2375{
2376  assert(0);
2377}
2378
2379Void TDecCavlc::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2380{
2381  Int qp;
2382  Int  iDQp;
2383 
2384  xReadSvlc( iDQp );
2385
2386  Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY();
2387  qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) -  qpBdOffsetY;
2388
2389  UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)))<<(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)) ;
2390  UInt uiQpCUDepth =   min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ;
2391
2392  pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth );
2393}
2394
2395Void TDecCavlc::parseCoeffNxN( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType )
2396{
2397  assert(0);
2398}
2399
2400Void TDecCavlc::parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize )
2401{
2402  assert(0);
2403}
2404
2405Void TDecCavlc::parseQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth )
2406{
2407  assert(0);
2408}
2409
2410Void TDecCavlc::parseQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& uiQtRootCbf )
2411{
2412  assert(0);
2413}
2414
2415
2416Void TDecCavlc::parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx )
2417{
2418  assert(0);
2419}
2420
2421Void TDecCavlc::parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth )
2422{
2423  assert(0);
2424}
2425
2426#if H3D_IVRP
2427Void
2428TDecCavlc::parseResPredFlag( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth )
2429{
2430  assert(0);
2431}
2432#endif
2433
2434#if RWTH_SDC_DLT_B0036
2435Void TDecCavlc::parseSDCFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2436{
2437  assert(0);
2438}
2439Void TDecCavlc::parseSDCPredMode    ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2440{
2441  assert(0);
2442}
2443Void TDecCavlc::parseSDCResidualData     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart )
2444{
2445  assert(0);
2446}
2447#endif
2448
2449// ====================================================================================================================
2450// Protected member functions
2451// ====================================================================================================================
2452
2453Void TDecCavlc::xReadCode (UInt uiLength, UInt& ruiCode)
2454{
2455  assert ( uiLength > 0 );
2456  m_pcBitstream->read (uiLength, ruiCode);
2457}
2458
2459Void TDecCavlc::xReadUvlc( UInt& ruiVal)
2460{
2461  UInt uiVal = 0;
2462  UInt uiCode = 0;
2463  UInt uiLength;
2464  m_pcBitstream->read( 1, uiCode );
2465 
2466  if( 0 == uiCode )
2467  {
2468    uiLength = 0;
2469   
2470    while( ! ( uiCode & 1 ))
2471    {
2472      m_pcBitstream->read( 1, uiCode );
2473      uiLength++;
2474    }
2475   
2476    m_pcBitstream->read( uiLength, uiVal );
2477   
2478    uiVal += (1 << uiLength)-1;
2479  }
2480 
2481  ruiVal = uiVal;
2482}
2483
2484Void TDecCavlc::xReadSvlc( Int& riVal)
2485{
2486  UInt uiBits = 0;
2487  m_pcBitstream->read( 1, uiBits );
2488  if( 0 == uiBits )
2489  {
2490    UInt uiLength = 0;
2491   
2492    while( ! ( uiBits & 1 ))
2493    {
2494      m_pcBitstream->read( 1, uiBits );
2495      uiLength++;
2496    }
2497   
2498    m_pcBitstream->read( uiLength, uiBits );
2499   
2500    uiBits += (1 << uiLength);
2501    riVal = ( uiBits & 1) ? -(Int)(uiBits>>1) : (Int)(uiBits>>1);
2502  }
2503  else
2504  {
2505    riVal = 0;
2506  }
2507}
2508
2509Void TDecCavlc::xReadFlag (UInt& ruiCode)
2510{
2511  m_pcBitstream->read( 1, ruiCode );
2512}
2513
2514#if QC_MVHEVC_B0046
2515/** Parse VPS alignment one bits.
2516 * \returns Void
2517 */
2518Void TDecCavlc::xReadVPSAlignOne( )
2519{
2520  UInt uiNumberOfBits = m_pcBitstream->getNumBitsUntilByteAligned();
2521
2522  if(uiNumberOfBits)
2523  {
2524    UInt uiBits;
2525    UInt uiSymbol;
2526
2527    for(uiBits = 0; uiBits < uiNumberOfBits; uiBits++)
2528    {
2529      xReadFlag( uiSymbol );
2530
2531      if(!uiSymbol)
2532      {
2533        printf("\nWarning! vps_extension_byte_alignment_reserved_one_bit include a non-zero value.\n");
2534      }
2535    }
2536  }
2537}
2538#endif
2539/** Parse PCM alignment zero bits.
2540 * \returns Void
2541 */
2542Void TDecCavlc::xReadPCMAlignZero( )
2543{
2544  UInt uiNumberOfBits = m_pcBitstream->getNumBitsUntilByteAligned();
2545
2546  if(uiNumberOfBits)
2547  {
2548    UInt uiBits;
2549    UInt uiSymbol;
2550
2551    for(uiBits = 0; uiBits < uiNumberOfBits; uiBits++)
2552    {
2553      xReadFlag( uiSymbol );
2554
2555      if(uiSymbol)
2556      {
2557        printf("\nWarning! pcm_align_zero include a non-zero value.\n");
2558      }
2559    }
2560  }
2561}
2562
2563Void TDecCavlc::xReadUnaryMaxSymbol( UInt& ruiSymbol, UInt uiMaxSymbol )
2564{
2565  if (uiMaxSymbol == 0)
2566  {
2567    ruiSymbol = 0;
2568    return;
2569  }
2570 
2571  xReadFlag( ruiSymbol );
2572 
2573  if (ruiSymbol == 0 || uiMaxSymbol == 1)
2574  {
2575    return;
2576  }
2577 
2578  UInt uiSymbol = 0;
2579  UInt uiCont;
2580 
2581  do
2582  {
2583    xReadFlag( uiCont );
2584    uiSymbol++;
2585  }
2586  while( uiCont && (uiSymbol < uiMaxSymbol-1) );
2587 
2588  if( uiCont && (uiSymbol == uiMaxSymbol-1) )
2589  {
2590    uiSymbol++;
2591  }
2592 
2593  ruiSymbol = uiSymbol;
2594}
2595
2596Void TDecCavlc::xReadExGolombLevel( UInt& ruiSymbol )
2597{
2598  UInt uiSymbol ;
2599  UInt uiCount = 0;
2600  do
2601  {
2602    xReadFlag( uiSymbol );
2603    uiCount++;
2604  }
2605  while( uiSymbol && (uiCount != 13));
2606 
2607  ruiSymbol = uiCount-1;
2608 
2609  if( uiSymbol )
2610  {
2611    xReadEpExGolomb( uiSymbol, 0 );
2612    ruiSymbol += uiSymbol+1;
2613  }
2614 
2615  return;
2616}
2617
2618Void TDecCavlc::xReadEpExGolomb( UInt& ruiSymbol, UInt uiCount )
2619{
2620  UInt uiSymbol = 0;
2621  UInt uiBit = 1;
2622 
2623 
2624  while( uiBit )
2625  {
2626    xReadFlag( uiBit );
2627    uiSymbol += uiBit << uiCount++;
2628  }
2629 
2630  uiCount--;
2631  while( uiCount-- )
2632  {
2633    xReadFlag( uiBit );
2634    uiSymbol += uiBit << uiCount;
2635  }
2636 
2637  ruiSymbol = uiSymbol;
2638 
2639  return;
2640}
2641
2642UInt TDecCavlc::xGetBit()
2643{
2644  UInt ruiCode;
2645  m_pcBitstream->read( 1, ruiCode );
2646  return ruiCode;
2647}
2648
2649
2650/** parse explicit wp tables
2651 * \param TComSlice* pcSlice
2652 * \returns Void
2653 */
2654Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice )
2655{
2656  wpScalingParam  *wp;
2657  Bool            bChroma     = true; // color always present in HEVC ?
2658  TComPPS*        pps         = pcSlice->getPPS();
2659  SliceType       eSliceType  = pcSlice->getSliceType();
2660  Int             iNbRef       = (eSliceType == B_SLICE ) ? (2) : (1);
2661  UInt            uiLog2WeightDenomLuma, uiLog2WeightDenomChroma;
2662  UInt            uiMode      = 0;
2663
2664  if ( (eSliceType==P_SLICE && pps->getUseWP()) || (eSliceType==B_SLICE && pps->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag()==0) )
2665    uiMode = 1; // explicit
2666  else if ( eSliceType==B_SLICE && pps->getWPBiPredIdc()==2 )
2667    uiMode = 2; // implicit
2668  else if (eSliceType==B_SLICE && pps->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag())
2669    uiMode = 3; // combined explicit
2670
2671  if ( uiMode == 1 )  // explicit
2672  {
2673    printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) explicit...\n", pcSlice->getPOC());
2674    Int iDeltaDenom;
2675    // decode delta_luma_log2_weight_denom :
2676    READ_UVLC( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
2677    if( bChroma ) 
2678    {
2679      READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );     // se(v): delta_chroma_log2_weight_denom
2680      assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
2681      uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
2682    }
2683
2684    for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) 
2685    {
2686      RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
2687      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
2688      {
2689        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2690
2691        wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
2692        wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2693        wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2694
2695        UInt  uiCode;
2696        READ_FLAG( uiCode, "luma_weight_lX_flag" );           // u(1): luma_weight_l0_flag
2697        wp[0].bPresentFlag = ( uiCode == 1 );
2698        if ( wp[0].bPresentFlag ) 
2699        {
2700          Int iDeltaWeight;
2701          READ_SVLC( iDeltaWeight, "delta_luma_weight_lX" );  // se(v): delta_luma_weight_l0[i]
2702          wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
2703          READ_SVLC( wp[0].iOffset, "luma_offset_lX" );       // se(v): luma_offset_l0[i]
2704        }
2705        else 
2706        {
2707          wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
2708          wp[0].iOffset = 0;
2709        }
2710        if ( bChroma ) 
2711        {
2712          READ_FLAG( uiCode, "chroma_weight_lX_flag" );      // u(1): chroma_weight_l0_flag
2713          wp[1].bPresentFlag = ( uiCode == 1 );
2714          wp[2].bPresentFlag = ( uiCode == 1 );
2715          if ( wp[1].bPresentFlag ) 
2716          {
2717            for ( Int j=1 ; j<3 ; j++ ) 
2718            {
2719              Int iDeltaWeight;
2720              READ_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );  // se(v): chroma_weight_l0[i][j]
2721              wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
2722
2723              Int iDeltaChroma;
2724              READ_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );  // se(v): delta_chroma_offset_l0[i][j]
2725              wp[j].iOffset = iDeltaChroma - ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) + (g_uiIBDI_MAX>>1);
2726            }
2727          }
2728          else 
2729          {
2730            for ( Int j=1 ; j<3 ; j++ ) 
2731            {
2732              wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
2733              wp[j].iOffset = 0;
2734            }
2735          }
2736        }
2737      }
2738
2739      for ( Int iRefIdx=pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx<MAX_NUM_REF ; iRefIdx++ ) 
2740      {
2741        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2742
2743        wp[0].bPresentFlag = false;
2744        wp[1].bPresentFlag = false;
2745        wp[2].bPresentFlag = false;
2746      }
2747    }
2748  }
2749  else if ( uiMode == 2 )  // implicit
2750  {
2751    printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) implicit...\n", pcSlice->getPOC());
2752  }
2753  else if ( uiMode == 3 )  // combined explicit
2754  {
2755    printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) combined explicit...\n", pcSlice->getPOC());
2756    Int iDeltaDenom;
2757    // decode delta_luma_log2_weight_denom :
2758    READ_UVLC ( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
2759    if( bChroma ) 
2760    {
2761      READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );      // ue(v): delta_chroma_log2_weight_denom
2762      assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
2763      uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
2764    }
2765
2766    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx++ ) 
2767    {
2768      pcSlice->getWpScalingLC(iRefIdx, wp);
2769
2770      wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
2771      wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2772      wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2773
2774      UInt  uiCode;
2775      READ_FLAG( uiCode, "luma_weight_lc_flag" );                  // u(1): luma_weight_lc_flag
2776      wp[0].bPresentFlag = ( uiCode == 1 );
2777      if ( wp[0].bPresentFlag ) 
2778      {
2779        Int iDeltaWeight;
2780        READ_SVLC( iDeltaWeight, "delta_luma_weight_lc" );          // se(v): delta_luma_weight_lc
2781        wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
2782        READ_SVLC( wp[0].iOffset, "luma_offset_lc" );               // se(v): luma_offset_lc
2783      }
2784      else 
2785      {
2786        wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
2787        wp[0].iOffset = 0;
2788      }
2789      if ( bChroma ) 
2790      {
2791        READ_FLAG( uiCode, "chroma_weight_lc_flag" );                // u(1): chroma_weight_lc_flag
2792        wp[1].bPresentFlag = ( uiCode == 1 );
2793        wp[2].bPresentFlag = ( uiCode == 1 );
2794        if ( wp[1].bPresentFlag ) 
2795        {
2796          for ( Int j=1 ; j<3 ; j++ ) 
2797          {
2798            Int iDeltaWeight;
2799            READ_SVLC( iDeltaWeight, "delta_chroma_weight_lc" );      // se(v): delta_chroma_weight_lc
2800            wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
2801
2802            Int iDeltaChroma;
2803            READ_SVLC( iDeltaChroma, "delta_chroma_offset_lc" );      // se(v): delta_chroma_offset_lc
2804            wp[j].iOffset = iDeltaChroma - ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) + (g_uiIBDI_MAX>>1);
2805          }
2806        }
2807        else 
2808        {
2809          for ( Int j=1 ; j<3 ; j++ ) 
2810          {
2811            wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
2812            wp[j].iOffset = 0;
2813          }
2814        }
2815      }
2816    }
2817
2818    for ( Int iRefIdx=pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx<2*MAX_NUM_REF ; iRefIdx++ ) 
2819    {
2820      pcSlice->getWpScalingLC(iRefIdx, wp);
2821
2822      wp[0].bPresentFlag = false;
2823      wp[1].bPresentFlag = false;
2824      wp[2].bPresentFlag = false;
2825    }
2826  }
2827  else
2828  {
2829    printf("\n wrong weight pred table syntax \n ");
2830    assert(0);
2831  }
2832}
2833
2834/** decode quantization matrix
2835 * \param scalingList quantization matrix information
2836 */
2837Void TDecCavlc::parseScalingList(TComScalingList* scalingList)
2838{
2839  UInt  code, sizeId, listId;
2840  Bool scalingListPredModeFlag;
2841  READ_FLAG( code, "scaling_list_present_flag" );
2842  scalingList->setScalingListPresentFlag ( (code==1)?true:false );
2843  if(scalingList->getScalingListPresentFlag() == false)
2844  {
2845      //for each size
2846    for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2847    {
2848      for(listId = 0; listId <  g_scalingListNum[sizeId]; listId++)
2849      {
2850        READ_FLAG( code, "scaling_list_pred_mode_flag");
2851        scalingListPredModeFlag = (code) ? true : false;
2852        if(!scalingListPredModeFlag) //Copy Mode
2853        {
2854          READ_UVLC( code, "scaling_list_pred_matrix_id_delta");
2855          scalingList->setRefMatrixId (sizeId,listId,(UInt)((Int)(listId)-(code+1)));
2856          if( sizeId > SCALING_LIST_8x8 )
2857          {
2858            scalingList->setScalingListDC(sizeId,listId,scalingList->getScalingListDC(sizeId, scalingList->getRefMatrixId (sizeId,listId)));
2859          }
2860          scalingList->processRefMatrix( sizeId, listId, scalingList->getRefMatrixId (sizeId,listId));
2861         
2862        }
2863        else //DPCM Mode
2864        {
2865          xDecodeScalingList(scalingList, sizeId, listId);
2866        }
2867      }
2868    }
2869  }
2870
2871  return;
2872}
2873/** decode DPCM
2874 * \param scalingList  quantization matrix information
2875 * \param sizeId size index
2876 * \param listId list index
2877 */
2878Void TDecCavlc::xDecodeScalingList(TComScalingList *scalingList, UInt sizeId, UInt listId)
2879{
2880  Int i,coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
2881  Int data;
2882  Int scalingListDcCoefMinus8 = 0;
2883  Int nextCoef = SCALING_LIST_START_VALUE;
2884  UInt* scan  = g_auiFrameScanXY [ (sizeId == 0)? 1 : 2 ];
2885  Bool stopNow = false;
2886  Int *dst = scalingList->getScalingListAddress(sizeId, listId);
2887
2888  scalingList->setUseDefaultScalingMatrixFlag(sizeId,listId,false);
2889  if( sizeId > SCALING_LIST_8x8 )
2890  {
2891    READ_SVLC( scalingListDcCoefMinus8, "scaling_list_dc_coef_minus8");
2892    scalingList->setScalingListDC(sizeId,listId,scalingListDcCoefMinus8 + 8);
2893    if(scalingListDcCoefMinus8 == -8)
2894    {
2895      scalingList->processDefaultMarix(sizeId,listId);
2896    }
2897  }
2898
2899  if( !scalingList->getUseDefaultScalingMatrixFlag(sizeId,listId))
2900  {
2901    for(i = 0; i < coefNum && !stopNow ; i++)
2902    {
2903      READ_SVLC( data, "scaling_list_delta_coef");
2904      nextCoef = (nextCoef + data + 256 ) % 256;
2905      if(sizeId < SCALING_LIST_16x16)
2906      {
2907        if( i == 0 && nextCoef == 0 )
2908        {
2909          scalingList->processDefaultMarix(sizeId,listId);
2910          stopNow = true;
2911        }
2912      }
2913      if(!stopNow)
2914      {
2915        dst[scan[i]] = nextCoef;
2916      }
2917    }
2918  }
2919}
2920
2921Void TDecCavlc::parseDFFlag(UInt& ruiVal, const Char *pSymbolName)
2922{
2923  READ_FLAG(ruiVal, pSymbolName);
2924}
2925Void TDecCavlc::parseDFSvlc(Int&  riVal, const Char *pSymbolName)
2926{
2927  READ_SVLC(riVal, pSymbolName);
2928}
2929
2930Bool TDecCavlc::xMoreRbspData()
2931{ 
2932  Int bitsLeft = m_pcBitstream->getNumBitsLeft();
2933
2934  // if there are more than 8 bits, it cannot be rbsp_trailing_bits
2935  if (bitsLeft > 8)
2936  {
2937    return true;
2938  }
2939
2940  UChar lastByte = m_pcBitstream->peekBits(bitsLeft);
2941  Int cnt = bitsLeft;
2942
2943  // remove trailing bits equal to zero
2944  while ((cnt>0) && ((lastByte & 1) == 0))
2945  {
2946    lastByte >>= 1;
2947    cnt--;
2948  }
2949  // remove bit equal to one
2950  cnt--;
2951
2952  // we should not have a negative number of bits
2953  assert (cnt>=0);
2954
2955  // we have more data, if cnt is not zero
2956  return (cnt>0);
2957}
2958
2959//! \}
Note: See TracBrowser for help on using the repository browser.