source: 3DVCSoftware/branches/HTM-6.2-dev1-MediaTek/source/Lib/TLibDecoder/TDecCAVLC.cpp

Last change on this file was 384, checked in by mediatek-htm, 12 years ago

D0156 source code

  • Property svn:eol-style set to native
File size: 93.5 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#if MTK_D0156
1606
1607      pcSPS->setUseVSPCompensation( false );
1608      pcSPS->setUseDVPRefine( false );
1609
1610      //Comments: Currently, BVSP and DoNBDV are not used for depth coding
1611#if MERL_VSP_COMPENSATION_C0152
1612      READ_FLAG( uiCode, "view_synthesis_pred_flag" );pcSPS->setUseVSPCompensation( uiCode ? true : false );
1613#endif
1614      READ_FLAG( uiCode, "dv_refine_flag" );          pcSPS->setUseDVPRefine( uiCode ? true : false );
1615#endif
1616    }
1617    READ_FLAG( uiCode, "sps_extension2_flag");
1618    if (uiCode)
1619    {
1620      while ( xMoreRbspData() )
1621      {
1622        READ_FLAG( uiCode, "sps_extension2_data_flag");
1623      }
1624    }
1625  }
1626#endif
1627}
1628
1629Void TDecCavlc::readTileMarker   ( UInt& uiTileIdx, UInt uiBitsUsed )
1630{
1631  xReadCode ( uiBitsUsed, uiTileIdx );
1632}
1633
1634#if MTK_DEPTH_MERGE_TEXTURE_CANDIDATE_C0137
1635Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet, bool isDepth)
1636#else
1637Void TDecCavlc::parseSliceHeader (TComSlice*& rpcSlice, ParameterSetManagerDecoder *parameterSetManager, AlfCUCtrlInfo &alfCUCtrl, AlfParamSet& alfParamSet)
1638#endif
1639{
1640  UInt  uiCode;
1641  Int   iCode;
1642 
1643#if ENC_DEC_TRACE
1644  xTraceSliceHeader(rpcSlice);
1645#endif
1646  Int numCUs = ((rpcSlice->getSPS()->getPicWidthInLumaSamples()+rpcSlice->getSPS()->getMaxCUWidth()-1)/rpcSlice->getSPS()->getMaxCUWidth())*((rpcSlice->getSPS()->getPicHeightInLumaSamples()+rpcSlice->getSPS()->getMaxCUHeight()-1)/rpcSlice->getSPS()->getMaxCUHeight());
1647  Int maxParts = (1<<(rpcSlice->getSPS()->getMaxCUDepth()<<1));
1648  Int numParts = (1<<(rpcSlice->getPPS()->getSliceGranularity()<<1));
1649  UInt lCUAddress = 0;
1650  Int reqBitsOuter = 0;
1651  while(numCUs>(1<<reqBitsOuter))
1652  {
1653    reqBitsOuter++;
1654  }
1655  Int reqBitsInner = 0;
1656  while((numParts)>(1<<reqBitsInner)) 
1657  {
1658    reqBitsInner++;
1659  }
1660
1661  READ_FLAG( uiCode, "first_slice_in_pic_flag" );
1662  UInt address;
1663  UInt innerAddress = 0;
1664
1665#if LGE_ILLUCOMP_B0045
1666  // IC flag is on only first_slice_in_pic
1667  if (uiCode)
1668  {
1669    UInt uiCodeTmp = 0;
1670    if ( rpcSlice->getSPS()->getViewId() 
1671#if !LGE_ILLUCOMP_DEPTH_C0046
1672        && !rpcSlice->getSPS()->isDepth()
1673#endif
1674        )
1675    {
1676      READ_FLAG (uiCodeTmp, "applying IC flag");
1677    }
1678    rpcSlice->setApplyIC(uiCodeTmp);
1679#if SHARP_ILLUCOMP_PARSE_D0060
1680    if (rpcSlice->getApplyIC())
1681    {
1682      READ_FLAG (uiCodeTmp, "ic_skip_mergeidx0");
1683      rpcSlice->setIcSkipParseFlag(uiCodeTmp);
1684    }
1685#endif
1686  }
1687#endif
1688
1689  if(!uiCode)
1690  {
1691    READ_CODE( reqBitsOuter+reqBitsInner, address, "slice_address" );
1692    lCUAddress = address >> reqBitsInner;
1693    innerAddress = address - (lCUAddress<<reqBitsInner);
1694  }
1695  //set uiCode to equal slice start address (or entropy slice start address)
1696  uiCode=(maxParts*lCUAddress)+(innerAddress*(maxParts>>(rpcSlice->getPPS()->getSliceGranularity()<<1)));
1697 
1698  rpcSlice->setEntropySliceCurStartCUAddr( uiCode );
1699  rpcSlice->setEntropySliceCurEndCUAddr(numCUs*maxParts);
1700
1701  //   slice_type
1702  READ_UVLC (    uiCode, "slice_type" );            rpcSlice->setSliceType((SliceType)uiCode);
1703  // lightweight_slice_flag
1704  READ_FLAG( uiCode, "entropy_slice_flag" );
1705  Bool bEntropySlice = uiCode ? true : false;
1706
1707  if (bEntropySlice)
1708  {
1709    rpcSlice->setNextSlice        ( false );
1710    rpcSlice->setNextEntropySlice ( true  );
1711  }
1712  else
1713  {
1714    rpcSlice->setNextSlice        ( true  );
1715    rpcSlice->setNextEntropySlice ( false );
1716   
1717    uiCode=(maxParts*lCUAddress)+(innerAddress*(maxParts>>(rpcSlice->getPPS()->getSliceGranularity()<<1)));
1718    rpcSlice->setSliceCurStartCUAddr(uiCode);
1719    rpcSlice->setSliceCurEndCUAddr(numCUs*maxParts);
1720  }
1721  TComPPS* pps = NULL;
1722  TComSPS* sps = NULL;
1723
1724  if (!bEntropySlice)
1725  {
1726    READ_UVLC (    uiCode, "pic_parameter_set_id" );  rpcSlice->setPPSId(uiCode);
1727    pps = parameterSetManager->getPrefetchedPPS(uiCode);
1728    sps = parameterSetManager->getPrefetchedSPS(pps->getSPSId());
1729    rpcSlice->setSPS(sps);
1730    rpcSlice->setPPS(pps);
1731    if( pps->getOutputFlagPresentFlag() )
1732    {
1733      READ_FLAG( uiCode, "pic_output_flag" );
1734      rpcSlice->setPicOutputFlag( uiCode ? true : false );
1735    }
1736    else
1737    {
1738      rpcSlice->setPicOutputFlag( true );
1739    }
1740#if QC_REM_IDV_B0046
1741#if !QC_MVHEVC_B0046
1742  if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getSPS()->getViewId() == 0) 
1743#else
1744  if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR && rpcSlice->getViewId() == 0) 
1745#endif
1746#else
1747    if(rpcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR) 
1748#endif
1749    { 
1750      READ_UVLC( uiCode, "idr_pic_id" );  //ignored
1751      READ_FLAG( uiCode, "no_output_of_prior_pics_flag" );  //ignored
1752      rpcSlice->setPOC(0);
1753      TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
1754      rps->setNumberOfNegativePictures(0);
1755      rps->setNumberOfPositivePictures(0);
1756      rps->setNumberOfLongtermPictures(0);
1757      rps->setNumberOfPictures(0);
1758      rpcSlice->setRPS(rps);
1759    }
1760    else
1761    {
1762      READ_CODE(sps->getBitsForPOC(), uiCode, "pic_order_cnt_lsb"); 
1763      Int iPOClsb = uiCode;
1764      Int iPrevPOC = rpcSlice->getPrevPOC();
1765      Int iMaxPOClsb = 1<< sps->getBitsForPOC();
1766      Int iPrevPOClsb = iPrevPOC%iMaxPOClsb;
1767      Int iPrevPOCmsb = iPrevPOC-iPrevPOClsb;
1768      Int iPOCmsb;
1769      if( ( iPOClsb  <  iPrevPOClsb ) && ( ( iPrevPOClsb - iPOClsb )  >=  ( iMaxPOClsb / 2 ) ) )
1770      {
1771        iPOCmsb = iPrevPOCmsb + iMaxPOClsb;
1772      }
1773      else if( (iPOClsb  >  iPrevPOClsb )  && ( (iPOClsb - iPrevPOClsb )  >  ( iMaxPOClsb / 2 ) ) ) 
1774      {
1775        iPOCmsb = iPrevPOCmsb - iMaxPOClsb;
1776      }
1777      else
1778      {
1779        iPOCmsb = iPrevPOCmsb;
1780      }
1781      rpcSlice->setPOC( iPOCmsb+iPOClsb );
1782#if QC_REM_IDV_B0046
1783#if !QC_MVHEVC_B0046
1784      if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR &&  rpcSlice->getSPS()->getViewId() && rpcSlice->getPOC() == 0 )
1785#else
1786      if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR &&  rpcSlice->getViewId() && rpcSlice->getPOC() == 0 )
1787#endif
1788#else
1789      if( rpcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDV && rpcSlice->getPOC() == 0 )
1790#endif
1791      {
1792        TComReferencePictureSet* rps = rpcSlice->getLocalRPS();
1793        rps->setNumberOfNegativePictures(0);
1794        rps->setNumberOfPositivePictures(0);
1795        rps->setNumberOfLongtermPictures(0);
1796        rps->setNumberOfPictures(0);
1797        rpcSlice->setRPS(rps);
1798      }
1799      else
1800      {
1801        TComReferencePictureSet* rps;
1802        READ_FLAG( uiCode, "short_term_ref_pic_set_sps_flag" );
1803        if(uiCode == 0) // use short-term reference picture set explicitly signalled in slice header
1804        {
1805          rps = rpcSlice->getLocalRPS();
1806          parseShortTermRefPicSet(sps,rps, sps->getRPSList()->getNumberOfReferencePictureSets());
1807          rpcSlice->setRPS(rps);
1808        }
1809        else // use reference to short-term reference picture set in PPS
1810        {
1811          READ_UVLC( uiCode, "short_term_ref_pic_set_idx"); rpcSlice->setRPS(sps->getRPSList()->getReferencePictureSet(uiCode));
1812          rps = rpcSlice->getRPS();
1813        }
1814        if(sps->getLongTermRefsPresent())
1815        {
1816          Int offset = rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures();
1817          READ_UVLC( uiCode, "num_long_term_pics");             rps->setNumberOfLongtermPictures(uiCode);
1818          Int prev = 0;
1819          Int prevMsb=0;
1820          Int prevDeltaPocLt=0;
1821          for(Int j=rps->getNumberOfLongtermPictures()+offset-1 ; j > offset-1; j--)
1822          {
1823            READ_UVLC(uiCode,"delta_poc_lsb_lt"); 
1824            prev += uiCode;
1825
1826            READ_FLAG(uiCode,"delta_poc_msb_present_flag");
1827            Int decDeltaPOCMsbPresent=uiCode;
1828
1829            if(decDeltaPOCMsbPresent==1)
1830            {
1831              READ_UVLC(uiCode, "delta_poc_msb_cycle_lt_minus1");
1832              if(  (j==(rps->getNumberOfLongtermPictures()+offset-1)) || (prev!=prevDeltaPocLt) )
1833              {
1834                prevMsb=(1+uiCode); 
1835              }
1836              else
1837              {
1838                prevMsb+=(1+uiCode); 
1839              }
1840              Int decMaxPocLsb = 1<<rpcSlice->getSPS()->getBitsForPOC();
1841              rps->setPOC(j,rpcSlice->getPOC()-prev-(prevMsb)*decMaxPocLsb); 
1842              rps->setDeltaPOC(j,-(Int)(prev+(prevMsb)*decMaxPocLsb));
1843            }
1844            else
1845            {
1846              rps->setPOC(j,rpcSlice->getPOC()-prev);         
1847              rps->setDeltaPOC(j,-(Int)prev);
1848            }
1849            prevDeltaPocLt=prev;
1850            READ_FLAG( uiCode, "used_by_curr_pic_lt_flag");     rps->setUsed(j,uiCode);
1851          }
1852          offset += rps->getNumberOfLongtermPictures();
1853          rps->setNumberOfPictures(offset);       
1854        } 
1855      }
1856    }
1857
1858    if(sps->getUseSAO() || sps->getUseALF() || sps->getScalingListFlag() || sps->getUseDF())
1859    {
1860      //!!!KS: order is different in WD5!
1861      if (sps->getUseALF())
1862      {
1863        READ_FLAG(uiCode, "slice_adaptive_loop_filter_flag");
1864        rpcSlice->setAlfEnabledFlag((Bool)uiCode);
1865      }
1866      if (sps->getUseSAO())
1867      {
1868        READ_FLAG(uiCode, "slice_sao_interleaving_flag");        rpcSlice->setSaoInterleavingFlag(uiCode);
1869        READ_FLAG(uiCode, "slice_sample_adaptive_offset_flag");  rpcSlice->setSaoEnabledFlag((Bool)uiCode);
1870        if (rpcSlice->getSaoEnabledFlag() && rpcSlice->getSaoInterleavingFlag())
1871        {
1872          READ_FLAG(uiCode, "sao_cb_enable_flag");  rpcSlice->setSaoEnabledFlagCb((Bool)uiCode);
1873          READ_FLAG(uiCode, "sao_cr_enable_flag");  rpcSlice->setSaoEnabledFlagCr((Bool)uiCode);
1874        }
1875        else
1876        {
1877          rpcSlice->setSaoEnabledFlagCb(0);
1878          rpcSlice->setSaoEnabledFlagCr(0);
1879        }
1880      }
1881      READ_UVLC (    uiCode, "aps_id" );  rpcSlice->setAPSId(uiCode);
1882    }
1883    if (!rpcSlice->isIntra())
1884    {
1885      READ_FLAG( uiCode, "num_ref_idx_active_override_flag");
1886      if (uiCode)
1887      {
1888        READ_CODE (3, uiCode, "num_ref_idx_l0_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_0, uiCode + 1 );
1889        if (rpcSlice->isInterB())
1890        {
1891          READ_CODE (3, uiCode, "num_ref_idx_l1_active_minus1" );  rpcSlice->setNumRefIdx( REF_PIC_LIST_1, uiCode + 1 );
1892        }
1893        else
1894        {
1895          rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1896        }
1897      }
1898      else
1899      {
1900        rpcSlice->setNumRefIdx(REF_PIC_LIST_0, 0);
1901        rpcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1902      }
1903    }
1904    TComRefPicListModification* refPicListModification = rpcSlice->getRefPicListModification();
1905    if( !rpcSlice->isIntra() )
1906    {
1907#if QC_MVHEVC_B0046
1908    if( !rpcSlice->getViewId() || !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1909#else
1910      if( !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1911#endif
1912      {
1913        refPicListModification->setRefPicListModificationFlagL0( 0 );
1914      }
1915      else
1916      {
1917        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l0" ); refPicListModification->setRefPicListModificationFlagL0( uiCode ? 1 : 0 );
1918      }
1919     
1920      if(refPicListModification->getRefPicListModificationFlagL0())
1921      {
1922        uiCode = 0;
1923        Int i = 0;
1924        Int NumPocTotalCurr = rpcSlice->getNumPocTotalCurrMvc();
1925        if ( NumPocTotalCurr > 1 )
1926        {
1927          Int length = 1;
1928          NumPocTotalCurr --;
1929          while ( NumPocTotalCurr >>= 1) 
1930          {
1931            length ++;
1932          }
1933          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1934          {
1935            READ_CODE( length, uiCode, "list_entry_l0" );
1936            refPicListModification->setRefPicSetIdxL0(i, uiCode );
1937          }
1938        }
1939        else
1940        {
1941          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_0); i ++)
1942          {
1943            refPicListModification->setRefPicSetIdxL0(i, 0 );
1944          }
1945        }
1946      }
1947    }
1948    else
1949    {
1950      refPicListModification->setRefPicListModificationFlagL0(0);
1951    }
1952    if(rpcSlice->isInterB())
1953    {
1954#if QC_MVHEVC_B0046
1955    if( !rpcSlice->getViewId() || !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1956#else
1957      if( !rpcSlice->getSPS()->getListsModificationPresentFlag() )
1958#endif
1959      {
1960        refPicListModification->setRefPicListModificationFlagL1( 0 );
1961      }
1962      else
1963      {
1964        READ_FLAG( uiCode, "ref_pic_list_modification_flag_l1" ); refPicListModification->setRefPicListModificationFlagL1( uiCode ? 1 : 0 );
1965      }
1966      if(refPicListModification->getRefPicListModificationFlagL1())
1967      {
1968        uiCode = 0;
1969        Int i = 0;
1970        Int NumPocTotalCurr = rpcSlice->getNumPocTotalCurrMvc();
1971        if ( NumPocTotalCurr > 1 )
1972        {
1973          Int length = 1;
1974          NumPocTotalCurr --;
1975          while ( NumPocTotalCurr >>= 1) 
1976          {
1977            length ++;
1978          }
1979          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1980          {
1981            READ_CODE( length, uiCode, "list_entry_l1" );
1982            refPicListModification->setRefPicSetIdxL1(i, uiCode );
1983          }
1984        }
1985        else
1986        {
1987          for (i = 0; i < rpcSlice->getNumRefIdx(REF_PIC_LIST_1); i ++)
1988          {
1989            refPicListModification->setRefPicSetIdxL1(i, 0 );
1990          }
1991        }
1992      }
1993    } 
1994    else
1995    {
1996      refPicListModification->setRefPicListModificationFlagL1(0);
1997    }
1998  }
1999  else
2000  {
2001    // initialize from previous slice
2002    pps = rpcSlice->getPPS();
2003    sps = rpcSlice->getSPS();
2004  }
2005  // ref_pic_list_combination( )
2006  //!!!KS: ref_pic_list_combination() should be conditioned on entropy_slice_flag
2007  if (rpcSlice->isInterB())
2008  {
2009    READ_FLAG( uiCode, "ref_pic_list_combination_flag" );       rpcSlice->setRefPicListCombinationFlag( uiCode ? 1 : 0 );
2010    if(uiCode)
2011    {
2012      READ_UVLC( uiCode, "num_ref_idx_lc_active_minus1" );      rpcSlice->setNumRefIdx( REF_PIC_LIST_C, uiCode + 1 );
2013     
2014#if QC_MVHEVC_B0046
2015    if( rpcSlice->getViewId() && rpcSlice->getSPS()->getListsModificationPresentFlag() )
2016#else
2017    if(rpcSlice->getSPS()->getListsModificationPresentFlag() )
2018#endif
2019      {
2020        READ_FLAG( uiCode, "ref_pic_list_modification_flag_lc" ); rpcSlice->setRefPicListModificationFlagLC( uiCode ? 1 : 0 );
2021        if(uiCode)
2022        {
2023          for (UInt i=0;i<rpcSlice->getNumRefIdx(REF_PIC_LIST_C);i++)
2024          {
2025            READ_FLAG( uiCode, "pic_from_list_0_flag" );
2026            rpcSlice->setListIdFromIdxOfLC(i, uiCode);
2027          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)) )
2028          {
2029            uiCode = 0;
2030          }
2031          else
2032          {
2033            READ_UVLC( uiCode, "ref_idx_list_curr" );
2034          }
2035            rpcSlice->setRefIdxFromIdxOfLC(i, uiCode);
2036            rpcSlice->setRefIdxOfLC((RefPicList)rpcSlice->getListIdFromIdxOfLC(i), rpcSlice->getRefIdxFromIdxOfLC(i), i);
2037          }
2038        }
2039      }
2040      else
2041      {
2042        rpcSlice->setRefPicListModificationFlagLC(false);
2043      }
2044    }
2045    else
2046    {
2047      rpcSlice->setRefPicListModificationFlagLC(false);
2048      rpcSlice->setNumRefIdx(REF_PIC_LIST_C, 0);
2049    }
2050  }
2051  else
2052  {
2053    rpcSlice->setRefPicListCombinationFlag(false);     
2054  }
2055 
2056  if (rpcSlice->isInterB())
2057  {
2058    READ_FLAG( uiCode, "mvd_l1_zero_flag" );       rpcSlice->setMvdL1ZeroFlag( (uiCode ? true : false) );
2059  }
2060
2061#if CABAC_INIT_FLAG
2062  rpcSlice->setCabacInitFlag( false ); // default
2063  if(pps->getCabacInitPresentFlag() && !rpcSlice->isIntra())
2064  {
2065    READ_FLAG(uiCode, "cabac_init_flag");
2066    rpcSlice->setCabacInitFlag( uiCode ? true : false );
2067  }
2068#else
2069  if(pps->getEntropyCodingMode() && !rpcSlice->isIntra())
2070  {
2071    READ_UVLC(uiCode, "cabac_init_idc");
2072    rpcSlice->setCABACinitIDC(uiCode);
2073  }
2074  else if (pps->getEntropyCodingMode() && rpcSlice->isIntra())
2075  {
2076    rpcSlice->setCABACinitIDC(0);
2077  }
2078#endif
2079
2080  if(!bEntropySlice)
2081  {
2082    READ_SVLC( iCode, "slice_qp_delta" ); 
2083    rpcSlice->setSliceQp (26 + pps->getPicInitQPMinus26() + iCode);
2084
2085    assert( rpcSlice->getSliceQp() >= -sps->getQpBDOffsetY() );
2086    assert( rpcSlice->getSliceQp() <=  51 );
2087
2088    if (rpcSlice->getPPS()->getDeblockingFilterControlPresent())
2089    {
2090      if ( rpcSlice->getSPS()->getUseDF() )
2091      {
2092        READ_FLAG ( uiCode, "inherit_dbl_param_from_APS_flag" ); rpcSlice->setInheritDblParamFromAPS(uiCode ? 1 : 0);
2093      } else
2094      {
2095        rpcSlice->setInheritDblParamFromAPS(0);
2096      }
2097      if(!rpcSlice->getInheritDblParamFromAPS())
2098      {
2099        READ_FLAG ( uiCode, "disable_deblocking_filter_flag" );  rpcSlice->setLoopFilterDisable(uiCode ? 1 : 0);
2100        if(!rpcSlice->getLoopFilterDisable())
2101        {
2102          READ_SVLC( iCode, "beta_offset_div2" ); rpcSlice->setLoopFilterBetaOffset(iCode);
2103          READ_SVLC( iCode, "tc_offset_div2" ); rpcSlice->setLoopFilterTcOffset(iCode);
2104        }
2105      }
2106   }
2107    if ( rpcSlice->getSliceType() == B_SLICE )
2108    {
2109      READ_FLAG( uiCode, "collocated_from_l0_flag" );
2110      rpcSlice->setColDir(uiCode);
2111    }
2112
2113#if COLLOCATED_REF_IDX
2114    if ( rpcSlice->getSliceType() != I_SLICE &&
2115      ((rpcSlice->getColDir()==0 && rpcSlice->getNumRefIdx(REF_PIC_LIST_0)>1)||
2116      (rpcSlice->getColDir() ==1 && rpcSlice->getNumRefIdx(REF_PIC_LIST_1)>1)))
2117    {
2118      READ_UVLC( uiCode, "collocated_ref_idx" );
2119      rpcSlice->setColRefIdx(uiCode);
2120    }
2121#endif
2122   
2123    if ( (pps->getUseWP() && rpcSlice->getSliceType()==P_SLICE) || (pps->getWPBiPredIdc() && rpcSlice->getSliceType()==B_SLICE) )
2124    {
2125      xParsePredWeightTable(rpcSlice);
2126      rpcSlice->initWpScaling();
2127    }
2128  }
2129 
2130  if (!bEntropySlice)
2131  {
2132    if( rpcSlice->getSPS()->hasCamParInSliceHeader() )
2133    {
2134      UInt uiViewId = rpcSlice->getSPS()->getViewId();
2135      for( UInt uiBaseId = 0; uiBaseId < uiViewId; uiBaseId++ )
2136      {
2137        READ_SVLC( iCode, "coded_scale" );   m_aaiTempScale [ uiBaseId ][ uiViewId ] = iCode;
2138        READ_SVLC( iCode, "coded_offset" );   m_aaiTempOffset[ uiBaseId ][ uiViewId ] = iCode;
2139        READ_SVLC( iCode, "inverse_coded_scale_plus_coded_scale" );   m_aaiTempScale [ uiViewId ][ uiBaseId ] = iCode - m_aaiTempScale [ uiBaseId ][ uiViewId ];
2140        READ_SVLC( iCode, "inverse_coded_offset_plus_coded_offset" );   m_aaiTempOffset[ uiViewId ][ uiBaseId ] = iCode - m_aaiTempOffset[ uiBaseId ][ uiViewId ];
2141      }
2142      rpcSlice->initMultiviewSlice( m_aaiTempScale, m_aaiTempOffset );
2143    }
2144  }
2145
2146#if ( HHI_MPI || H3D_IVMP )
2147  #if ( HHI_MPI && H3D_IVMP )
2148  const int iExtraMergeCandidates = ( sps->getUseMVI() || sps->getMultiviewMvPredMode() ) ? 1 : 0;
2149  #elif HHI_MPI
2150  const int iExtraMergeCandidates = sps->getUseMVI() ? 1 : 0;
2151  #elif MTK_DEPTH_MERGE_TEXTURE_CANDIDATE_C0137
2152  const int iExtraMergeCandidates = (  (isDepth || sps->getMultiviewMvPredMode()) ) ? 1 : 0;   
2153  #else
2154  const int iExtraMergeCandidates = sps->getMultiviewMvPredMode() ? 1 : 0;
2155  #endif
2156  READ_UVLC( uiCode, "5_minus_max_num_merge_cand");
2157  rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS + iExtraMergeCandidates - uiCode);
2158  assert(rpcSlice->getMaxNumMergeCand()==(MRG_MAX_NUM_CANDS_SIGNALED+iExtraMergeCandidates));
2159#else
2160  READ_UVLC( uiCode, "5_minus_max_num_merge_cand");
2161  rpcSlice->setMaxNumMergeCand(MRG_MAX_NUM_CANDS - uiCode);
2162  assert(rpcSlice->getMaxNumMergeCand()==MRG_MAX_NUM_CANDS_SIGNALED);
2163#endif
2164
2165  if (!bEntropySlice)
2166  {
2167    if(sps->getUseALF() && rpcSlice->getAlfEnabledFlag())
2168    {
2169      UInt uiNumLCUsInWidth   = sps->getPicWidthInLumaSamples()  / g_uiMaxCUWidth;
2170      UInt uiNumLCUsInHeight  = sps->getPicHeightInLumaSamples() / g_uiMaxCUHeight;
2171
2172      uiNumLCUsInWidth  += ( sps->getPicWidthInLumaSamples() % g_uiMaxCUWidth ) ? 1 : 0;
2173      uiNumLCUsInHeight += ( sps->getPicHeightInLumaSamples() % g_uiMaxCUHeight ) ? 1 : 0;
2174
2175      Int uiNumCUsInFrame = uiNumLCUsInWidth* uiNumLCUsInHeight; 
2176      if(sps->getUseALFCoefInSlice())
2177      {
2178        alfParamSet.releaseALFParam();
2179        alfParamSet.init();
2180        Bool isAcrossSlice = sps->getLFCrossSliceBoundaryFlag();   
2181        Int numSUinLCU    = 1<< (g_uiMaxCUDepth << 1); 
2182        Int firstLCUAddr   = rpcSlice->getSliceCurStartCUAddr() / numSUinLCU; 
2183        xParseAlfParam(&alfParamSet, false, firstLCUAddr, isAcrossSlice, uiNumLCUsInWidth, uiNumLCUsInHeight);
2184      }
2185
2186      if(!sps->getUseALFCoefInSlice())
2187      {
2188      xParseAlfCuControlParam(alfCUCtrl, uiNumCUsInFrame);
2189      }
2190
2191    }
2192  }
2193 
2194  //!!!KS: The following syntax is not aligned with the working draft, TRACE support needs to be added
2195  rpcSlice->setTileMarkerFlag ( 0 ); // default
2196  if (!bEntropySlice)
2197  {
2198    xReadCode(1, uiCode); // read flag indicating if tile markers transmitted
2199    rpcSlice->setTileMarkerFlag( uiCode );
2200  }
2201
2202  Int tilesOrEntropyCodingSyncIdc = rpcSlice->getSPS()->getTilesOrEntropyCodingSyncIdc();
2203  UInt *entryPointOffset          = NULL;
2204  UInt numEntryPointOffsets, offsetLenMinus1;
2205
2206  rpcSlice->setNumEntryPointOffsets ( 0 ); // default
2207 
2208  if (tilesOrEntropyCodingSyncIdc>0)
2209  {
2210    READ_UVLC(numEntryPointOffsets, "num_entry_point_offsets"); rpcSlice->setNumEntryPointOffsets ( numEntryPointOffsets );
2211    if (numEntryPointOffsets>0)
2212    {
2213      READ_UVLC(offsetLenMinus1, "offset_len_minus1");
2214    }
2215    entryPointOffset = new UInt[numEntryPointOffsets];
2216    for (UInt idx=0; idx<numEntryPointOffsets; idx++)
2217    {
2218      Int bitsRead = m_pcBitstream->getNumBitsRead();
2219      READ_CODE(offsetLenMinus1+1, uiCode, "entry_point_offset");
2220      entryPointOffset[ idx ] = uiCode;
2221      if ( idx == 0 && tilesOrEntropyCodingSyncIdc == 2 )
2222      {
2223        // Subtract distance from NALU header start to provide WPP 0-th substream the correct size.
2224        entryPointOffset[ idx ] -= ( bitsRead + numEntryPointOffsets*(offsetLenMinus1+1) ) >> 3;
2225      }
2226    }
2227  }
2228
2229  if ( tilesOrEntropyCodingSyncIdc == 1 ) // tiles
2230  {
2231    rpcSlice->setTileLocationCount( numEntryPointOffsets );
2232
2233    UInt prevPos = 0;
2234    for (Int idx=0; idx<rpcSlice->getTileLocationCount(); idx++)
2235    {
2236      rpcSlice->setTileLocation( idx, prevPos + entryPointOffset [ idx ] );
2237      prevPos += entryPointOffset[ idx ];
2238    }
2239  }
2240  else if ( tilesOrEntropyCodingSyncIdc == 2 ) // wavefront
2241  {
2242    Int numSubstreams = pps->getNumSubstreams();
2243    rpcSlice->allocSubstreamSizes(numSubstreams);
2244    UInt *pSubstreamSizes       = rpcSlice->getSubstreamSizes();
2245    for (Int idx=0; idx<numSubstreams-1; idx++)
2246    {
2247      if ( idx < numEntryPointOffsets )
2248      {
2249        pSubstreamSizes[ idx ] = ( entryPointOffset[ idx ] << 3 ) ;
2250      }
2251      else
2252      {
2253        pSubstreamSizes[ idx ] = 0;
2254      }
2255    }
2256  }
2257
2258  if (entryPointOffset)
2259  {
2260    delete [] entryPointOffset;
2261  }
2262
2263  if (!bEntropySlice)
2264  {
2265    // Reading location information
2266
2267      // read out trailing bits
2268    m_pcBitstream->readOutTrailingBits();
2269  }
2270  return;
2271}
2272
2273Void TDecCavlc::xParseAlfCuControlParam(AlfCUCtrlInfo& cAlfParam, Int iNumCUsInPic)
2274{
2275  UInt uiSymbol;
2276  Int iSymbol;
2277
2278  READ_FLAG (uiSymbol, "alf_cu_control_flag");
2279  cAlfParam.cu_control_flag = uiSymbol;
2280  if (cAlfParam.cu_control_flag)
2281  {
2282    READ_UVLC (uiSymbol, "alf_cu_control_max_depth"); 
2283    cAlfParam.alf_max_depth = uiSymbol;
2284
2285    READ_SVLC (iSymbol, "alf_length_cu_control_info");
2286    cAlfParam.num_alf_cu_flag = (UInt)(iSymbol + iNumCUsInPic);
2287
2288    cAlfParam.alf_cu_flag.resize(cAlfParam.num_alf_cu_flag);
2289
2290    for(UInt i=0; i< cAlfParam.num_alf_cu_flag; i++)
2291    {
2292      READ_FLAG (cAlfParam.alf_cu_flag[i], "alf_cu_flag");
2293    }
2294  }
2295}
2296
2297#if !CABAC_INIT_FLAG
2298Void TDecCavlc::resetEntropy          (TComSlice* pcSlice)
2299{
2300}
2301#endif
2302
2303Void TDecCavlc::parseTerminatingBit( UInt& ruiBit )
2304{
2305  ruiBit = false;
2306  Int iBitsLeft = m_pcBitstream->getNumBitsLeft();
2307  if(iBitsLeft <= 8)
2308  {
2309    UInt uiPeekValue = m_pcBitstream->peekBits(iBitsLeft);
2310    if (uiPeekValue == (1<<(iBitsLeft-1)))
2311    {
2312      ruiBit = true;
2313    }
2314  }
2315}
2316
2317Void TDecCavlc::parseSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2318{
2319  assert(0);
2320}
2321
2322#if LGE_ILLUCOMP_B0045
2323Void TDecCavlc::parseICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2324{
2325  assert(0);
2326}
2327#endif
2328
2329#if H3D_IVMP
2330Void TDecCavlc::parseMVPIdx( Int& riMVPIdx, Int iAMVPCands )
2331#else
2332Void TDecCavlc::parseMVPIdx( Int& riMVPIdx )
2333#endif
2334{
2335  assert(0);
2336}
2337
2338Void TDecCavlc::parseSplitFlag     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2339{
2340  assert(0);
2341}
2342
2343Void TDecCavlc::parsePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2344{
2345  assert(0);
2346}
2347
2348Void TDecCavlc::parsePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2349{
2350  assert(0);
2351}
2352
2353/** Parse I_PCM information.
2354 * \param pcCU pointer to CU
2355 * \param uiAbsPartIdx CU index
2356 * \param uiDepth CU depth
2357 * \returns Void
2358 *
2359 * If I_PCM flag indicates that the CU is I_PCM, parse its PCM alignment bits and codes. 
2360 */
2361Void TDecCavlc::parseIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2362{
2363  assert(0);
2364}
2365
2366Void TDecCavlc::parseIntraDirLumaAng  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2367{ 
2368  assert(0);
2369}
2370
2371Void TDecCavlc::parseIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2372{
2373  assert(0);
2374}
2375
2376Void TDecCavlc::parseInterDir( TComDataCU* pcCU, UInt& ruiInterDir, UInt uiAbsPartIdx, UInt uiDepth )
2377{
2378  assert(0);
2379}
2380
2381Void TDecCavlc::parseRefFrmIdx( TComDataCU* pcCU, Int& riRefFrmIdx, UInt uiAbsPartIdx, UInt uiDepth, RefPicList eRefList )
2382{
2383  assert(0);
2384}
2385
2386Void TDecCavlc::parseMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth, RefPicList eRefList )
2387{
2388  assert(0);
2389}
2390
2391Void TDecCavlc::parseDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2392{
2393  Int qp;
2394  Int  iDQp;
2395 
2396  xReadSvlc( iDQp );
2397
2398  Int qpBdOffsetY = pcCU->getSlice()->getSPS()->getQpBDOffsetY();
2399  qp = (((Int) pcCU->getRefQP( uiAbsPartIdx ) + iDQp + 52 + 2*qpBdOffsetY )%(52+ qpBdOffsetY)) -  qpBdOffsetY;
2400
2401  UInt uiAbsQpCUPartIdx = (uiAbsPartIdx>>(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)))<<(8-(pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()<<1)) ;
2402  UInt uiQpCUDepth =   min(uiDepth,pcCU->getSlice()->getPPS()->getMaxCuDQPDepth()) ;
2403
2404  pcCU->setQPSubParts( qp, uiAbsQpCUPartIdx, uiQpCUDepth );
2405}
2406
2407Void TDecCavlc::parseCoeffNxN( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType )
2408{
2409  assert(0);
2410}
2411
2412Void TDecCavlc::parseTransformSubdivFlag( UInt& ruiSubdivFlag, UInt uiLog2TransformBlockSize )
2413{
2414  assert(0);
2415}
2416
2417Void TDecCavlc::parseQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth, UInt uiDepth )
2418{
2419  assert(0);
2420}
2421
2422Void TDecCavlc::parseQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt& uiQtRootCbf )
2423{
2424  assert(0);
2425}
2426
2427
2428Void TDecCavlc::parseMergeFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPUIdx )
2429{
2430  assert(0);
2431}
2432
2433Void TDecCavlc::parseMergeIndex ( TComDataCU* pcCU, UInt& ruiMergeIndex, UInt uiAbsPartIdx, UInt uiDepth )
2434{
2435  assert(0);
2436}
2437
2438#if H3D_IVRP
2439Void
2440TDecCavlc::parseResPredFlag( TComDataCU* pcCU, Bool& rbResPredFlag, UInt uiAbsPartIdx, UInt uiDepth )
2441{
2442  assert(0);
2443}
2444#endif
2445
2446#if RWTH_SDC_DLT_B0036
2447Void TDecCavlc::parseSDCFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2448{
2449  assert(0);
2450}
2451Void TDecCavlc::parseSDCPredMode    ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2452{
2453  assert(0);
2454}
2455Void TDecCavlc::parseSDCResidualData     ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiPart )
2456{
2457  assert(0);
2458}
2459#endif
2460
2461// ====================================================================================================================
2462// Protected member functions
2463// ====================================================================================================================
2464
2465Void TDecCavlc::xReadCode (UInt uiLength, UInt& ruiCode)
2466{
2467  assert ( uiLength > 0 );
2468  m_pcBitstream->read (uiLength, ruiCode);
2469}
2470
2471Void TDecCavlc::xReadUvlc( UInt& ruiVal)
2472{
2473  UInt uiVal = 0;
2474  UInt uiCode = 0;
2475  UInt uiLength;
2476  m_pcBitstream->read( 1, uiCode );
2477 
2478  if( 0 == uiCode )
2479  {
2480    uiLength = 0;
2481   
2482    while( ! ( uiCode & 1 ))
2483    {
2484      m_pcBitstream->read( 1, uiCode );
2485      uiLength++;
2486    }
2487   
2488    m_pcBitstream->read( uiLength, uiVal );
2489   
2490    uiVal += (1 << uiLength)-1;
2491  }
2492 
2493  ruiVal = uiVal;
2494}
2495
2496Void TDecCavlc::xReadSvlc( Int& riVal)
2497{
2498  UInt uiBits = 0;
2499  m_pcBitstream->read( 1, uiBits );
2500  if( 0 == uiBits )
2501  {
2502    UInt uiLength = 0;
2503   
2504    while( ! ( uiBits & 1 ))
2505    {
2506      m_pcBitstream->read( 1, uiBits );
2507      uiLength++;
2508    }
2509   
2510    m_pcBitstream->read( uiLength, uiBits );
2511   
2512    uiBits += (1 << uiLength);
2513    riVal = ( uiBits & 1) ? -(Int)(uiBits>>1) : (Int)(uiBits>>1);
2514  }
2515  else
2516  {
2517    riVal = 0;
2518  }
2519}
2520
2521Void TDecCavlc::xReadFlag (UInt& ruiCode)
2522{
2523  m_pcBitstream->read( 1, ruiCode );
2524}
2525
2526#if QC_MVHEVC_B0046
2527/** Parse VPS alignment one bits.
2528 * \returns Void
2529 */
2530Void TDecCavlc::xReadVPSAlignOne( )
2531{
2532  UInt uiNumberOfBits = m_pcBitstream->getNumBitsUntilByteAligned();
2533
2534  if(uiNumberOfBits)
2535  {
2536    UInt uiBits;
2537    UInt uiSymbol;
2538
2539    for(uiBits = 0; uiBits < uiNumberOfBits; uiBits++)
2540    {
2541      xReadFlag( uiSymbol );
2542
2543      if(!uiSymbol)
2544      {
2545        printf("\nWarning! vps_extension_byte_alignment_reserved_one_bit include a non-zero value.\n");
2546      }
2547    }
2548  }
2549}
2550#endif
2551/** Parse PCM alignment zero bits.
2552 * \returns Void
2553 */
2554Void TDecCavlc::xReadPCMAlignZero( )
2555{
2556  UInt uiNumberOfBits = m_pcBitstream->getNumBitsUntilByteAligned();
2557
2558  if(uiNumberOfBits)
2559  {
2560    UInt uiBits;
2561    UInt uiSymbol;
2562
2563    for(uiBits = 0; uiBits < uiNumberOfBits; uiBits++)
2564    {
2565      xReadFlag( uiSymbol );
2566
2567      if(uiSymbol)
2568      {
2569        printf("\nWarning! pcm_align_zero include a non-zero value.\n");
2570      }
2571    }
2572  }
2573}
2574
2575Void TDecCavlc::xReadUnaryMaxSymbol( UInt& ruiSymbol, UInt uiMaxSymbol )
2576{
2577  if (uiMaxSymbol == 0)
2578  {
2579    ruiSymbol = 0;
2580    return;
2581  }
2582 
2583  xReadFlag( ruiSymbol );
2584 
2585  if (ruiSymbol == 0 || uiMaxSymbol == 1)
2586  {
2587    return;
2588  }
2589 
2590  UInt uiSymbol = 0;
2591  UInt uiCont;
2592 
2593  do
2594  {
2595    xReadFlag( uiCont );
2596    uiSymbol++;
2597  }
2598  while( uiCont && (uiSymbol < uiMaxSymbol-1) );
2599 
2600  if( uiCont && (uiSymbol == uiMaxSymbol-1) )
2601  {
2602    uiSymbol++;
2603  }
2604 
2605  ruiSymbol = uiSymbol;
2606}
2607
2608Void TDecCavlc::xReadExGolombLevel( UInt& ruiSymbol )
2609{
2610  UInt uiSymbol ;
2611  UInt uiCount = 0;
2612  do
2613  {
2614    xReadFlag( uiSymbol );
2615    uiCount++;
2616  }
2617  while( uiSymbol && (uiCount != 13));
2618 
2619  ruiSymbol = uiCount-1;
2620 
2621  if( uiSymbol )
2622  {
2623    xReadEpExGolomb( uiSymbol, 0 );
2624    ruiSymbol += uiSymbol+1;
2625  }
2626 
2627  return;
2628}
2629
2630Void TDecCavlc::xReadEpExGolomb( UInt& ruiSymbol, UInt uiCount )
2631{
2632  UInt uiSymbol = 0;
2633  UInt uiBit = 1;
2634 
2635 
2636  while( uiBit )
2637  {
2638    xReadFlag( uiBit );
2639    uiSymbol += uiBit << uiCount++;
2640  }
2641 
2642  uiCount--;
2643  while( uiCount-- )
2644  {
2645    xReadFlag( uiBit );
2646    uiSymbol += uiBit << uiCount;
2647  }
2648 
2649  ruiSymbol = uiSymbol;
2650 
2651  return;
2652}
2653
2654UInt TDecCavlc::xGetBit()
2655{
2656  UInt ruiCode;
2657  m_pcBitstream->read( 1, ruiCode );
2658  return ruiCode;
2659}
2660
2661
2662/** parse explicit wp tables
2663 * \param TComSlice* pcSlice
2664 * \returns Void
2665 */
2666Void TDecCavlc::xParsePredWeightTable( TComSlice* pcSlice )
2667{
2668  wpScalingParam  *wp;
2669  Bool            bChroma     = true; // color always present in HEVC ?
2670  TComPPS*        pps         = pcSlice->getPPS();
2671  SliceType       eSliceType  = pcSlice->getSliceType();
2672  Int             iNbRef       = (eSliceType == B_SLICE ) ? (2) : (1);
2673  UInt            uiLog2WeightDenomLuma, uiLog2WeightDenomChroma;
2674  UInt            uiMode      = 0;
2675
2676  if ( (eSliceType==P_SLICE && pps->getUseWP()) || (eSliceType==B_SLICE && pps->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag()==0) )
2677    uiMode = 1; // explicit
2678  else if ( eSliceType==B_SLICE && pps->getWPBiPredIdc()==2 )
2679    uiMode = 2; // implicit
2680  else if (eSliceType==B_SLICE && pps->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag())
2681    uiMode = 3; // combined explicit
2682
2683  if ( uiMode == 1 )  // explicit
2684  {
2685    printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) explicit...\n", pcSlice->getPOC());
2686    Int iDeltaDenom;
2687    // decode delta_luma_log2_weight_denom :
2688    READ_UVLC( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
2689    if( bChroma ) 
2690    {
2691      READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );     // se(v): delta_chroma_log2_weight_denom
2692      assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
2693      uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
2694    }
2695
2696    for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) 
2697    {
2698      RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
2699      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
2700      {
2701        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2702
2703        wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
2704        wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2705        wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2706
2707        UInt  uiCode;
2708        READ_FLAG( uiCode, "luma_weight_lX_flag" );           // u(1): luma_weight_l0_flag
2709        wp[0].bPresentFlag = ( uiCode == 1 );
2710        if ( wp[0].bPresentFlag ) 
2711        {
2712          Int iDeltaWeight;
2713          READ_SVLC( iDeltaWeight, "delta_luma_weight_lX" );  // se(v): delta_luma_weight_l0[i]
2714          wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
2715          READ_SVLC( wp[0].iOffset, "luma_offset_lX" );       // se(v): luma_offset_l0[i]
2716        }
2717        else 
2718        {
2719          wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
2720          wp[0].iOffset = 0;
2721        }
2722        if ( bChroma ) 
2723        {
2724          READ_FLAG( uiCode, "chroma_weight_lX_flag" );      // u(1): chroma_weight_l0_flag
2725          wp[1].bPresentFlag = ( uiCode == 1 );
2726          wp[2].bPresentFlag = ( uiCode == 1 );
2727          if ( wp[1].bPresentFlag ) 
2728          {
2729            for ( Int j=1 ; j<3 ; j++ ) 
2730            {
2731              Int iDeltaWeight;
2732              READ_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );  // se(v): chroma_weight_l0[i][j]
2733              wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
2734
2735              Int iDeltaChroma;
2736              READ_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );  // se(v): delta_chroma_offset_l0[i][j]
2737              wp[j].iOffset = iDeltaChroma - ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) + (g_uiIBDI_MAX>>1);
2738            }
2739          }
2740          else 
2741          {
2742            for ( Int j=1 ; j<3 ; j++ ) 
2743            {
2744              wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
2745              wp[j].iOffset = 0;
2746            }
2747          }
2748        }
2749      }
2750
2751      for ( Int iRefIdx=pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx<MAX_NUM_REF ; iRefIdx++ ) 
2752      {
2753        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2754
2755        wp[0].bPresentFlag = false;
2756        wp[1].bPresentFlag = false;
2757        wp[2].bPresentFlag = false;
2758      }
2759    }
2760  }
2761  else if ( uiMode == 2 )  // implicit
2762  {
2763    printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) implicit...\n", pcSlice->getPOC());
2764  }
2765  else if ( uiMode == 3 )  // combined explicit
2766  {
2767    printf("\nTDecCavlc::xParsePredWeightTable(poc=%d) combined explicit...\n", pcSlice->getPOC());
2768    Int iDeltaDenom;
2769    // decode delta_luma_log2_weight_denom :
2770    READ_UVLC ( uiLog2WeightDenomLuma, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
2771    if( bChroma ) 
2772    {
2773      READ_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );      // ue(v): delta_chroma_log2_weight_denom
2774      assert((iDeltaDenom + (Int)uiLog2WeightDenomLuma)>=0);
2775      uiLog2WeightDenomChroma = (UInt)(iDeltaDenom + uiLog2WeightDenomLuma);
2776    }
2777
2778    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx++ ) 
2779    {
2780      pcSlice->getWpScalingLC(iRefIdx, wp);
2781
2782      wp[0].uiLog2WeightDenom = uiLog2WeightDenomLuma;
2783      wp[1].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2784      wp[2].uiLog2WeightDenom = uiLog2WeightDenomChroma;
2785
2786      UInt  uiCode;
2787      READ_FLAG( uiCode, "luma_weight_lc_flag" );                  // u(1): luma_weight_lc_flag
2788      wp[0].bPresentFlag = ( uiCode == 1 );
2789      if ( wp[0].bPresentFlag ) 
2790      {
2791        Int iDeltaWeight;
2792        READ_SVLC( iDeltaWeight, "delta_luma_weight_lc" );          // se(v): delta_luma_weight_lc
2793        wp[0].iWeight = (iDeltaWeight + (1<<wp[0].uiLog2WeightDenom));
2794        READ_SVLC( wp[0].iOffset, "luma_offset_lc" );               // se(v): luma_offset_lc
2795      }
2796      else 
2797      {
2798        wp[0].iWeight = (1 << wp[0].uiLog2WeightDenom);
2799        wp[0].iOffset = 0;
2800      }
2801      if ( bChroma ) 
2802      {
2803        READ_FLAG( uiCode, "chroma_weight_lc_flag" );                // u(1): chroma_weight_lc_flag
2804        wp[1].bPresentFlag = ( uiCode == 1 );
2805        wp[2].bPresentFlag = ( uiCode == 1 );
2806        if ( wp[1].bPresentFlag ) 
2807        {
2808          for ( Int j=1 ; j<3 ; j++ ) 
2809          {
2810            Int iDeltaWeight;
2811            READ_SVLC( iDeltaWeight, "delta_chroma_weight_lc" );      // se(v): delta_chroma_weight_lc
2812            wp[j].iWeight = (iDeltaWeight + (1<<wp[1].uiLog2WeightDenom));
2813
2814            Int iDeltaChroma;
2815            READ_SVLC( iDeltaChroma, "delta_chroma_offset_lc" );      // se(v): delta_chroma_offset_lc
2816            wp[j].iOffset = iDeltaChroma - ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) + (g_uiIBDI_MAX>>1);
2817          }
2818        }
2819        else 
2820        {
2821          for ( Int j=1 ; j<3 ; j++ ) 
2822          {
2823            wp[j].iWeight = (1 << wp[j].uiLog2WeightDenom);
2824            wp[j].iOffset = 0;
2825          }
2826        }
2827      }
2828    }
2829
2830    for ( Int iRefIdx=pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx<2*MAX_NUM_REF ; iRefIdx++ ) 
2831    {
2832      pcSlice->getWpScalingLC(iRefIdx, wp);
2833
2834      wp[0].bPresentFlag = false;
2835      wp[1].bPresentFlag = false;
2836      wp[2].bPresentFlag = false;
2837    }
2838  }
2839  else
2840  {
2841    printf("\n wrong weight pred table syntax \n ");
2842    assert(0);
2843  }
2844}
2845
2846/** decode quantization matrix
2847 * \param scalingList quantization matrix information
2848 */
2849Void TDecCavlc::parseScalingList(TComScalingList* scalingList)
2850{
2851  UInt  code, sizeId, listId;
2852  Bool scalingListPredModeFlag;
2853  READ_FLAG( code, "scaling_list_present_flag" );
2854  scalingList->setScalingListPresentFlag ( (code==1)?true:false );
2855  if(scalingList->getScalingListPresentFlag() == false)
2856  {
2857      //for each size
2858    for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2859    {
2860      for(listId = 0; listId <  g_scalingListNum[sizeId]; listId++)
2861      {
2862        READ_FLAG( code, "scaling_list_pred_mode_flag");
2863        scalingListPredModeFlag = (code) ? true : false;
2864        if(!scalingListPredModeFlag) //Copy Mode
2865        {
2866          READ_UVLC( code, "scaling_list_pred_matrix_id_delta");
2867          scalingList->setRefMatrixId (sizeId,listId,(UInt)((Int)(listId)-(code+1)));
2868          if( sizeId > SCALING_LIST_8x8 )
2869          {
2870            scalingList->setScalingListDC(sizeId,listId,scalingList->getScalingListDC(sizeId, scalingList->getRefMatrixId (sizeId,listId)));
2871          }
2872          scalingList->processRefMatrix( sizeId, listId, scalingList->getRefMatrixId (sizeId,listId));
2873         
2874        }
2875        else //DPCM Mode
2876        {
2877          xDecodeScalingList(scalingList, sizeId, listId);
2878        }
2879      }
2880    }
2881  }
2882
2883  return;
2884}
2885/** decode DPCM
2886 * \param scalingList  quantization matrix information
2887 * \param sizeId size index
2888 * \param listId list index
2889 */
2890Void TDecCavlc::xDecodeScalingList(TComScalingList *scalingList, UInt sizeId, UInt listId)
2891{
2892  Int i,coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
2893  Int data;
2894  Int scalingListDcCoefMinus8 = 0;
2895  Int nextCoef = SCALING_LIST_START_VALUE;
2896  UInt* scan  = g_auiFrameScanXY [ (sizeId == 0)? 1 : 2 ];
2897  Bool stopNow = false;
2898  Int *dst = scalingList->getScalingListAddress(sizeId, listId);
2899
2900  scalingList->setUseDefaultScalingMatrixFlag(sizeId,listId,false);
2901  if( sizeId > SCALING_LIST_8x8 )
2902  {
2903    READ_SVLC( scalingListDcCoefMinus8, "scaling_list_dc_coef_minus8");
2904    scalingList->setScalingListDC(sizeId,listId,scalingListDcCoefMinus8 + 8);
2905    if(scalingListDcCoefMinus8 == -8)
2906    {
2907      scalingList->processDefaultMarix(sizeId,listId);
2908    }
2909  }
2910
2911  if( !scalingList->getUseDefaultScalingMatrixFlag(sizeId,listId))
2912  {
2913    for(i = 0; i < coefNum && !stopNow ; i++)
2914    {
2915      READ_SVLC( data, "scaling_list_delta_coef");
2916      nextCoef = (nextCoef + data + 256 ) % 256;
2917      if(sizeId < SCALING_LIST_16x16)
2918      {
2919        if( i == 0 && nextCoef == 0 )
2920        {
2921          scalingList->processDefaultMarix(sizeId,listId);
2922          stopNow = true;
2923        }
2924      }
2925      if(!stopNow)
2926      {
2927        dst[scan[i]] = nextCoef;
2928      }
2929    }
2930  }
2931}
2932
2933Void TDecCavlc::parseDFFlag(UInt& ruiVal, const Char *pSymbolName)
2934{
2935  READ_FLAG(ruiVal, pSymbolName);
2936}
2937Void TDecCavlc::parseDFSvlc(Int&  riVal, const Char *pSymbolName)
2938{
2939  READ_SVLC(riVal, pSymbolName);
2940}
2941
2942Bool TDecCavlc::xMoreRbspData()
2943{ 
2944  Int bitsLeft = m_pcBitstream->getNumBitsLeft();
2945
2946  // if there are more than 8 bits, it cannot be rbsp_trailing_bits
2947  if (bitsLeft > 8)
2948  {
2949    return true;
2950  }
2951
2952  UChar lastByte = m_pcBitstream->peekBits(bitsLeft);
2953  Int cnt = bitsLeft;
2954
2955  // remove trailing bits equal to zero
2956  while ((cnt>0) && ((lastByte & 1) == 0))
2957  {
2958    lastByte >>= 1;
2959    cnt--;
2960  }
2961  // remove bit equal to one
2962  cnt--;
2963
2964  // we should not have a negative number of bits
2965  assert (cnt>=0);
2966
2967  // we have more data, if cnt is not zero
2968  return (cnt>0);
2969}
2970
2971//! \}
Note: See TracBrowser for help on using the repository browser.