source: 3DVCSoftware/branches/HTM-12.0-dev1/source/Lib/TLibEncoder/TEncCavlc.cpp @ 1060

Last change on this file since 1060 was 1060, checked in by tech, 10 years ago

Added

  • Fix PTL
  • Support auxiliary pictures.
  • Property svn:eol-style set to native
File size: 109.8 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6* Copyright (c) 2010-2014, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TEncCavlc.cpp
35    \brief    CAVLC encoder class
36*/
37
38#include "../TLibCommon/CommonDef.h"
39#include "TEncCavlc.h"
40#include "SEIwrite.h"
41#include "../TLibCommon/TypeDef.h"
42
43//! \ingroup TLibEncoder
44//! \{
45
46#if ENC_DEC_TRACE
47
48Void  xTraceSPSHeader (TComSPS *pSPS)
49{
50#if H_MV_ENC_DEC_TRAC
51#if H_MV_HLS10_GEN_FIX
52  fprintf( g_hTrace, "=========== Sequence Parameter Set LayerId: %d ===========\n", pSPS->getLayerId() );
53#else
54  fprintf( g_hTrace, "=========== Sequence Parameter Set ===========\n" );
55#endif
56#else
57  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
58#endif
59}
60
61Void  xTracePPSHeader (TComPPS *pPPS)
62{
63#if H_MV_ENC_DEC_TRAC
64#if H_MV_HLS10_GEN_FIX
65  fprintf( g_hTrace, "=========== Picture Parameter Set LayerId: %d ===========\n", pPPS->getLayerId() );
66#else
67  fprintf( g_hTrace, "=========== Picture Parameter Set ===========\n" );
68#endif
69#else
70  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
71#endif
72}
73
74Void  xTraceSliceHeader (TComSlice *pSlice)
75{
76  fprintf( g_hTrace, "=========== Slice ===========\n");
77}
78
79#endif
80
81
82
83// ====================================================================================================================
84// Constructor / destructor / create / destroy
85// ====================================================================================================================
86
87TEncCavlc::TEncCavlc()
88{
89  m_pcBitIf           = NULL;
90  m_uiCoeffCost       = 0;
91}
92
93TEncCavlc::~TEncCavlc()
94{
95}
96
97
98// ====================================================================================================================
99// Public member functions
100// ====================================================================================================================
101
102Void TEncCavlc::resetEntropy()
103{
104}
105
106
107Void TEncCavlc::codeDFFlag(UInt uiCode, const Char *pSymbolName)
108{
109  WRITE_FLAG(uiCode, pSymbolName);
110}
111Void TEncCavlc::codeDFSvlc(Int iCode, const Char *pSymbolName)
112{
113  WRITE_SVLC(iCode, pSymbolName);
114}
115
116Void TEncCavlc::codeShortTermRefPicSet( TComSPS* pcSPS, TComReferencePictureSet* rps, Bool calledFromSliceHeader, Int idx)
117{
118#if PRINT_RPS_INFO
119  Int lastBits = getNumberOfWrittenBits();
120#endif
121  if (idx > 0)
122  {
123  WRITE_FLAG( rps->getInterRPSPrediction(), "inter_ref_pic_set_prediction_flag" ); // inter_RPS_prediction_flag
124  }
125  if (rps->getInterRPSPrediction())
126  {
127    Int deltaRPS = rps->getDeltaRPS();
128    if(calledFromSliceHeader)
129    {
130      WRITE_UVLC( rps->getDeltaRIdxMinus1(), "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1
131    }
132
133    WRITE_CODE( (deltaRPS >=0 ? 0: 1), 1, "delta_rps_sign" ); //delta_rps_sign
134    WRITE_UVLC( abs(deltaRPS) - 1, "abs_delta_rps_minus1"); // absolute delta RPS minus 1
135
136    for(Int j=0; j < rps->getNumRefIdc(); j++)
137    {
138      Int refIdc = rps->getRefIdc(j);
139      WRITE_CODE( (refIdc==1? 1: 0), 1, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1
140      if (refIdc != 1) 
141      {
142        WRITE_CODE( refIdc>>1, 1, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise.
143      }
144    }
145  }
146  else
147  {
148    WRITE_UVLC( rps->getNumberOfNegativePictures(), "num_negative_pics" );
149    WRITE_UVLC( rps->getNumberOfPositivePictures(), "num_positive_pics" );
150
151    Int prev = 0;
152    for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++)
153    {
154      WRITE_UVLC( prev-rps->getDeltaPOC(j)-1, "delta_poc_s0_minus1" );
155      prev = rps->getDeltaPOC(j);
156      WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s0_flag"); 
157    }
158    prev = 0;
159    for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++)
160    {
161      WRITE_UVLC( rps->getDeltaPOC(j)-prev-1, "delta_poc_s1_minus1" );
162      prev = rps->getDeltaPOC(j);
163      WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s1_flag" ); 
164    }
165  }
166
167#if PRINT_RPS_INFO
168  printf("irps=%d (%2d bits) ", rps->getInterRPSPrediction(), getNumberOfWrittenBits() - lastBits);
169  rps->printDeltaPOC();
170#endif
171}
172
173
174Void TEncCavlc::codePPS( TComPPS* pcPPS )
175{
176#if ENC_DEC_TRACE 
177  xTracePPSHeader (pcPPS);
178#endif
179 
180  WRITE_UVLC( pcPPS->getPPSId(),                             "pps_pic_parameter_set_id" );
181  WRITE_UVLC( pcPPS->getSPSId(),                             "pps_seq_parameter_set_id" );
182  WRITE_FLAG( pcPPS->getDependentSliceSegmentsEnabledFlag()    ? 1 : 0, "dependent_slice_segments_enabled_flag" );
183  WRITE_FLAG( pcPPS->getOutputFlagPresentFlag() ? 1 : 0,     "output_flag_present_flag" );
184  WRITE_CODE( pcPPS->getNumExtraSliceHeaderBits(), 3,        "num_extra_slice_header_bits");
185  WRITE_FLAG( pcPPS->getSignHideFlag(), "sign_data_hiding_flag" );
186  WRITE_FLAG( pcPPS->getCabacInitPresentFlag() ? 1 : 0,   "cabac_init_present_flag" );
187#if PPS_FIX_DEPTH
188  if( pcPPS->getSPS()->getVPS()->getDepthId(pcPPS->getSPS()->getLayerId()) )
189  {
190    WRITE_UVLC( pcPPS->getNumRefIdxL0DefaultActive(),     "num_ref_idx_l0_default_active_minus1");
191    WRITE_UVLC( pcPPS->getNumRefIdxL1DefaultActive(),     "num_ref_idx_l1_default_active_minus1");
192  }
193  else
194  {
195#endif
196  WRITE_UVLC( pcPPS->getNumRefIdxL0DefaultActive()-1,     "num_ref_idx_l0_default_active_minus1");
197  WRITE_UVLC( pcPPS->getNumRefIdxL1DefaultActive()-1,     "num_ref_idx_l1_default_active_minus1");
198#if PPS_FIX_DEPTH
199  }
200#endif
201  WRITE_SVLC( pcPPS->getPicInitQPMinus26(),                  "init_qp_minus26");
202  WRITE_FLAG( pcPPS->getConstrainedIntraPred() ? 1 : 0,      "constrained_intra_pred_flag" );
203  WRITE_FLAG( pcPPS->getUseTransformSkip() ? 1 : 0,  "transform_skip_enabled_flag" ); 
204  WRITE_FLAG( pcPPS->getUseDQP() ? 1 : 0, "cu_qp_delta_enabled_flag" );
205  if ( pcPPS->getUseDQP() )
206  {
207    WRITE_UVLC( pcPPS->getMaxCuDQPDepth(), "diff_cu_qp_delta_depth" );
208  }
209  WRITE_SVLC( pcPPS->getChromaCbQpOffset(),                   "pps_cb_qp_offset" );
210  WRITE_SVLC( pcPPS->getChromaCrQpOffset(),                   "pps_cr_qp_offset" );
211  WRITE_FLAG( pcPPS->getSliceChromaQpFlag() ? 1 : 0,          "pps_slice_chroma_qp_offsets_present_flag" );
212
213  WRITE_FLAG( pcPPS->getUseWP() ? 1 : 0,  "weighted_pred_flag" );   // Use of Weighting Prediction (P_SLICE)
214  WRITE_FLAG( pcPPS->getWPBiPred() ? 1 : 0, "weighted_bipred_flag" );  // Use of Weighting Bi-Prediction (B_SLICE)
215  WRITE_FLAG( pcPPS->getTransquantBypassEnableFlag() ? 1 : 0, "transquant_bypass_enable_flag" );
216  WRITE_FLAG( pcPPS->getTilesEnabledFlag()             ? 1 : 0, "tiles_enabled_flag" );
217  WRITE_FLAG( pcPPS->getEntropyCodingSyncEnabledFlag() ? 1 : 0, "entropy_coding_sync_enabled_flag" );
218  if( pcPPS->getTilesEnabledFlag() )
219  {
220    WRITE_UVLC( pcPPS->getNumColumnsMinus1(),                                    "num_tile_columns_minus1" );
221    WRITE_UVLC( pcPPS->getNumRowsMinus1(),                                       "num_tile_rows_minus1" );
222    WRITE_FLAG( pcPPS->getUniformSpacingFlag(),                                  "uniform_spacing_flag" );
223    if( pcPPS->getUniformSpacingFlag() == 0 )
224    {
225      for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++)
226      {
227        WRITE_UVLC( pcPPS->getColumnWidth(i)-1,                                  "column_width_minus1" );
228      }
229      for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++)
230      {
231        WRITE_UVLC( pcPPS->getRowHeight(i)-1,                                    "row_height_minus1" );
232      }
233    }
234    if(pcPPS->getNumColumnsMinus1() !=0 || pcPPS->getNumRowsMinus1() !=0)
235    {
236      WRITE_FLAG( pcPPS->getLoopFilterAcrossTilesEnabledFlag()?1 : 0,          "loop_filter_across_tiles_enabled_flag");
237    }
238  }
239  WRITE_FLAG( pcPPS->getLoopFilterAcrossSlicesEnabledFlag()?1 : 0,        "loop_filter_across_slices_enabled_flag");
240  WRITE_FLAG( pcPPS->getDeblockingFilterControlPresentFlag()?1 : 0,       "deblocking_filter_control_present_flag");
241  if(pcPPS->getDeblockingFilterControlPresentFlag())
242  {
243    WRITE_FLAG( pcPPS->getDeblockingFilterOverrideEnabledFlag() ? 1 : 0,  "deblocking_filter_override_enabled_flag" ); 
244    WRITE_FLAG( pcPPS->getPicDisableDeblockingFilterFlag() ? 1 : 0,       "pps_disable_deblocking_filter_flag" );
245    if(!pcPPS->getPicDisableDeblockingFilterFlag())
246    {
247      WRITE_SVLC( pcPPS->getDeblockingFilterBetaOffsetDiv2(),             "pps_beta_offset_div2" );
248      WRITE_SVLC( pcPPS->getDeblockingFilterTcOffsetDiv2(),               "pps_tc_offset_div2" );
249    }
250  }
251#if !H_MV_HLS10_PPS
252#if H_MV
253  if ( pcPPS->getLayerId() > 0 )
254  {
255    WRITE_FLAG( pcPPS->getPpsInferScalingListFlag( ) ? 1 : 0 , "pps_infer_scaling_list_flag" );
256  }
257
258  if( pcPPS->getPpsInferScalingListFlag( ) ) 
259  {
260    WRITE_CODE( pcPPS->getPpsScalingListRefLayerId( ), 6, "pps_scaling_list_ref_layer_id" );
261  }
262  else
263  { 
264#endif 
265#endif
266  WRITE_FLAG( pcPPS->getScalingListPresentFlag() ? 1 : 0,                          "pps_scaling_list_data_present_flag" ); 
267  if( pcPPS->getScalingListPresentFlag() )
268  {
269    codeScalingList( m_pcSlice->getScalingList() );
270  }
271#if !H_MV_HLS10_PPS
272#if H_MV
273  }
274#endif
275#endif
276#if PPS_FIX_DEPTH
277  if( pcPPS->getSPS()->getVPS()->getDepthId(pcPPS->getSPS()->getLayerId()) )
278  {
279    WRITE_FLAG( 1, "lists_modification_present_flag" );
280  }
281  else
282#endif
283  WRITE_FLAG( pcPPS->getListsModificationPresentFlag(), "lists_modification_present_flag");
284  WRITE_UVLC( pcPPS->getLog2ParallelMergeLevelMinus2(), "log2_parallel_merge_level_minus2");
285  WRITE_FLAG( pcPPS->getSliceHeaderExtensionPresentFlag() ? 1 : 0, "slice_segment_header_extension_present_flag");
286
287  #if H_3D
288    if(( !pcPPS->getSPS()->getVPS()->getDepthId( pcPPS->getSPS()->getLayerId() ) )||
289        pcPPS->getLayerId() != 1  )
290    {
291      pcPPS->setPps3dExtensionFlag( false ); 
292    }
293  #endif
294
295#if !H_MV
296  WRITE_FLAG( 0, "pps_extension_flag" );
297#else
298  WRITE_FLAG( 1, "pps_extension_present_flag" );
299
300    WRITE_FLAG( pcPPS->getPpsRangeExtensionsFlag( ) ? 1 : 0 , "pps_range_extensions_flag" );
301    WRITE_FLAG( pcPPS->getPpsMultilayerExtensionFlag( ) ? 1 : 0 , "pps_multilayer_extension_flag" );
302#if !H_3D
303    WRITE_CODE( pcPPS->getPpsExtension6bits( ), 6, "pps_extension_6bits" );
304#else
305    WRITE_FLAG( pcPPS->getPps3dExtensionFlag( ) ? 1 : 0 , "pps_3d_extension_flag" );
306    WRITE_CODE( pcPPS->getPpsExtension5bits( ), 5, "pps_extension_5bits" );
307#endif
308    if ( pcPPS->getPpsRangeExtensionsFlag() )
309    { 
310      assert(0); 
311    }
312
313    if ( pcPPS->getPpsMultilayerExtensionFlag() )
314    { 
315#if H_MV_HLS10_PPS
316      codePPSMultilayerExtension( pcPPS );
317#else
318      WRITE_FLAG( pcPPS->getPocResetInfoPresentFlag( ) ? 1 : 0 , "poc_reset_info_present_flag" );
319      WRITE_FLAG( 0, "pps_extension_reserved_zero_flag" );
320#endif
321    }
322
323#if H_3D
324    if( pcPPS->getPps3dExtensionFlag( )  ) // This probably needs to be aligned with Rext and SHVC
325    {
326      codePPSExtension( pcPPS ); 
327    }
328#endif
329#endif
330
331}
332
333#if H_3D
334Void  TEncCavlc::codePPSExtension        ( TComPPS* pcPPS )
335{
336  // Assuming that all PPS indirectly refer to the same VPS via different SPS
337  // There is no parsing dependency in decoding DLT in PPS.
338  // The VPS information passed to decodePPS() is used to arrange the decoded DLT tables to their corresponding layers.
339  // This is equivalent to the process of
340  //   Step 1) decoding DLT tables based on the number of depth layers, and
341  //   Step 2) mapping DLT tables to the depth layers
342  // as described in the 3D-HEVC WD.
343  TComVPS* pcVPS = pcPPS->getSPS()->getVPS();
344
345  TComDLT* pcDLT = pcPPS->getDLT();
346
347  WRITE_FLAG( pcDLT->getDltPresentFlag() ? 1 : 0, "dlt_present_flag" );
348
349  if ( pcDLT->getDltPresentFlag() )
350  {
351    WRITE_CODE(pcDLT->getNumDepthViews(), 6, "pps_depth_layers_minus1");
352    WRITE_CODE((pcDLT->getDepthViewBitDepth() - 8), 4, "pps_bit_depth_for_depth_views_minus8");
353
354    for( Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ )
355    {
356      if ( i != 0 )
357      {
358        if ( pcVPS->getDepthId( i ) == 1 )
359        {
360          WRITE_FLAG( pcDLT->getUseDLTFlag( i ) ? 1 : 0, "dlt_flag[i]" );
361
362          if ( pcDLT->getUseDLTFlag( i ) )
363          {
364            WRITE_FLAG( pcDLT->getInterViewDltPredEnableFlag( i ) ? 1 : 0, "inter_view_dlt_pred_enable_flag[ i ]");
365
366            // ----------------------------- determine whether to use bit-map -----------------------------
367            Bool bDltBitMapRepFlag       = false;
368            UInt uiNumBitsNonBitMap      = 0;
369            UInt uiNumBitsBitMap         = 0;
370
371            UInt uiMaxDiff               = 0;
372            UInt uiMinDiff               = 0xffffffff;
373            UInt uiLengthMinDiff         = 0;
374            UInt uiLengthDltDiffMinusMin = 0;
375
376            UInt* puiDltDiffValues       = NULL;
377           
378            Int aiIdx2DepthValue_coded[256];
379            UInt uiNumDepthValues_coded = 0;
380           
381            uiNumDepthValues_coded = pcDLT->getNumDepthValues(i);
382            for( UInt ui = 0; ui<uiNumDepthValues_coded; ui++ )
383            {
384              aiIdx2DepthValue_coded[ui] = pcDLT->idx2DepthValue(i, ui);
385            }
386           
387#if H_3D_DELTA_DLT
388            if( pcDLT->getInterViewDltPredEnableFlag( i ) )
389            {
390              AOF( pcVPS->getDepthId( 1 ) == 1 );
391              AOF( i > 1 );
392              // assumes ref layer id to be 1
393              Int* piRefDLT = pcDLT->idx2DepthValue( 1 );
394              UInt uiRefNum = pcDLT->getNumDepthValues( 1 );
395              pcDLT->getDeltaDLT(i, piRefDLT, uiRefNum, aiIdx2DepthValue_coded, &uiNumDepthValues_coded);
396            }
397#endif
398
399            if ( NULL == (puiDltDiffValues = (UInt *)calloc(uiNumDepthValues_coded, sizeof(UInt))) )
400            {
401              exit(-1);
402            }
403
404            for (UInt d = 1; d < uiNumDepthValues_coded; d++)
405            {
406              puiDltDiffValues[d] = aiIdx2DepthValue_coded[d] - aiIdx2DepthValue_coded[d-1];
407
408              if ( uiMaxDiff < puiDltDiffValues[d] )
409              {
410                uiMaxDiff = puiDltDiffValues[d];
411              }
412
413              if ( uiMinDiff > puiDltDiffValues[d] )
414              {
415                uiMinDiff = puiDltDiffValues[d];
416              }
417            }
418
419            // counting bits
420            // diff coding branch
421            uiNumBitsNonBitMap += 8;                          // u(v) bits for num_depth_values_in_dlt[layerId] (i.e. num_entry[ layerId ])
422
423            if ( uiNumDepthValues_coded > 1 )
424            {
425              uiNumBitsNonBitMap += 8;                        // u(v) bits for max_diff[ layerId ]
426            }
427
428            if ( uiNumDepthValues_coded > 2 )
429            {
430              uiLengthMinDiff    = (UInt) ceil(Log2(uiMaxDiff + 1));
431              uiNumBitsNonBitMap += uiLengthMinDiff;          // u(v)  bits for min_diff[ layerId ]
432            }
433
434            uiNumBitsNonBitMap += 8;                          // u(v) bits for dlt_depth_value0[ layerId ]
435
436            if (uiMaxDiff > uiMinDiff)
437            {
438              uiLengthDltDiffMinusMin = (UInt) ceil(Log2(uiMaxDiff - uiMinDiff + 1));
439              uiNumBitsNonBitMap += uiLengthDltDiffMinusMin * (uiNumDepthValues_coded - 1);  // u(v) bits for dlt_depth_value_diff_minus_min[ layerId ][ j ]
440            }
441
442            // bit map branch
443            uiNumBitsBitMap = 256;   // uiNumBitsBitMap = 1 << pcDLT->getDepthViewBitDepth();
444
445            // determine bDltBitMapFlag
446            bDltBitMapRepFlag = (uiNumBitsBitMap > uiNumBitsNonBitMap) ? false : true;
447
448            // ----------------------------- Actual coding -----------------------------
449            if ( pcDLT->getInterViewDltPredEnableFlag( i ) == false )
450            {
451              WRITE_FLAG( bDltBitMapRepFlag ? 1 : 0, "dlt_bit_map_rep_flag[ layerId ]" );
452            }
453            else
454            {
455              bDltBitMapRepFlag = false;
456            }
457
458            // bit map coding
459            if ( bDltBitMapRepFlag )
460            {
461              UInt uiDltArrayIndex = 0; 
462              for (UInt d=0; d < 256; d++)
463              {
464                if ( d == aiIdx2DepthValue_coded[uiDltArrayIndex] )
465                {                 
466                  WRITE_FLAG(1, "dlt_bit_map_flag[ layerId ][ j ]");
467                  uiDltArrayIndex++;
468                }
469                else
470                {
471                  WRITE_FLAG(0, "dlt_bit_map_flag[ layerId ][ j ]");
472                }
473              }
474            }
475            // Diff Coding
476            else
477            {
478              WRITE_CODE(uiNumDepthValues_coded, 8, "num_depth_values_in_dlt[i]");    // num_entry
479
480#if !H_3D_DELTA_DLT
481              if ( pcDLT->getInterViewDltPredEnableFlag( i ) == false )   // Single-view DLT Diff Coding
482#endif
483              {
484                // The condition if( uiNumDepthValues_coded > 0 ) is always true since for Single-view Diff Coding, there is at least one depth value in depth component.
485                if ( uiNumDepthValues_coded > 1 )
486                {
487                  WRITE_CODE(uiMaxDiff, 8, "max_diff[ layerId ]");        // max_diff
488                }
489
490                if ( uiNumDepthValues_coded > 2 )
491                {
492                  WRITE_CODE((uiMinDiff - 1), uiLengthMinDiff, "min_diff_minus1[ layerId ]");     // min_diff_minus1
493                }
494
495                WRITE_CODE(aiIdx2DepthValue_coded[0], 8, "dlt_depth_value0[layerId]");          // entry0
496
497                if (uiMaxDiff > uiMinDiff)
498                {
499                  for (UInt d=1; d < uiNumDepthValues_coded; d++)
500                  {
501                    WRITE_CODE( (puiDltDiffValues[d] - uiMinDiff), uiLengthDltDiffMinusMin, "dlt_depth_value_diff_minus_min[ layerId ][ j ]");    // entry_value_diff_minus_min[ k ]
502                  }
503                }
504              }
505            }
506
507            free(puiDltDiffValues);
508          }
509        }
510      }
511    }
512  }
513}
514#endif
515
516Void TEncCavlc::codeVUI( TComVUI *pcVUI, TComSPS* pcSPS )
517{
518#if ENC_DEC_TRACE
519  fprintf( g_hTrace, "----------- vui_parameters -----------\n");
520#endif
521  WRITE_FLAG(pcVUI->getAspectRatioInfoPresentFlag(),            "aspect_ratio_info_present_flag");
522  if (pcVUI->getAspectRatioInfoPresentFlag())
523  {
524    WRITE_CODE(pcVUI->getAspectRatioIdc(), 8,                   "aspect_ratio_idc" );
525    if (pcVUI->getAspectRatioIdc() == 255)
526    {
527      WRITE_CODE(pcVUI->getSarWidth(), 16,                      "sar_width");
528      WRITE_CODE(pcVUI->getSarHeight(), 16,                     "sar_height");
529    }
530  }
531  WRITE_FLAG(pcVUI->getOverscanInfoPresentFlag(),               "overscan_info_present_flag");
532  if (pcVUI->getOverscanInfoPresentFlag())
533  {
534    WRITE_FLAG(pcVUI->getOverscanAppropriateFlag(),             "overscan_appropriate_flag");
535  }
536  WRITE_FLAG(pcVUI->getVideoSignalTypePresentFlag(),            "video_signal_type_present_flag");
537#if H_MV
538  assert( pcSPS->getLayerId() == 0 || !pcVUI->getVideoSignalTypePresentFlag() ); 
539#endif
540  if (pcVUI->getVideoSignalTypePresentFlag())
541  {
542    WRITE_CODE(pcVUI->getVideoFormat(), 3,                      "video_format");
543    WRITE_FLAG(pcVUI->getVideoFullRangeFlag(),                  "video_full_range_flag");
544    WRITE_FLAG(pcVUI->getColourDescriptionPresentFlag(),        "colour_description_present_flag");
545    if (pcVUI->getColourDescriptionPresentFlag())
546    {
547      WRITE_CODE(pcVUI->getColourPrimaries(), 8,                "colour_primaries");
548      WRITE_CODE(pcVUI->getTransferCharacteristics(), 8,        "transfer_characteristics");
549      WRITE_CODE(pcVUI->getMatrixCoefficients(), 8,             "matrix_coefficients");
550    }
551  }
552
553  WRITE_FLAG(pcVUI->getChromaLocInfoPresentFlag(),              "chroma_loc_info_present_flag");
554  if (pcVUI->getChromaLocInfoPresentFlag())
555  {
556    WRITE_UVLC(pcVUI->getChromaSampleLocTypeTopField(),         "chroma_sample_loc_type_top_field");
557    WRITE_UVLC(pcVUI->getChromaSampleLocTypeBottomField(),      "chroma_sample_loc_type_bottom_field");
558  }
559
560  WRITE_FLAG(pcVUI->getNeutralChromaIndicationFlag(),           "neutral_chroma_indication_flag");
561  WRITE_FLAG(pcVUI->getFieldSeqFlag(),                          "field_seq_flag");
562  WRITE_FLAG(pcVUI->getFrameFieldInfoPresentFlag(),             "frame_field_info_present_flag");
563
564  Window defaultDisplayWindow = pcVUI->getDefaultDisplayWindow();
565  WRITE_FLAG(defaultDisplayWindow.getWindowEnabledFlag(),       "default_display_window_flag");
566  if( defaultDisplayWindow.getWindowEnabledFlag() )
567  {
568    WRITE_UVLC(defaultDisplayWindow.getWindowLeftOffset(),      "def_disp_win_left_offset");
569    WRITE_UVLC(defaultDisplayWindow.getWindowRightOffset(),     "def_disp_win_right_offset");
570    WRITE_UVLC(defaultDisplayWindow.getWindowTopOffset(),       "def_disp_win_top_offset");
571    WRITE_UVLC(defaultDisplayWindow.getWindowBottomOffset(),    "def_disp_win_bottom_offset");
572  }
573  TimingInfo *timingInfo = pcVUI->getTimingInfo();
574  WRITE_FLAG(timingInfo->getTimingInfoPresentFlag(),          "vui_timing_info_present_flag");
575  if(timingInfo->getTimingInfoPresentFlag())
576  {
577    WRITE_CODE(timingInfo->getNumUnitsInTick(), 32,           "vui_num_units_in_tick");
578    WRITE_CODE(timingInfo->getTimeScale(),      32,           "vui_time_scale");
579    WRITE_FLAG(timingInfo->getPocProportionalToTimingFlag(),  "vui_poc_proportional_to_timing_flag");
580    if(timingInfo->getPocProportionalToTimingFlag())
581    {
582      WRITE_UVLC(timingInfo->getNumTicksPocDiffOneMinus1(),   "vui_num_ticks_poc_diff_one_minus1");
583    }
584  WRITE_FLAG(pcVUI->getHrdParametersPresentFlag(),              "hrd_parameters_present_flag");
585  if( pcVUI->getHrdParametersPresentFlag() )
586  {
587    codeHrdParameters(pcVUI->getHrdParameters(), 1, pcSPS->getMaxTLayers() - 1 );
588  }
589  }
590
591  WRITE_FLAG(pcVUI->getBitstreamRestrictionFlag(),              "bitstream_restriction_flag");
592  if (pcVUI->getBitstreamRestrictionFlag())
593  {
594    WRITE_FLAG(pcVUI->getTilesFixedStructureFlag(),             "tiles_fixed_structure_flag");
595    WRITE_FLAG(pcVUI->getMotionVectorsOverPicBoundariesFlag(),  "motion_vectors_over_pic_boundaries_flag");
596    WRITE_FLAG(pcVUI->getRestrictedRefPicListsFlag(),           "restricted_ref_pic_lists_flag");
597    WRITE_UVLC(pcVUI->getMinSpatialSegmentationIdc(),           "min_spatial_segmentation_idc");
598    WRITE_UVLC(pcVUI->getMaxBytesPerPicDenom(),                 "max_bytes_per_pic_denom");
599    WRITE_UVLC(pcVUI->getMaxBitsPerMinCuDenom(),                "max_bits_per_mincu_denom");
600    WRITE_UVLC(pcVUI->getLog2MaxMvLengthHorizontal(),           "log2_max_mv_length_horizontal");
601    WRITE_UVLC(pcVUI->getLog2MaxMvLengthVertical(),             "log2_max_mv_length_vertical");
602  }
603}
604
605Void TEncCavlc::codeHrdParameters( TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1 )
606{
607  if( commonInfPresentFlag )
608  {
609    WRITE_FLAG( hrd->getNalHrdParametersPresentFlag() ? 1 : 0 ,  "nal_hrd_parameters_present_flag" );
610    WRITE_FLAG( hrd->getVclHrdParametersPresentFlag() ? 1 : 0 ,  "vcl_hrd_parameters_present_flag" );
611    if( hrd->getNalHrdParametersPresentFlag() || hrd->getVclHrdParametersPresentFlag() )
612    {
613      WRITE_FLAG( hrd->getSubPicCpbParamsPresentFlag() ? 1 : 0,  "sub_pic_cpb_params_present_flag" );
614      if( hrd->getSubPicCpbParamsPresentFlag() )
615      {
616        WRITE_CODE( hrd->getTickDivisorMinus2(), 8,              "tick_divisor_minus2" );
617        WRITE_CODE( hrd->getDuCpbRemovalDelayLengthMinus1(), 5,  "du_cpb_removal_delay_length_minus1" );
618        WRITE_FLAG( hrd->getSubPicCpbParamsInPicTimingSEIFlag() ? 1 : 0, "sub_pic_cpb_params_in_pic_timing_sei_flag" );
619        WRITE_CODE( hrd->getDpbOutputDelayDuLengthMinus1(), 5,   "dpb_output_delay_du_length_minus1"  );
620      }
621      WRITE_CODE( hrd->getBitRateScale(), 4,                     "bit_rate_scale" );
622      WRITE_CODE( hrd->getCpbSizeScale(), 4,                     "cpb_size_scale" );
623      if( hrd->getSubPicCpbParamsPresentFlag() )
624      {
625        WRITE_CODE( hrd->getDuCpbSizeScale(), 4,                "du_cpb_size_scale" ); 
626      }
627      WRITE_CODE( hrd->getInitialCpbRemovalDelayLengthMinus1(), 5, "initial_cpb_removal_delay_length_minus1" );
628      WRITE_CODE( hrd->getCpbRemovalDelayLengthMinus1(),        5, "au_cpb_removal_delay_length_minus1" );
629      WRITE_CODE( hrd->getDpbOutputDelayLengthMinus1(),         5, "dpb_output_delay_length_minus1" );
630    }
631  }
632  Int i, j, nalOrVcl;
633  for( i = 0; i <= maxNumSubLayersMinus1; i ++ )
634  {
635    WRITE_FLAG( hrd->getFixedPicRateFlag( i ) ? 1 : 0,          "fixed_pic_rate_general_flag");
636    if( !hrd->getFixedPicRateFlag( i ) )
637    {
638      WRITE_FLAG( hrd->getFixedPicRateWithinCvsFlag( i ) ? 1 : 0, "fixed_pic_rate_within_cvs_flag");
639    }
640    else
641    {
642      hrd->setFixedPicRateWithinCvsFlag( i, true );
643    }
644    if( hrd->getFixedPicRateWithinCvsFlag( i ) )
645    {
646      WRITE_UVLC( hrd->getPicDurationInTcMinus1( i ),           "elemental_duration_in_tc_minus1");
647    }
648    else
649    {
650      WRITE_FLAG( hrd->getLowDelayHrdFlag( i ) ? 1 : 0,           "low_delay_hrd_flag");
651    }
652    if (!hrd->getLowDelayHrdFlag( i ))
653    {
654      WRITE_UVLC( hrd->getCpbCntMinus1( i ),                      "cpb_cnt_minus1");
655    }
656   
657    for( nalOrVcl = 0; nalOrVcl < 2; nalOrVcl ++ )
658    {
659      if( ( ( nalOrVcl == 0 ) && ( hrd->getNalHrdParametersPresentFlag() ) ) ||
660          ( ( nalOrVcl == 1 ) && ( hrd->getVclHrdParametersPresentFlag() ) ) )
661      {
662        for( j = 0; j <= ( hrd->getCpbCntMinus1( i ) ); j ++ )
663        {
664          WRITE_UVLC( hrd->getBitRateValueMinus1( i, j, nalOrVcl ), "bit_rate_value_minus1");
665          WRITE_UVLC( hrd->getCpbSizeValueMinus1( i, j, nalOrVcl ), "cpb_size_value_minus1");
666          if( hrd->getSubPicCpbParamsPresentFlag() )
667          {
668            WRITE_UVLC( hrd->getDuCpbSizeValueMinus1( i, j, nalOrVcl ), "cpb_size_du_value_minus1"); 
669            WRITE_UVLC( hrd->getDuBitRateValueMinus1( i, j, nalOrVcl ), "bit_rate_du_value_minus1");
670          }
671          WRITE_FLAG( hrd->getCbrFlag( i, j, nalOrVcl ) ? 1 : 0, "cbr_flag");
672        }
673      }
674    }
675  }
676}
677
678#if H_3D
679Void TEncCavlc::codeSPS( TComSPS* pcSPS, Int viewIndex, Bool depthFlag )
680#else
681Void TEncCavlc::codeSPS( TComSPS* pcSPS )
682#endif
683{
684#if ENC_DEC_TRACE 
685  xTraceSPSHeader (pcSPS);
686#endif
687  WRITE_CODE( pcSPS->getVPSId (),          4,       "sps_video_parameter_set_id" );
688#if H_MV
689  if ( pcSPS->getLayerId() == 0 )
690  {
691#endif
692  WRITE_CODE( pcSPS->getMaxTLayers() - 1,  3,       "sps_max_sub_layers_minus1" );
693#if H_MV_HLS10_MULTILAYERSPS
694#if H_MV
695  }
696  else
697  {
698    WRITE_CODE( pcSPS->getSpsExtOrMaxSubLayersMinus1( ), 3, "sps_ext_or_max_sub_layers_minus1" );
699  }
700  if ( !pcSPS->getMultiLayerExtSpsFlag() )
701  {
702#endif
703#endif
704
705  WRITE_FLAG( pcSPS->getTemporalIdNestingFlag() ? 1 : 0,                             "sps_temporal_id_nesting_flag" );
706  codePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
707#if H_MV
708}
709#endif
710  WRITE_UVLC( pcSPS->getSPSId (),                   "sps_seq_parameter_set_id" );
711#if H_MV
712#if H_MV_HLS10_MULTILAYERSPS
713    if ( pcSPS->getMultiLayerExtSpsFlag() )
714#else
715  if ( pcSPS->getLayerId() > 0 )
716#endif
717  {
718    WRITE_FLAG( pcSPS->getUpdateRepFormatFlag( ) ? 1 : 0 , "update_rep_format_flag" );
719    if ( pcSPS->getUpdateRepFormatFlag() )
720    { 
721      WRITE_CODE( pcSPS->getSpsRepFormatIdx( ), 8, "sps_rep_format_idx" );
722    }
723  }
724  else
725  {
726#endif
727  WRITE_UVLC( pcSPS->getChromaFormatIdc (),         "chroma_format_idc" );
728  assert(pcSPS->getChromaFormatIdc () == 1);
729  // in the first version chroma_format_idc can only be equal to 1 (4:2:0)
730  if( pcSPS->getChromaFormatIdc () == 3 )
731  {
732    WRITE_FLAG( 0,                                  "separate_colour_plane_flag");
733  }
734
735  WRITE_UVLC( pcSPS->getPicWidthInLumaSamples (),   "pic_width_in_luma_samples" );
736  WRITE_UVLC( pcSPS->getPicHeightInLumaSamples(),   "pic_height_in_luma_samples" );
737#if !H_MV_HLS10_MULTILAYERSPS
738#if H_MV
739  }
740#endif
741#endif
742  Window conf = pcSPS->getConformanceWindow();
743
744  WRITE_FLAG( conf.getWindowEnabledFlag(),          "conformance_window_flag" );
745  if (conf.getWindowEnabledFlag())
746  {
747    WRITE_UVLC( conf.getWindowLeftOffset()   / TComSPS::getWinUnitX(pcSPS->getChromaFormatIdc() ), "conf_win_left_offset" );
748    WRITE_UVLC( conf.getWindowRightOffset()  / TComSPS::getWinUnitX(pcSPS->getChromaFormatIdc() ), "conf_win_right_offset" );
749    WRITE_UVLC( conf.getWindowTopOffset()    / TComSPS::getWinUnitY(pcSPS->getChromaFormatIdc() ), "conf_win_top_offset" );
750    WRITE_UVLC( conf.getWindowBottomOffset() / TComSPS::getWinUnitY(pcSPS->getChromaFormatIdc() ), "conf_win_bottom_offset" );
751  }
752#if H_MV_HLS10_MULTILAYERSPS
753#if H_MV
754}
755#endif
756#endif
757
758#if H_MV
759#if H_MV_HLS10_MULTILAYERSPS
760  if ( !pcSPS->getMultiLayerExtSpsFlag() )
761#else
762  if ( pcSPS->getLayerId() == 0 )
763#endif
764  { 
765#endif
766  WRITE_UVLC( pcSPS->getBitDepthY() - 8,             "bit_depth_luma_minus8" );
767  WRITE_UVLC( pcSPS->getBitDepthC() - 8,             "bit_depth_chroma_minus8" );
768#if H_MV
769  }
770#endif
771  WRITE_UVLC( pcSPS->getBitsForPOC()-4,                 "log2_max_pic_order_cnt_lsb_minus4" );
772#if H_MV
773#if H_MV_HLS10_MULTILAYERSPS
774  if ( !pcSPS->getMultiLayerExtSpsFlag()) 
775#else
776  if ( pcSPS->getLayerId() == 0 ) 
777#endif
778  { 
779#endif
780  const Bool subLayerOrderingInfoPresentFlag = 1;
781  WRITE_FLAG(subLayerOrderingInfoPresentFlag,       "sps_sub_layer_ordering_info_present_flag");
782  for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++)
783  {
784    WRITE_UVLC( pcSPS->getMaxDecPicBuffering(i) - 1,       "sps_max_dec_pic_buffering_minus1[i]" );
785    WRITE_UVLC( pcSPS->getNumReorderPics(i),               "sps_num_reorder_pics[i]" );
786    WRITE_UVLC( pcSPS->getMaxLatencyIncrease(i),           "sps_max_latency_increase_plus1[i]" );
787    if (!subLayerOrderingInfoPresentFlag)
788    {
789      break;
790    }
791  }
792#if H_MV
793  }
794#endif
795
796  assert( pcSPS->getMaxCUWidth() == pcSPS->getMaxCUHeight() );
797 
798  WRITE_UVLC( pcSPS->getLog2MinCodingBlockSize() - 3,                                "log2_min_coding_block_size_minus3" );
799  WRITE_UVLC( pcSPS->getLog2DiffMaxMinCodingBlockSize(),                             "log2_diff_max_min_coding_block_size" );
800  WRITE_UVLC( pcSPS->getQuadtreeTULog2MinSize() - 2,                                 "log2_min_transform_block_size_minus2" );
801  WRITE_UVLC( pcSPS->getQuadtreeTULog2MaxSize() - pcSPS->getQuadtreeTULog2MinSize(), "log2_diff_max_min_transform_block_size" );
802  WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthInter() - 1,                               "max_transform_hierarchy_depth_inter" );
803  WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthIntra() - 1,                               "max_transform_hierarchy_depth_intra" );
804  WRITE_FLAG( pcSPS->getScalingListFlag() ? 1 : 0,                                   "scaling_list_enabled_flag" ); 
805  if(pcSPS->getScalingListFlag())
806  {
807#if H_MV
808#if H_MV_HLS10_MULTILAYERSPS
809    if ( pcSPS->getMultiLayerExtSpsFlag() )
810#else
811    if ( pcSPS->getLayerId() > 0 )
812#endif
813    {   
814      WRITE_FLAG( pcSPS->getSpsInferScalingListFlag( ) ? 1 : 0 , "sps_infer_scaling_list_flag" );
815    }
816
817    if ( pcSPS->getSpsInferScalingListFlag() )
818    {
819      WRITE_CODE( pcSPS->getSpsScalingListRefLayerId( ), 6, "sps_scaling_list_ref_layer_id" );
820    }
821    else
822    {   
823#endif
824    WRITE_FLAG( pcSPS->getScalingListPresentFlag() ? 1 : 0,                          "sps_scaling_list_data_present_flag" ); 
825    if(pcSPS->getScalingListPresentFlag())
826    {
827      codeScalingList( m_pcSlice->getScalingList() );
828    }
829#if H_MV
830    }
831#endif
832  }
833  WRITE_FLAG( pcSPS->getUseAMP() ? 1 : 0,                                            "amp_enabled_flag" );
834  WRITE_FLAG( pcSPS->getUseSAO() ? 1 : 0,                                            "sample_adaptive_offset_enabled_flag");
835
836  WRITE_FLAG( pcSPS->getUsePCM() ? 1 : 0,                                            "pcm_enabled_flag");
837  if( pcSPS->getUsePCM() )
838  {
839    WRITE_CODE( pcSPS->getPCMBitDepthLuma() - 1, 4,                                  "pcm_sample_bit_depth_luma_minus1" );
840    WRITE_CODE( pcSPS->getPCMBitDepthChroma() - 1, 4,                                "pcm_sample_bit_depth_chroma_minus1" );
841    WRITE_UVLC( pcSPS->getPCMLog2MinSize() - 3,                                      "log2_min_pcm_luma_coding_block_size_minus3" );
842    WRITE_UVLC( pcSPS->getPCMLog2MaxSize() - pcSPS->getPCMLog2MinSize(),             "log2_diff_max_min_pcm_luma_coding_block_size" );
843    WRITE_FLAG( pcSPS->getPCMFilterDisableFlag()?1 : 0,                              "pcm_loop_filter_disable_flag");
844  }
845
846  assert( pcSPS->getMaxTLayers() > 0 );         
847
848  TComRPSList* rpsList = pcSPS->getRPSList();
849  TComReferencePictureSet*      rps;
850
851  WRITE_UVLC(rpsList->getNumberOfReferencePictureSets(), "num_short_term_ref_pic_sets" );
852  for(Int i=0; i < rpsList->getNumberOfReferencePictureSets(); i++)
853  {
854    rps = rpsList->getReferencePictureSet(i);
855    codeShortTermRefPicSet(pcSPS,rps,false, i);
856  }
857  WRITE_FLAG( pcSPS->getLongTermRefsPresent() ? 1 : 0,         "long_term_ref_pics_present_flag" );
858  if (pcSPS->getLongTermRefsPresent()) 
859  {
860    WRITE_UVLC(pcSPS->getNumLongTermRefPicSPS(), "num_long_term_ref_pic_sps" );
861    for (UInt k = 0; k < pcSPS->getNumLongTermRefPicSPS(); k++)
862    {
863      WRITE_CODE( pcSPS->getLtRefPicPocLsbSps(k), pcSPS->getBitsForPOC(), "lt_ref_pic_poc_lsb_sps");
864      WRITE_FLAG( pcSPS->getUsedByCurrPicLtSPSFlag(k), "used_by_curr_pic_lt_sps_flag");
865    }
866  }
867  WRITE_FLAG( pcSPS->getTMVPFlagsPresent()  ? 1 : 0,           "sps_temporal_mvp_enable_flag" );
868
869  WRITE_FLAG( pcSPS->getUseStrongIntraSmoothing(),             "sps_strong_intra_smoothing_enable_flag" );
870
871  WRITE_FLAG( pcSPS->getVuiParametersPresentFlag(),             "vui_parameters_present_flag" );
872  if (pcSPS->getVuiParametersPresentFlag())
873  {
874      codeVUI(pcSPS->getVuiParameters(), pcSPS);
875  }
876
877#if !H_MV
878  WRITE_FLAG( 0, "sps_extension_flag" );
879#else
880  WRITE_FLAG( pcSPS->getSpsExtensionPresentFlag(), "sps_extension_present_flag" );
881
882  if ( pcSPS->getSpsExtensionPresentFlag() )
883  {
884    WRITE_FLAG( pcSPS->getSpsRangeExtensionsFlag( ) ? 1 : 0 , "sps_range_extensions_flag" );
885    WRITE_FLAG( pcSPS->getSpsMultilayerExtensionFlag( ) ? 1 : 0 , "sps_multilayer_extension_flag" );
886#if !H_3D
887    WRITE_CODE( pcSPS->getSpsExtension6bits( ), 6, "sps_extension_6bits" ); 
888#else
889    WRITE_FLAG( pcSPS->getSps3dExtensionFlag( ) ? 1 : 0 , "sps_3d_extension_flag" );
890    WRITE_CODE( pcSPS->getSpsExtension5bits( ), 5, "sps_extension_5bits" );
891#endif
892  }
893
894  if ( pcSPS->getSpsRangeExtensionsFlag() )
895  {
896    assert( 0 ); 
897  }
898
899  if ( pcSPS->getSpsMultilayerExtensionFlag() )
900  {
901    codeSPSExtension( pcSPS ); 
902  }
903
904#if H_3D
905  if ( pcSPS->getSps3dExtensionFlag() )
906  {
907    codeSPSExtension2( pcSPS, viewIndex, depthFlag  ); 
908  }
909
910#endif
911#endif
912
913}
914
915#if H_MV
916Void TEncCavlc::codeSPSExtension( TComSPS* pcSPS )
917{
918  WRITE_FLAG( pcSPS->getInterViewMvVertConstraintFlag() ? 1 : 0, "inter_view_mv_vert_constraint_flag" );
919#if !H_MV_HLS10_PPS
920  WRITE_UVLC( pcSPS->getNumScaledRefLayerOffsets( ), "num_scaled_ref_layer_offsets" );
921
922  for( Int i = 0; i < pcSPS->getNumScaledRefLayerOffsets( ); i++)
923  {   
924    WRITE_CODE( pcSPS->getScaledRefLayerId( i ), 6, "scaled_ref_layer_id" );
925
926    Int j = pcSPS->getScaledRefLayerId( i ); 
927   
928    WRITE_SVLC( pcSPS->getScaledRefLayerLeftOffset( j ), "scaled_ref_layer_left_offset" );
929    WRITE_SVLC( pcSPS->getScaledRefLayerTopOffset( j ), "scaled_ref_layer_top_offset" );
930    WRITE_SVLC( pcSPS->getScaledRefLayerRightOffset( j ), "scaled_ref_layer_right_offset" );
931    WRITE_SVLC( pcSPS->getScaledRefLayerBottomOffset( j ), "scaled_ref_layer_bottom_offset" );
932    WRITE_FLAG( 0, "sps_multilayer_ext_reserved_zero_flag[ j ]" );
933  }
934#endif
935}
936#endif
937
938#if H_3D
939Void TEncCavlc::codeSPSExtension2( TComSPS* pcSPS, Int viewIndex, Bool depthFlag )
940{
941#if H_3D_QTLPC
942#if !MTK_I0099_VPS_EX2
943//GT: This has to go to VPS
944if( depthFlag )
945{
946  WRITE_FLAG( pcSPS->getUseQTL() ? 1 : 0, "use_qtl_flag");
947  WRITE_FLAG( pcSPS->getUsePC()  ? 1 : 0, "use_pc_flag");
948}
949#endif
950#endif
951}
952#endif
953
954Void TEncCavlc::codeVPS( TComVPS* pcVPS )
955{
956  WRITE_CODE( pcVPS->getVPSId(),                    4,        "vps_video_parameter_set_id" );
957#if H_MV
958  WRITE_FLAG( pcVPS->getVpsBaseLayerInternalFlag( ) ? 1 : 0 , "vps_base_layer_internal_flag" );
959#if H_MV_HLS10_GEN_VSP_BASE_LAYER_AVAIL
960  WRITE_FLAG( pcVPS->getVpsBaseLayerAvailableFlag( ) ? 1 : 0 , "vps_base_layer_available_flag" );
961#else // H_MV_HLS10_GEN
962  WRITE_FLAG( 1                                             , "vps_reserved_one_bit" );
963#endif // H_MV_HLS10_GEN
964#else
965  WRITE_CODE( 3,                                    2,        "vps_reserved_three_2bits" );
966#endif
967#if H_MV
968  WRITE_CODE( pcVPS->getMaxLayersMinus1(),       6,        "vps_max_layers_minus1" );
969#else
970  WRITE_CODE( 0,                                    6,        "vps_reserved_zero_6bits" );
971#endif
972  WRITE_CODE( pcVPS->getMaxTLayers() - 1,           3,        "vps_max_sub_layers_minus1" );
973  WRITE_FLAG( pcVPS->getTemporalNestingFlag(),                "vps_temporal_id_nesting_flag" );
974  assert (pcVPS->getMaxTLayers()>1||pcVPS->getTemporalNestingFlag());
975  WRITE_CODE( 0xffff,                              16,        "vps_reserved_ffff_16bits" );
976  codePTL( pcVPS->getPTL(), true, pcVPS->getMaxTLayers() - 1 );
977  const Bool subLayerOrderingInfoPresentFlag = 1;
978  WRITE_FLAG(subLayerOrderingInfoPresentFlag,              "vps_sub_layer_ordering_info_present_flag");
979  for(UInt i=0; i <= pcVPS->getMaxTLayers()-1; i++)
980  {
981    WRITE_UVLC( pcVPS->getMaxDecPicBuffering(i) - 1,       "vps_max_dec_pic_buffering_minus1[i]" );
982    WRITE_UVLC( pcVPS->getNumReorderPics(i),               "vps_num_reorder_pics[i]" );
983    WRITE_UVLC( pcVPS->getMaxLatencyIncrease(i),           "vps_max_latency_increase_plus1[i]" );
984    if (!subLayerOrderingInfoPresentFlag)
985    {
986      break;
987    }
988  }
989  assert( pcVPS->getNumHrdParameters() <= MAX_VPS_NUM_HRD_PARAMETERS );
990#if H_MV
991  assert( pcVPS->getVpsMaxLayerId() < MAX_VPS_NUH_LAYER_ID_PLUS1 );
992  WRITE_CODE( pcVPS->getVpsMaxLayerId(), 6,                 "vps_max_layer_id" ); 
993#if H_MV_HLS10_GEN_FIX
994  WRITE_UVLC( pcVPS->getVpsNumLayerSetsMinus1(),  "vps_num_layer_sets_minus1" );
995#else
996  WRITE_UVLC( pcVPS->getVpsNumLayerSetsMinus1(),  "vps_max_num_layer_sets_minus1" );
997#endif
998  for( UInt opsIdx = 1; opsIdx <= pcVPS->getVpsNumLayerSetsMinus1(); opsIdx ++ )
999  {
1000    // Operation point set
1001    for( UInt i = 0; i <= pcVPS->getVpsMaxLayerId(); i ++ )
1002    {
1003#else
1004  assert( pcVPS->getMaxNuhReservedZeroLayerId() < MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1 );
1005  WRITE_CODE( pcVPS->getMaxNuhReservedZeroLayerId(), 6,     "vps_max_nuh_reserved_zero_layer_id" );
1006  pcVPS->setMaxOpSets(1);
1007  WRITE_UVLC( pcVPS->getMaxOpSets() - 1,                    "vps_max_op_sets_minus1" );
1008  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getMaxOpSets() - 1 ); opsIdx ++ )
1009  {
1010    // Operation point set
1011    for( UInt i = 0; i <= pcVPS->getMaxNuhReservedZeroLayerId(); i ++ )
1012    {
1013      // Only applicable for version 1
1014      pcVPS->setLayerIdIncludedFlag( true, opsIdx, i );
1015#endif
1016      WRITE_FLAG( pcVPS->getLayerIdIncludedFlag( opsIdx, i ) ? 1 : 0, "layer_id_included_flag[opsIdx][i]" );
1017    }
1018  }
1019  TimingInfo *timingInfo = pcVPS->getTimingInfo();
1020  WRITE_FLAG(timingInfo->getTimingInfoPresentFlag(),          "vps_timing_info_present_flag");
1021  if(timingInfo->getTimingInfoPresentFlag())
1022  {
1023    WRITE_CODE(timingInfo->getNumUnitsInTick(), 32,           "vps_num_units_in_tick");
1024    WRITE_CODE(timingInfo->getTimeScale(),      32,           "vps_time_scale");
1025    WRITE_FLAG(timingInfo->getPocProportionalToTimingFlag(),  "vps_poc_proportional_to_timing_flag");
1026    if(timingInfo->getPocProportionalToTimingFlag())
1027    {
1028      WRITE_UVLC(timingInfo->getNumTicksPocDiffOneMinus1(),   "vps_num_ticks_poc_diff_one_minus1");
1029    }
1030    pcVPS->setNumHrdParameters( 0 );
1031    WRITE_UVLC( pcVPS->getNumHrdParameters(),                 "vps_num_hrd_parameters" );
1032
1033    if( pcVPS->getNumHrdParameters() > 0 )
1034    {
1035      pcVPS->createHrdParamBuffer();
1036    }
1037    for( UInt i = 0; i < pcVPS->getNumHrdParameters(); i ++ )
1038    {
1039      // Only applicable for version 1
1040      pcVPS->setHrdOpSetIdx( 0, i );
1041      WRITE_UVLC( pcVPS->getHrdOpSetIdx( i ),                "hrd_op_set_idx" );
1042      if( i > 0 )
1043      {
1044        WRITE_FLAG( pcVPS->getCprmsPresentFlag( i ) ? 1 : 0, "cprms_present_flag[i]" );
1045      }
1046      codeHrdParameters(pcVPS->getHrdParameters(i), pcVPS->getCprmsPresentFlag( i ), pcVPS->getMaxTLayers() - 1);
1047    }
1048  }
1049#if H_MV
1050  WRITE_FLAG( pcVPS->getVpsExtensionFlag(),                     "vps_extension_flag" );
1051  m_pcBitIf->writeAlignOne();
1052  codeVPSExtension( pcVPS );                           
1053#if H_3D
1054  WRITE_FLAG( 1,                     "vps_extension2_flag" );
1055  m_pcBitIf->writeAlignOne();     
1056  codeVPSExtension2( pcVPS ); 
1057  WRITE_FLAG( 0,                     "vps_extension3_flag" );
1058#else
1059  WRITE_FLAG( 0,                     "vps_extension2_flag" );
1060#endif
1061#else
1062  WRITE_FLAG( 0,                     "vps_extension_flag" );
1063#endif
1064  //future extensions here..
1065
1066  return;
1067}
1068
1069
1070
1071#if H_MV
1072Void TEncCavlc::codeVPSExtension( TComVPS *pcVPS ) 
1073{ 
1074#if H_MV_HLS10_PTL
1075  if( pcVPS->getMaxLayersMinus1() > 0  &&  pcVPS->getVpsBaseLayerInternalFlag() )
1076  {
1077    codePTL( pcVPS->getPTL( 1 ),0, pcVPS->getMaxSubLayersMinus1()  );
1078  }
1079#endif
1080
1081  WRITE_FLAG( pcVPS->getSplittingFlag() ? 1 : 0,             "splitting_flag" );
1082
1083  for( Int type = 0; type < MAX_NUM_SCALABILITY_TYPES; type++ )
1084  {
1085    WRITE_FLAG( pcVPS->getScalabilityMaskFlag( type ) ? 1 : 0,   "scalability_mask_flag[i]" );
1086  }
1087
1088  for( Int sIdx = 0; sIdx < pcVPS->getNumScalabilityTypes( ) - ( pcVPS->getSplittingFlag() ? 1 : 0 ); sIdx++ )
1089  {
1090    WRITE_CODE( pcVPS->getDimensionIdLen( sIdx ) - 1 , 3,    "dimension_id_len_minus1[j]");   
1091  }
1092
1093  if ( pcVPS->getSplittingFlag() )
1094  {
1095    pcVPS->setDimensionIdLen( pcVPS->getNumScalabilityTypes( ) - 1 ,pcVPS->inferLastDimsionIdLenMinus1() + 1 );       
1096  }   
1097
1098  WRITE_FLAG( pcVPS->getVpsNuhLayerIdPresentFlag() ? 1 : 0,  "vps_nuh_layer_id_present_flag");
1099
1100  for( Int i = 1; i <= pcVPS->getMaxLayersMinus1(); i++ )
1101  {
1102    if ( pcVPS->getVpsNuhLayerIdPresentFlag() )
1103    {     
1104      WRITE_CODE( pcVPS->getLayerIdInNuh( i ), 6,          "layer_id_in_nuh[i]");
1105    }
1106    else
1107    {
1108      assert( pcVPS->getLayerIdInNuh( i ) == i ); 
1109    }
1110
1111    assert(  pcVPS->getLayerIdInVps( pcVPS->getLayerIdInNuh( i ) ) == i ); 
1112
1113    for( Int j = 0; j < pcVPS->getNumScalabilityTypes() ; j++ )
1114    {
1115      if ( !pcVPS->getSplittingFlag() )
1116      {
1117        WRITE_CODE( pcVPS->getDimensionId( i, j ), pcVPS->getDimensionIdLen( j ), "dimension_id[i][j]");     
1118      }
1119      else
1120      {
1121        assert( pcVPS->getDimensionId( i, j ) ==  pcVPS->inferDimensionId( i, j )  );
1122      }
1123    }
1124  }
1125
1126  WRITE_CODE( pcVPS->getViewIdLen( ), 4, "view_id_len" );
1127
1128  if ( pcVPS->getViewIdLen( ) > 0 )
1129  {   
1130    for( Int i = 0; i < pcVPS->getNumViews(); i++ )
1131    {
1132      WRITE_CODE( pcVPS->getViewIdVal( i ), pcVPS->getViewIdLen( ), "view_id_val[i]" );
1133    }
1134  }
1135  else
1136  {
1137    for( Int i = 0; i < pcVPS->getNumViews(); i++ )
1138    {
1139      assert( pcVPS->getViewIdVal( i ) == 0 ); 
1140    }
1141  }
1142
1143
1144  for( Int i = 1; i <= pcVPS->getMaxLayersMinus1(); i++ )
1145  {
1146    for( Int j = 0; j < i; j++ )
1147    {
1148      WRITE_FLAG( pcVPS->getDirectDependencyFlag( i, j ),    "direct_dependency_flag[i][j]" );
1149    }
1150  }
1151
1152#if H_MV_HLS10_ADD_LAYERSETS
1153  if ( pcVPS->getNumIndependentLayers() > 1 ) 
1154  {
1155    WRITE_UVLC( pcVPS->getNumAddLayerSets( ), "num_add_layer_sets" );
1156  }
1157  for (Int i = 0; i < pcVPS->getNumAddLayerSets(); i++)
1158  {
1159    for (Int j = 1; j < pcVPS->getNumIndependentLayers(); j++)
1160    {
1161      WRITE_CODE( pcVPS->getHighestLayerIdxPlus1( i, j ), pcVPS->getHighestLayerIdxPlus1Len( j )  , "highest_layer_idx_plus1" );
1162    }
1163 
1164  }
1165#endif
1166
1167
1168  WRITE_FLAG( pcVPS->getVpsSubLayersMaxMinus1PresentFlag( ) ? 1 : 0 , "vps_sub_layers_max_minus1_present_flag" );
1169  if ( pcVPS->getVpsSubLayersMaxMinus1PresentFlag() )
1170  {
1171    for (Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ )
1172    {
1173      WRITE_CODE( pcVPS->getSubLayersVpsMaxMinus1( i ), 3, "sub_layers_vps_max_minus1" );
1174      pcVPS->checkSubLayersVpsMaxMinus1( i ); 
1175    }
1176  } 
1177  else
1178  {
1179    for (Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ )
1180    {
1181      assert( pcVPS->getSubLayersVpsMaxMinus1( i ) + 1 == pcVPS->getMaxTLayers( ) );   
1182    }
1183  }
1184  WRITE_FLAG( pcVPS->getMaxTidRefPresentFlag( ) ? 1 : 0 , "max_tid_ref_present_flag" );
1185
1186  if ( pcVPS->getMaxTidRefPresentFlag() )
1187  {   
1188    for( Int i = 0; i < pcVPS->getMaxLayersMinus1(); i++ )
1189    {
1190      for( Int j = i + 1; j <= pcVPS->getMaxLayersMinus1(); j++ )
1191      {
1192        if ( pcVPS->getDirectDependencyFlag(j,i) )
1193        {
1194          WRITE_CODE( pcVPS->getMaxTidIlRefPicsPlus1( i, j ), 3, "max_tid_il_ref_pics_plus1" );
1195        }
1196      }
1197    }
1198  }
1199
1200  WRITE_FLAG( pcVPS->getAllRefLayersActiveFlag( ) ? 1 : 0 , "all_ref_layers_active_flag" );
1201  WRITE_UVLC( pcVPS->getVpsNumProfileTierLevelMinus1( ), "vps_num_profile_tier_level_minus1" );
1202
1203#if H_MV_HLS10_PTL
1204  Int offsetVal =  ( pcVPS->getMaxLayersMinus1() > 0  &&  pcVPS->getVpsBaseLayerInternalFlag() ) ? 2 : 1;   
1205  for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 2 : 1; i <= pcVPS->getVpsNumProfileTierLevelMinus1(); i++ )
1206  {
1207    WRITE_FLAG( pcVPS->getVpsProfilePresentFlag( i ) ? 1 : 0, "vps_profile_present_flag[i]" );
1208    codePTL( pcVPS->getPTL( offsetVal ), pcVPS->getVpsProfilePresentFlag( i ), pcVPS->getMaxTLayers() - 1 );
1209    offsetVal++;
1210  }
1211#else
1212  for( Int i = 1; i <= pcVPS->getVpsNumProfileTierLevelMinus1(); i++ )
1213  {
1214    WRITE_FLAG( pcVPS->getVpsProfilePresentFlag( i ) ? 1 : 0, "vps_profile_present_flag[i]" );
1215    codePTL( pcVPS->getPTL( i ), pcVPS->getVpsProfilePresentFlag( i ), pcVPS->getMaxTLayers() - 1 );
1216  }
1217#endif
1218
1219#if !H_MV_HLS10_ADD_LAYERSETS
1220  if ( pcVPS->getNumIndependentLayers() > 1 ) 
1221  {
1222   WRITE_UVLC( pcVPS->getNumAddLayerSets( ), "num_add_layer_sets" );
1223  }
1224  for (Int i = 0; i < pcVPS->getNumAddLayerSets(); i++)
1225  {
1226    for (Int j = 0; j < pcVPS->getNumIndependentLayers(); j++)
1227    {
1228      WRITE_CODE( pcVPS->getHighestLayerIdxPlus1( i, j ), pcVPS->getHighestLayerIdxPlus1Len( j )  , "highest_layer_idx_plus1" );
1229    }
1230  }
1231#endif
1232
1233  if (pcVPS->getNumLayerSets() > 1)
1234  {
1235    WRITE_UVLC( pcVPS->getNumAddOlss( ), "num_add_olss" );
1236    WRITE_CODE( pcVPS->getDefaultOutputLayerIdc( ), 2, "default_output_layer_idc" );
1237  }
1238
1239  assert( pcVPS->getOutputLayerFlag(0, 0) == pcVPS->inferOutputLayerFlag( 0, 0 )); 
1240  assert( pcVPS->getLayerSetIdxForOlsMinus1( 0 ) == -1 ); 
1241
1242
1243#if H_MV_HLS10_PTL_FIX
1244  if (pcVPS->getVpsBaseLayerInternalFlag() )
1245  { 
1246    assert( pcVPS->getProfileTierLevelIdx(0,0) == pcVPS->inferProfileTierLevelIdx(0,0) );
1247  }
1248#endif
1249
1250
1251  for( Int i = 1; i < pcVPS->getNumOutputLayerSets( ); i++ )
1252  {
1253    if( i >= pcVPS->getNumLayerSets( ) )   
1254    {     
1255#if !VPS_MISC_UPDATES
1256      WRITE_UVLC( pcVPS->getLayerSetIdxForOlsMinus1( i ),      "layer_set_idx_for_ols_minus1[i]" );
1257#else
1258      WRITE_CODE( pcVPS->getLayerSetIdxForOlsMinus1( i ), pcVPS->getLayerSetIdxForOlsMinus1Len( i ) ,      "layer_set_idx_for_ols_minus1[i]" );
1259#endif
1260    }
1261
1262    if ( i > pcVPS->getVpsNumLayerSetsMinus1() || pcVPS->getDefaultOutputLayerIdc() == 2 )
1263    {       
1264      for( Int j = 0; j < pcVPS->getNumLayersInIdList( pcVPS->olsIdxToLsIdx( i ) ); j++ )
1265      {
1266        WRITE_FLAG( pcVPS->getOutputLayerFlag( i, j) ? 1 : 0, "output_layer_flag" );
1267      }             
1268    }
1269    else
1270    {
1271      for( Int j = 0; j < pcVPS->getNumLayersInIdList( pcVPS->olsIdxToLsIdx( i ) ) - 1; j++ )
1272      {             
1273        assert( pcVPS->getOutputLayerFlag( i , j ) == pcVPS->inferOutputLayerFlag( i, j )); 
1274      }
1275    }       
1276       
1277#if H_MV_HLS10_PTL
1278    for ( Int j = 0; j < pcVPS->getNumLayersInIdList( pcVPS->olsIdxToLsIdx(i)); j++ )
1279    {   
1280      if (pcVPS->getNecessaryLayerFlag( i, j ) && pcVPS->getVpsNumProfileTierLevelMinus1() > 0 )
1281      {
1282        WRITE_CODE( pcVPS->getProfileTierLevelIdx( i, j ), pcVPS->getProfileTierLevelIdxLen() ,"profile_tier_level_idx[ i ][ j ]" );   
1283      }
1284#if H_MV_HLS10_PTL_FIX
1285      if (pcVPS->getNecessaryLayerFlag( i, j ) && pcVPS->getVpsNumProfileTierLevelMinus1() == 0 )
1286      {
1287        assert( pcVPS->getProfileTierLevelIdx( i , j ) == pcVPS->inferProfileTierLevelIdx( i, j ) );
1288      }
1289#endif
1290
1291    }
1292#else
1293    if ( pcVPS->getProfileLevelTierIdxLen()  > 0 )
1294    {     
1295      WRITE_CODE( pcVPS->getProfileLevelTierIdx( i ), pcVPS->getProfileLevelTierIdxLen() ,"profile_level_tier_idx[ i ]" );   
1296    }
1297#endif
1298    if( pcVPS->getNumOutputLayersInOutputLayerSet( i ) == 1 && pcVPS->getNumDirectRefLayers( pcVPS->getOlsHighestOutputLayerId( i ) ) > 0 )
1299    {
1300      WRITE_FLAG( pcVPS->getAltOutputLayerFlag( i ) ? 1 : 0 , "alt_output_layer_flag[ i ]" );
1301    }
1302  }
1303
1304  WRITE_UVLC( pcVPS->getVpsNumRepFormatsMinus1( ), "vps_num_rep_formats_minus1" );
1305
1306  for (Int i = 0; i <= pcVPS->getVpsNumRepFormatsMinus1(); i++ )
1307  {   
1308
1309    TComRepFormat* curRepFormat = pcVPS->getRepFormat(i);     
1310    TComRepFormat* prevRepFormat = i > 0 ? pcVPS->getRepFormat( i - 1) : NULL; 
1311    codeRepFormat( i, curRepFormat ,  prevRepFormat); 
1312
1313  }
1314
1315  if ( pcVPS->getVpsNumRepFormatsMinus1() > 0 )
1316  {
1317    WRITE_FLAG( pcVPS->getRepFormatIdxPresentFlag( ) ? 1 : 0 , "rep_format_idx_present_flag" );
1318  }
1319
1320  if( pcVPS->getRepFormatIdxPresentFlag() ) 
1321  {
1322    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 1 : 0; i <=  pcVPS->getMaxLayersMinus1(); i++ )
1323    {
1324        WRITE_CODE( pcVPS->getVpsRepFormatIdx(i), pcVPS->getVpsRepFormatIdxLen(), "vps_rep_format_idx[i]" );
1325    }
1326  }
1327  else
1328  {
1329    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 1 : 0; i <=  pcVPS->getMaxLayersMinus1(); i++ )
1330    {
1331      assert( pcVPS->getVpsRepFormatIdx( i ) ==  pcVPS->inferVpsRepFormatIdx( i ) );
1332    }
1333  }
1334
1335  WRITE_FLAG( pcVPS->getMaxOneActiveRefLayerFlag( ) ? 1 : 0, "max_one_active_ref_layer_flag" );
1336#if H_MV_HLS7_GEN
1337  WRITE_FLAG( pcVPS->getVpsPocLsbAlignedFlag( ) ? 1 : 0 , "vps_poc_lsb_aligned_flag" );
1338#endif
1339  for( Int i = 1; i  <=  pcVPS->getMaxLayersMinus1(); i++ )
1340  {
1341    if( pcVPS->getNumDirectRefLayers( pcVPS->getLayerIdInNuh( i ) )  ==  0 )
1342    {     
1343      WRITE_FLAG( pcVPS->getPocLsbNotPresentFlag( i ) ? 1 : 0 , "poc_lsb_not_present_flag" );
1344    }
1345  }
1346
1347#if !H_MV_HLS10_GEN_FIX
1348  WRITE_FLAG( 0, "vps_reserved_zero_flag" );
1349#endif
1350  codeDpbSize( pcVPS ); 
1351
1352  WRITE_UVLC( pcVPS->getDirectDepTypeLenMinus2 ( ),         "direct_dep_type_len_minus2"); 
1353
1354  WRITE_FLAG( pcVPS->getDefaultDirectDependencyFlag( ) ? 1 : 0 , "default_direct_dependency_flag" );
1355  if ( pcVPS->getDefaultDirectDependencyFlag( ) )
1356  { 
1357    WRITE_CODE( pcVPS->getDefaultDirectDependencyType( ), pcVPS->getDirectDepTypeLenMinus2( ) + 2 , "default_direct_dependency_type" );   
1358  }
1359
1360  for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ?  1 : 2; i <= pcVPS->getMaxLayersMinus1(); i++ )
1361  {
1362    for( Int j = pcVPS->getVpsBaseLayerInternalFlag() ?  0 : 1; j < i; j++ )
1363    {
1364      if (pcVPS->getDirectDependencyFlag( i, j) )
1365      {       
1366        if ( pcVPS->getDefaultDirectDependencyFlag( ) )
1367        { 
1368          assert( pcVPS->getDirectDependencyType( i, j ) == pcVPS->getDefaultDirectDependencyType( ) );
1369        }
1370        else
1371        {
1372          assert ( pcVPS->getDirectDependencyType( i, j ) != -1 ); 
1373          WRITE_CODE( pcVPS->getDirectDependencyType( i, j ),pcVPS->getDirectDepTypeLenMinus2( ) + 2,  "direct_dependency_type[i][j]" );
1374        }
1375      }
1376    }
1377  } 
1378  WRITE_UVLC( 0, "vps_non_vui_extension_length" );
1379 
1380
1381
1382
1383  WRITE_FLAG( pcVPS->getVpsVuiPresentFlag() ? 1 : 0 , "vps_vui_present_flag" );
1384  if( pcVPS->getVpsVuiPresentFlag() )
1385  {
1386    m_pcBitIf->writeAlignOne();  // vps_vui_alignment_bit_equal_to_one
1387    codeVPSVUI( pcVPS ); 
1388  }     
1389  {
1390    TComVPSVUI* pcVPSVUI = pcVPS->getVPSVUI( ); 
1391    assert( pcVPSVUI ); 
1392    pcVPSVUI->inferVpsVui( true ); 
1393  }
1394
1395}
1396
1397Void TEncCavlc::codeVideoSignalInfo( TComVideoSignalInfo* pcVideoSignalInfo )
1398{
1399  assert( pcVideoSignalInfo ); 
1400  WRITE_CODE( pcVideoSignalInfo->getVideoVpsFormat( ), 3, "video_vps_format" );
1401  WRITE_FLAG( pcVideoSignalInfo->getVideoFullRangeVpsFlag( ) ? 1 : 0 , "video_full_range_vps_flag" );
1402  WRITE_CODE( pcVideoSignalInfo->getColourPrimariesVps( ), 8, "colour_primaries_vps" );
1403  WRITE_CODE( pcVideoSignalInfo->getTransferCharacteristicsVps( ), 8, "transfer_characteristics_vps" );
1404  WRITE_CODE( pcVideoSignalInfo->getMatrixCoeffsVps( ), 8, "matrix_coeffs_vps" );
1405}
1406
1407Void TEncCavlc::codeDpbSize( TComVPS* vps )
1408{ 
1409  TComDpbSize* dpbSize = vps->getDpbSize(); 
1410  assert ( dpbSize != 0 ); 
1411
1412  for( Int i = 1; i < vps->getNumOutputLayerSets(); i++ )
1413  { 
1414    Int currLsIdx = vps->olsIdxToLsIdx( i ); 
1415    WRITE_FLAG( dpbSize->getSubLayerFlagInfoPresentFlag( i ) ? 1 : 0 , "sub_layer_flag_info_present_flag" );
1416    for( Int j = 0; j  <=  vps->getMaxSubLayersInLayerSetMinus1( currLsIdx ); j++ )
1417    { 
1418      if( j > 0  &&  dpbSize->getSubLayerDpbInfoPresentFlag( i, j )  ) 
1419      {
1420        WRITE_FLAG( dpbSize->getSubLayerDpbInfoPresentFlag( i, j ) ? 1 : 0 , "sub_layer_dpb_info_present_flag" );
1421      }
1422      if( dpbSize->getSubLayerDpbInfoPresentFlag( i, j ) )
1423      { 
1424        for( Int k = 0; k < vps->getNumLayersInIdList( currLsIdx ); k++ )   
1425        {
1426#if H_MV_HLS10_DBP_SIZE
1427          if ( vps->getNecessaryLayerFlag( i, k ) && ( vps->getVpsBaseLayerInternalFlag() || ( vps->getLayerSetLayerIdList(vps->olsIdxToLsIdx(i),k) != 0 ) ))
1428          {
1429            WRITE_UVLC( dpbSize->getMaxVpsDecPicBufferingMinus1( i, k, j ), "max_vps_dec_pic_buffering_minus1" );
1430          }
1431          else
1432          {
1433            if ( vps->getNecessaryLayerFlag( i, k ) && ( j == 0 ) && ( k == 0 ) ) 
1434            {
1435              assert( dpbSize->getMaxVpsDecPicBufferingMinus1(i ,k, j ) ==  0 );
1436            }
1437          }
1438#else
1439          WRITE_UVLC( dpbSize->getMaxVpsDecPicBufferingMinus1( i, k, j ), "max_vps_dec_pic_buffering_minus1" );
1440#endif
1441        }
1442        WRITE_UVLC( dpbSize->getMaxVpsNumReorderPics( i, j ), "max_vps_num_reorder_pics" );
1443        WRITE_UVLC( dpbSize->getMaxVpsLatencyIncreasePlus1( i, j ), "max_vps_latency_increase_plus1" );
1444      }
1445      else
1446      {
1447        if ( j > 0 )
1448        {
1449          for( Int k = 0; k < vps->getNumLayersInIdList( vps->olsIdxToLsIdx( i ) ); k++ )   
1450          {
1451#if H_MV_HLS10_DBP_SIZE
1452            if ( vps->getNecessaryLayerFlag(i, k ) )
1453            {           
1454#endif
1455              assert( dpbSize->getMaxVpsDecPicBufferingMinus1( i, k, j ) == dpbSize->getMaxVpsDecPicBufferingMinus1( i,k, j - 1 ) );
1456#if H_MV_HLS10_DBP_SIZE
1457            }
1458#endif 
1459          }
1460          assert( dpbSize->getMaxVpsNumReorderPics      ( i, j ) ==  dpbSize->getMaxVpsNumReorderPics      ( i, j - 1 ) );
1461          assert( dpbSize->getMaxVpsLatencyIncreasePlus1( i, j ) ==  dpbSize->getMaxVpsLatencyIncreasePlus1( i, j - 1 ) );
1462        }
1463      }
1464    }
1465  }
1466}
1467
1468Void TEncCavlc::codeRepFormat( Int i, TComRepFormat* pcRepFormat, TComRepFormat* pcPrevRepFormat )
1469{
1470  assert( pcRepFormat ); 
1471
1472  WRITE_CODE( pcRepFormat->getPicWidthVpsInLumaSamples( ),  16, "pic_width_vps_in_luma_samples" );
1473  WRITE_CODE( pcRepFormat->getPicHeightVpsInLumaSamples( ), 16, "pic_height_vps_in_luma_samples" );
1474  WRITE_FLAG( pcRepFormat->getChromaAndBitDepthVpsPresentFlag( ) ? 1 : 0 , "chroma_and_bit_depth_vps_present_flag" );
1475 
1476  pcRepFormat->checkChromaAndBitDepthVpsPresentFlag( i ); 
1477
1478  if ( pcRepFormat->getChromaAndBitDepthVpsPresentFlag() )
1479  { 
1480  WRITE_CODE( pcRepFormat->getChromaFormatVpsIdc( ), 2, "chroma_format_vps_idc" );
1481
1482  if ( pcRepFormat->getChromaFormatVpsIdc() == 3 )
1483  {
1484    WRITE_FLAG( pcRepFormat->getSeparateColourPlaneVpsFlag( ) ? 1 : 0 , "separate_colour_plane_vps_flag" );
1485  }
1486  WRITE_CODE( pcRepFormat->getBitDepthVpsLumaMinus8( ),      4, "bit_depth_vps_luma_minus8" );
1487  WRITE_CODE( pcRepFormat->getBitDepthVpsChromaMinus8( ),    4, "bit_depth_vps_chroma_minus8" );
1488  }
1489  else
1490  {
1491    pcRepFormat->inferChromaAndBitDepth(pcPrevRepFormat, true ); 
1492  }
1493#if H_MV_HLS10_GEN_VSP_CONF_WIN
1494  WRITE_FLAG( pcRepFormat->getConformanceWindowVpsFlag( ) ? 1 : 0 , "conformance_window_vps_flag" );
1495  if ( pcRepFormat->getConformanceWindowVpsFlag() )
1496  {   
1497    WRITE_UVLC( pcRepFormat->getConfWinVpsLeftOffset( ), "conf_win_vps_left_offset" );
1498    WRITE_UVLC( pcRepFormat->getConfWinVpsRightOffset( ), "conf_win_vps_right_offset" );
1499    WRITE_UVLC( pcRepFormat->getConfWinVpsTopOffset( ), "conf_win_vps_top_offset" );
1500    WRITE_UVLC( pcRepFormat->getConfWinVpsBottomOffset( ), "conf_win_vps_bottom_offset" );
1501  }
1502#endif
1503}
1504
1505Void TEncCavlc::codeVPSVUI( TComVPS* pcVPS )
1506{
1507  assert( pcVPS ); 
1508
1509  TComVPSVUI* pcVPSVUI = pcVPS->getVPSVUI( ); 
1510
1511  assert( pcVPSVUI ); 
1512
1513
1514  WRITE_FLAG( pcVPSVUI->getCrossLayerPicTypeAlignedFlag( ) ? 1 : 0 , "cross_layer_pic_type_aligned_flag" );
1515  if ( !pcVPSVUI->getCrossLayerPicTypeAlignedFlag() )
1516  { 
1517    WRITE_FLAG( pcVPSVUI->getCrossLayerIrapAlignedFlag( ) ? 1 : 0 , "cross_layer_irap_aligned_flag" );
1518  }
1519  if( pcVPSVUI->getCrossLayerIrapAlignedFlag( ) )
1520  {
1521    WRITE_FLAG( pcVPSVUI->getAllLayersIdrAlignedFlag( ) ? 1 : 0 , "all_layers_idr_aligned_flag" );
1522  }
1523  WRITE_FLAG( pcVPSVUI->getBitRatePresentVpsFlag( ) ? 1 : 0 , "bit_rate_present_vps_flag" );
1524  WRITE_FLAG( pcVPSVUI->getPicRatePresentVpsFlag( ) ? 1 : 0 , "pic_rate_present_vps_flag" );
1525  if( pcVPSVUI->getBitRatePresentVpsFlag( )  ||  pcVPSVUI->getPicRatePresentVpsFlag( ) )
1526  {
1527#if H_MV_HLS10_VPS_VUI
1528    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 0 : 1; i < pcVPS->getNumLayerSets(); i++ )
1529#else
1530    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 0 : 1; i  <=  pcVPS->getVpsNumLayerSetsMinus1(); i++ )
1531#endif
1532    {
1533      for( Int j = 0; j  <=  pcVPS->getMaxSubLayersInLayerSetMinus1( i ); j++ ) 
1534      {
1535        if( pcVPSVUI->getBitRatePresentVpsFlag( ) )
1536        {
1537          WRITE_FLAG( pcVPSVUI->getBitRatePresentFlag( i, j ) ? 1 : 0 , "bit_rate_present_flag" );
1538        }
1539        if( pcVPSVUI->getBitRatePresentVpsFlag( )  )
1540        {
1541          WRITE_FLAG( pcVPSVUI->getPicRatePresentFlag( i, j ) ? 1 : 0 , "pic_rate_present_flag" );
1542        }
1543        if( pcVPSVUI->getBitRatePresentFlag( i, j ) )
1544        {
1545          WRITE_CODE( pcVPSVUI->getAvgBitRate( i, j ), 16, "avg_bit_rate" );
1546          WRITE_CODE( pcVPSVUI->getMaxBitRate( i, j ), 16, "max_bit_rate" );
1547        }
1548        if( pcVPSVUI->getPicRatePresentFlag( i, j ) )
1549        {
1550          WRITE_CODE( pcVPSVUI->getConstantPicRateIdc( i, j ), 2, "constant_pic_rate_idc" );
1551          WRITE_CODE( pcVPSVUI->getAvgPicRate( i, j ), 16, "avg_pic_rate" );
1552        }
1553      }
1554    }
1555  }
1556
1557  WRITE_FLAG( pcVPSVUI->getVideoSignalInfoIdxPresentFlag( ) ? 1 : 0 , "video_signal_info_idx_present_flag" );
1558  if( pcVPSVUI->getVideoSignalInfoIdxPresentFlag() )
1559  {
1560    WRITE_CODE( pcVPSVUI->getVpsNumVideoSignalInfoMinus1( ), 4, "vps_num_video_signal_info_minus1" );
1561  }
1562  else
1563  {
1564#if H_MV_HLS10_VPS_VUI
1565    assert( pcVPSVUI->getVpsNumVideoSignalInfoMinus1() == pcVPS->getMaxLayersMinus1() - ( pcVPS->getVpsBaseLayerInternalFlag() ? 0 : 1)  ); 
1566#else
1567    pcVPSVUI->setVpsNumVideoSignalInfoMinus1( pcVPS->getMaxLayersMinus1() ); 
1568#endif
1569  }
1570
1571  for( Int i = 0; i <= pcVPSVUI->getVpsNumVideoSignalInfoMinus1(); i++ )
1572  {
1573    assert( pcVPSVUI->getVideoSignalInfo( i ) != NULL ); 
1574    TComVideoSignalInfo* curVideoSignalInfo = pcVPSVUI->getVideoSignalInfo( i ); 
1575    codeVideoSignalInfo( curVideoSignalInfo );     
1576
1577  }
1578
1579  if( pcVPSVUI->getVideoSignalInfoIdxPresentFlag() && pcVPSVUI->getVpsNumVideoSignalInfoMinus1() > 0 )
1580  {
1581#if I0045_VPS_VUI_VST_PARAMS
1582    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 0 : 1; i <=  pcVPS->getMaxLayersMinus1(); i++ )
1583    {
1584      WRITE_CODE( pcVPSVUI->getVpsVideoSignalInfoIdx( i ), 4, "vps_video_signal_info_idx" );
1585    }
1586#else
1587    for( Int i = 1; i <=  pcVPS->getMaxLayersMinus1(); i++ )
1588    {
1589      WRITE_CODE( pcVPSVUI->getVpsVideoSignalInfoIdx( i ), 4, "vps_video_signal_info_idx" );
1590      assert( pcVPSVUI->getVpsVideoSignalInfoIdx( i ) >= 0 && pcVPSVUI->getVpsVideoSignalInfoIdx( i ) <= pcVPSVUI->getVpsNumVideoSignalInfoMinus1() );
1591    }
1592  }
1593  else
1594  {
1595    for( Int i = 1; i <=  pcVPS->getMaxLayersMinus1(); i++ )
1596    {
1597      assert( pcVPSVUI->getVpsVideoSignalInfoIdx( i  ) == ( pcVPSVUI->getVideoSignalInfoIdxPresentFlag() ? 0 : i ) ); 
1598    }
1599#endif
1600  }
1601  WRITE_FLAG( pcVPSVUI->getTilesNotInUseFlag( ) ? 1 : 0 , "tiles_not_in_use_flag" );
1602  if( !pcVPSVUI->getTilesNotInUseFlag() ) 
1603  {     
1604    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 0 : 1; i  <=  pcVPS->getMaxLayersMinus1(); i++ )
1605    {
1606      WRITE_FLAG( pcVPSVUI->getTilesInUseFlag( i ) ? 1 : 0 , "tiles_in_use_flag[i]" );
1607      if( pcVPSVUI->getTilesInUseFlag( i ) ) 
1608      {
1609        WRITE_FLAG( pcVPSVUI->getLoopFilterNotAcrossTilesFlag( i ) ? 1 : 0, "loop_filter_not_across_tiles_flag[i]" );
1610      }
1611    } 
1612    for( Int i = pcVPS->getVpsBaseLayerInternalFlag() ? 1 : 2; i  <=  pcVPS->getMaxLayersMinus1(); i++ ) 
1613    {
1614      for( Int j = 0; j < pcVPS->getNumDirectRefLayers( pcVPS->getLayerIdInNuh( i ) ) ; j++ )
1615      { 
1616#if H_MV_HLS10_REF_PRED_LAYERS
1617        Int layerIdx = pcVPS->getLayerIdInVps(pcVPS->getIdRefLayer(pcVPS->getLayerIdInNuh( i ) , j  )); 
1618#else
1619        Int layerIdx = pcVPS->getLayerIdInVps(pcVPS->getRefLayerId(pcVPS->getLayerIdInNuh( i ) , j  )); 
1620#endif
1621        if( pcVPSVUI->getTilesInUseFlag( i )  &&  pcVPSVUI->getTilesInUseFlag( layerIdx ) ) 
1622        {
1623          WRITE_FLAG( pcVPSVUI->getTileBoundariesAlignedFlag( i, j ) ? 1 : 0 , "tile_boundaries_aligned_flag[i][j]" );
1624        }
1625      } 
1626    }
1627  } 
1628
1629  WRITE_FLAG( pcVPSVUI->getWppNotInUseFlag( ) ? 1 : 0 , "wpp_not_in_use_flag" );
1630
1631  if( !pcVPSVUI->getWppNotInUseFlag( ) )
1632  {
1633    for( Int i = 0; i  <=  pcVPS->getMaxLayersMinus1(); i++ ) 
1634    {
1635      WRITE_FLAG( pcVPSVUI->getWppInUseFlag( i ) ? 1 : 0 , "wpp_in_use_flag[i]" );
1636    }
1637  }
1638#if H_MV_HLS10_VPS_VUI
1639  WRITE_FLAG( pcVPSVUI->getSingleLayerForNonIrapFlag( ) ? 1 : 0 , "single_layer_for_non_irap_flag" );
1640  WRITE_FLAG( pcVPSVUI->getHigherLayerIrapSkipFlag( ) ? 1 : 0 , "higher_layer_irap_skip_flag" );
1641#else
1642  WRITE_CODE( 0, 3, "vps_vui_reserved_zero_3bits" );
1643#endif
1644  WRITE_FLAG( pcVPSVUI->getIlpRestrictedRefLayersFlag( ) ? 1 : 0 , "ilp_restricted_ref_layers_flag" );
1645
1646  if( pcVPSVUI->getIlpRestrictedRefLayersFlag( ) )
1647  {
1648    for( Int i = 1; i  <=  pcVPS->getMaxLayersMinus1(); i++ )
1649    {
1650      for( Int j = 0; j < pcVPS->getNumDirectRefLayers( pcVPS->getLayerIdInNuh( i ) ); j++ )
1651      {
1652#if H_MV_HLS10_REF_PRED_LAYERS
1653        if( pcVPS->getVpsBaseLayerInternalFlag() || pcVPS->getIdRefLayer( pcVPS->getLayerIdInNuh( i ), j ) > 0 )
1654#else
1655        if( pcVPS->getVpsBaseLayerInternalFlag() || pcVPS->getRefLayerId( pcVPS->getLayerIdInNuh( i ), j ) > 0 )
1656#endif
1657        {       
1658          WRITE_UVLC( pcVPSVUI->getMinSpatialSegmentOffsetPlus1( i, j ), "min_spatial_segment_offset_plus1" );
1659          if( pcVPSVUI->getMinSpatialSegmentOffsetPlus1( i, j ) > 0 )
1660          {
1661            WRITE_FLAG( pcVPSVUI->getCtuBasedOffsetEnabledFlag( i, j ) ? 1 : 0 , "ctu_based_offset_enabled_flag" );
1662            if( pcVPSVUI->getCtuBasedOffsetEnabledFlag( i, j ) )
1663            {
1664              WRITE_UVLC( pcVPSVUI->getMinHorizontalCtuOffsetPlus1( i, j ), "min_horizontal_ctu_offset_plus1" );
1665            }
1666          }
1667        }
1668      }
1669    }
1670  }
1671
1672
1673  WRITE_FLAG( pcVPSVUI->getVpsVuiBspHrdPresentFlag( ) ? 1 : 0 , "vps_vui_bsp_hrd_present_flag" );
1674  if ( pcVPSVUI->getVpsVuiBspHrdPresentFlag( ) )
1675  {
1676    codeVpsVuiBspHrdParameters( pcVPS ); 
1677  }
1678  for( Int i = 1; i  <=  pcVPS->getMaxLayersMinus1(); i++ )
1679  {
1680    if( pcVPS->getNumDirectRefLayers( pcVPS->getLayerIdInNuh( i )) == 0 ) 
1681    {
1682      WRITE_FLAG( pcVPSVUI->getBaseLayerParameterSetCompatibilityFlag( i ) ? 1 : 0 , "base_layer_parameter_set_compatibility_flag" );
1683    }
1684  }
1685}
1686
1687Void TEncCavlc::codeVpsVuiBspHrdParameters( TComVPS* pcVPS )
1688{
1689  assert( pcVPS ); 
1690
1691  TComVPSVUI* pcVPSVUI = pcVPS->getVPSVUI( ); 
1692
1693  assert( pcVPSVUI ); 
1694
1695  TComVpsVuiBspHrdParameters*  vpsVuiBspHrdP = pcVPSVUI->getVpsVuiBspHrdParameters(); 
1696
1697  assert ( vpsVuiBspHrdP );
1698 
1699#if H_MV_HLS10_VPS_VUI_BSP
1700  WRITE_UVLC( vpsVuiBspHrdP->getVpsNumAddHrdParams( ), "vps_num_add_hrd_params" );
1701
1702  for( Int i = pcVPS->getNumHrdParameters(); i < pcVPS->getNumHrdParameters() + vpsVuiBspHrdP->getVpsNumAddHrdParams(); i++ )
1703  { 
1704    if( i > 0 ) 
1705    {
1706      WRITE_FLAG( vpsVuiBspHrdP->getCprmsAddPresentFlag( i ) ? 1 : 0 , "cprms_add_present_flag" );
1707    }
1708    WRITE_UVLC( vpsVuiBspHrdP->getNumSubLayerHrdMinus1( i ), "num_sub_layer_hrd_minus1" );
1709    TComHRD* hrdParameters = vpsVuiBspHrdP->getHrdParametermeters( i ); 
1710    codeHrdParameters( hrdParameters, vpsVuiBspHrdP->getCprmsAddPresentFlag( i ), vpsVuiBspHrdP->getNumSubLayerHrdMinus1( i ) );     
1711  }
1712
1713  for( Int h = 1; h < pcVPS->getNumOutputLayerSets(); h++ )
1714  { 
1715    WRITE_UVLC( vpsVuiBspHrdP->getNumSignalledPartitioningSchemes( h ), "num_signalled_partitioning_schemes" );
1716
1717    for( Int j = 1; j < vpsVuiBspHrdP->getNumSignalledPartitioningSchemes( h ) + 1; j++ )
1718    { 
1719      WRITE_UVLC( vpsVuiBspHrdP->getNumPartitionsInSchemeMinus1( h, j ), "num_partitions_in_scheme_minus1" );
1720      for( Int k = 0; k  <=  vpsVuiBspHrdP->getNumPartitionsInSchemeMinus1( h, j ); k++ ) 
1721      {
1722        for( Int r = 0; r < pcVPS->getNumLayersInIdList(pcVPS->olsIdxToLsIdx( h ) )   ; r++ ) 
1723        {
1724          WRITE_FLAG( vpsVuiBspHrdP->getLayerIncludedInPartitionFlag( h, j, k, r ) ? 1 : 0 , "layer_included_in_partition_flag" );
1725        }
1726      }
1727    } 
1728    for( Int i = 0; i < vpsVuiBspHrdP->getNumSignalledPartitioningSchemes( h ) + 1; i++ ) 
1729    {
1730      for( Int t = 0; t  <=  pcVPS->getMaxSubLayersInLayerSetMinus1( pcVPS->olsIdxToLsIdx( h ) ); t++ )
1731      { 
1732        WRITE_UVLC( vpsVuiBspHrdP->getNumBspSchedulesMinus1( h, i, t ), "num_bsp_schedules_minus1" );
1733        for( Int j = 0; j  <=  vpsVuiBspHrdP->getNumBspSchedulesMinus1( h, i, t ); j++ ) 
1734        {
1735          for( Int k = 0; k  <=  vpsVuiBspHrdP->getNumPartitionsInSchemeMinus1( h, j ); k++ )
1736          { 
1737            WRITE_CODE( vpsVuiBspHrdP->getBspHrdIdx( h, i, t, j, k ), vpsVuiBspHrdP->getBspHrdIdxLen( pcVPS ), "bsp_hrd_idx" );
1738            WRITE_UVLC( vpsVuiBspHrdP->getBspSchedIdx( h, i, t, j, k ), "bsp_sched_idx" );
1739          } 
1740        }
1741      } 
1742    }
1743  } 
1744
1745#else // H_MV_HLS10_GEN
1746  WRITE_UVLC( vpsVuiBspHrdP->getVpsNumBspHrdParametersMinus1( ), "vps_num_bsp_hrd_parameters_minus1" );
1747  for( Int i = 0; i <= vpsVuiBspHrdP->getVpsNumBspHrdParametersMinus1( ); i++ )
1748  { 
1749    if( i > 0 )
1750    {
1751      WRITE_FLAG( vpsVuiBspHrdP->getBspCprmsPresentFlag( i ) ? 1 : 0 , "bsp_cprms_present_flag" );
1752    }
1753    TComHRD* hrdParameters = vpsVuiBspHrdP->getHrdParametermeters( i ); 
1754    codeHrdParameters( hrdParameters, vpsVuiBspHrdP->getBspCprmsPresentFlag( i ), pcVPS->getMaxSubLayersMinus1() );     
1755  } 
1756  for( Int h = 1; h <= pcVPS->getVpsNumLayerSetsMinus1(); h++ )
1757  { 
1758    WRITE_UVLC( vpsVuiBspHrdP->getNumBitstreamPartitions( h ), "num_bitstream_partitions" );
1759    for( Int i = 0; i < vpsVuiBspHrdP->getNumBitstreamPartitions( h ); i++ ) 
1760    {
1761      for( Int j = 0; j < pcVPS->getNumLayersInIdList( h ); j++ ) 
1762      {
1763        WRITE_FLAG( vpsVuiBspHrdP->getLayerInBspFlag( h, i, j ) ? 1 : 0 , "layer_in_bsp_flag" );
1764      }
1765    }
1766    vpsVuiBspHrdP->checkLayerInBspFlag( pcVPS, h ); 
1767
1768    if( vpsVuiBspHrdP->getNumBitstreamPartitions( h ) )
1769    { 
1770      WRITE_UVLC( vpsVuiBspHrdP->getNumBspSchedCombinationsMinus1( h ), "num_bsp_sched_combinations_minus1" );
1771      for( Int i = 0; i <= vpsVuiBspHrdP->getNumBspSchedCombinationsMinus1( h ); i++ )
1772      {
1773        for( Int j = 0; j < vpsVuiBspHrdP->getNumBitstreamPartitions( h ); j++ )
1774        { 
1775          WRITE_CODE( vpsVuiBspHrdP->getBspCombHrdIdx( h, i, j ),  vpsVuiBspHrdP->getBspCombHrdIdxLen(), "bsp_comb_hrd_idx" ); 
1776          WRITE_UVLC( vpsVuiBspHrdP->getBspCombSchedIdx( h, i, j ), "bsp_comb_sched_idx" );
1777
1778          vpsVuiBspHrdP->checkBspCombHrdAndShedIdx( pcVPS, h, i, j ); 
1779        } 
1780      }
1781    } 
1782  }
1783#endif 
1784} 
1785#endif
1786
1787#if H_3D
1788Void TEncCavlc::codeVPSExtension2( TComVPS* pcVPS )
1789{ 
1790#if SEC_VPS_CLEANUP_I0090
1791  for( Int i = 1; i <= pcVPS->getMaxLayersMinus1(); i++ )
1792#else
1793  for( Int i = 0; i <= pcVPS->getMaxLayersMinus1(); i++ )
1794#endif
1795  {
1796#if !SEC_VPS_CLEANUP_I0090
1797    if (i!= 0)
1798#endif
1799    {
1800#if MTK_I0099_VPS_EX2
1801      WRITE_FLAG( pcVPS->getIvMvPredFlag         ( i ) ? 1 : 0 , "iv_mv_pred_flag[i]");
1802#if SEC_HLS_CLEANUP_I0100
1803      WRITE_FLAG( pcVPS->getIvMvScalingFlag( i ) ? 1 : 0 ,       "iv_mv_scaling_flag[i]" );
1804#endif
1805
1806#endif
1807      if ( !( pcVPS->getDepthId( i ) == 1 ) )
1808      {
1809#if H_3D_IV_MERGE
1810#if !MTK_I0099_VPS_EX2
1811        WRITE_FLAG( pcVPS->getIvMvPredFlag         ( i ) ? 1 : 0 , "iv_mv_pred_flag[i]");
1812#endif
1813#if H_3D_SPIVMP
1814        WRITE_UVLC( pcVPS->getSubPULog2Size(i)-3, "log2_sub_PU_size_minus3[i]");
1815#endif
1816#endif
1817#if H_3D_ARP
1818        WRITE_FLAG( pcVPS->getUseAdvRP             ( i ) ? 1 : 0,  "iv_res_pred_flag[i]"  );
1819#endif
1820#if H_3D_NBDV_REF
1821        WRITE_FLAG( pcVPS->getDepthRefinementFlag  ( i ) ? 1 : 0 , "depth_refinement_flag[i]");
1822#endif
1823#if H_3D_VSP
1824        WRITE_FLAG( pcVPS->getViewSynthesisPredFlag( i ) ? 1 : 0 , "view_synthesis_pred_flag[i]");
1825#endif
1826#if H_3D_DBBP
1827        WRITE_FLAG( pcVPS->getUseDBBP( i ) ? 1 : 0, "use_dbbp_flag[i]" );
1828#endif
1829      }         
1830      else
1831      {
1832#if !MTK_I0099_VPS_EX2
1833        if(i!=1)
1834        {
1835          WRITE_FLAG( pcVPS->getIvMvPredFlag         ( i ) ? 1 : 0 , "iv_mv_pred_flag[i]");
1836        }
1837#if H_3D_SPIVMP
1838        if (i!=1)
1839        {
1840          WRITE_UVLC( pcVPS->getSubPULog2Size(i)-3, "log2_sub_PU_size_minus3[i]");
1841        }
1842#endif
1843#endif
1844#if H_3D_IV_MERGE
1845        WRITE_FLAG( pcVPS->getMPIFlag( i ) ? 1 : 0 ,          "mpi_flag[i]" );
1846#endif
1847#if MTK_I0099_VPS_EX2
1848        WRITE_UVLC( pcVPS->getSubPUMPILog2Size(i)-3, "log2_mpi_sub_PU_size_minus3[i]");
1849#endif
1850        WRITE_FLAG( pcVPS->getVpsDepthModesFlag( i ) ? 1 : 0 ,          "vps_depth_modes_flag[i]" );
1851#if SEPARATE_FLAG_I0085
1852        WRITE_FLAG( pcVPS->getIVPFlag( i ) ? 1 : 0 ,               "IVP_flag[i]" );
1853#endif
1854#if MTK_I0099_VPS_EX2
1855        WRITE_FLAG( pcVPS->getLimQtPredFlag    ( i ) ? 1 : 0 ,          "lim_qt_pred_flag[i]"     ); 
1856#endif
1857
1858#if H_3D_INTER_SDC
1859        WRITE_FLAG( pcVPS->getInterSDCFlag( i ) ? 1 : 0, "depth_inter_SDC_flag" );
1860#endif
1861      }
1862    } 
1863  }
1864  WRITE_UVLC( pcVPS->getCamParPrecision(), "cp_precision" );
1865#if SEC_VPS_CLEANUP_I0090
1866  for (UInt viewIndex=1; viewIndex<pcVPS->getNumViews(); viewIndex++)
1867#else
1868  for (UInt viewIndex=0; viewIndex<pcVPS->getNumViews(); viewIndex++)
1869#endif
1870  {
1871    WRITE_FLAG( pcVPS->getCamParPresent(viewIndex) ? 1 : 0, "cp_present_flag[i]" );
1872    if ( pcVPS->getCamParPresent(viewIndex) )
1873    {
1874      WRITE_FLAG( pcVPS->hasCamParInSliceHeader(viewIndex) ? 1 : 0, "cp_in_slice_segment_header_flag[i]" );
1875      if ( !pcVPS->hasCamParInSliceHeader(viewIndex) )
1876      {
1877        for( UInt uiIndex = 0; uiIndex < viewIndex; uiIndex++ )
1878        {
1879          WRITE_SVLC( pcVPS->getCodedScale    (viewIndex)[ uiIndex ],                                               "vps_cp_scale" );
1880          WRITE_SVLC( pcVPS->getCodedOffset   (viewIndex)[ uiIndex ],                                               "vps_cp_off" );
1881          WRITE_SVLC( pcVPS->getInvCodedScale (viewIndex)[ uiIndex ] + pcVPS->getCodedScale (viewIndex)[ uiIndex ], "vps_cp_inv_scale_plus_scale" );
1882          WRITE_SVLC( pcVPS->getInvCodedOffset(viewIndex)[ uiIndex ] + pcVPS->getCodedOffset(viewIndex)[ uiIndex ], "vps_cp_inv_off_plus_off" );
1883        }
1884      }
1885    }
1886  }
1887#if !MTK_I0099_VPS_EX2
1888  WRITE_UVLC( pcVPS->getSubPUMPILog2Size( ) - 3, "log2_sub_PU_MPI_size_minus3");
1889#endif
1890#if H_3D_TMVP
1891#if !SEC_HLS_CLEANUP_I0100
1892  WRITE_FLAG( pcVPS->getIvMvScalingFlag( ) ? 1 : 0 ,          "iv_mv_scaling_flag" );
1893#endif
1894#endif
1895}
1896#endif
1897
1898Void TEncCavlc::codeSliceHeader         ( TComSlice* pcSlice )
1899{
1900#if H_MV
1901  TComVPS* vps = pcSlice->getVPS(); 
1902#endif
1903#if ENC_DEC_TRACE 
1904  xTraceSliceHeader (pcSlice);
1905#endif
1906
1907  //calculate number of bits required for slice address
1908  Int maxSliceSegmentAddress = pcSlice->getPic()->getNumCUsInFrame();
1909  Int bitsSliceSegmentAddress = 0;
1910  while(maxSliceSegmentAddress>(1<<bitsSliceSegmentAddress)) 
1911  {
1912    bitsSliceSegmentAddress++;
1913  }
1914  Int ctuAddress;
1915  if (pcSlice->isNextSlice())
1916  {
1917    // Calculate slice address
1918    ctuAddress = (pcSlice->getSliceCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU());
1919  }
1920  else
1921  {
1922    // Calculate slice address
1923    ctuAddress = (pcSlice->getSliceSegmentCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU());
1924  }
1925  //write slice address
1926  Int sliceSegmentAddress = pcSlice->getPic()->getPicSym()->getCUOrderMap(ctuAddress);
1927
1928  WRITE_FLAG( sliceSegmentAddress==0, "first_slice_segment_in_pic_flag" );
1929  if ( pcSlice->getRapPicFlag() )
1930  {
1931#if SETTING_NO_OUT_PIC_PRIOR
1932    WRITE_FLAG( pcSlice->getNoOutputPriorPicsFlag() ? 1 : 0, "no_output_of_prior_pics_flag" );
1933#else
1934    WRITE_FLAG( 0, "no_output_of_prior_pics_flag" );
1935#endif
1936  }
1937#if PPS_FIX_DEPTH
1938  if( pcSlice->getIsDepth() )
1939  {
1940    WRITE_UVLC( 1, "slice_pic_parameter_set_id" );
1941  }
1942  else
1943#endif
1944  WRITE_UVLC( pcSlice->getPPS()->getPPSId(), "slice_pic_parameter_set_id" );
1945  pcSlice->setDependentSliceSegmentFlag(!pcSlice->isNextSlice());
1946  if ( pcSlice->getPPS()->getDependentSliceSegmentsEnabledFlag() && (sliceSegmentAddress!=0) )
1947  {
1948    WRITE_FLAG( pcSlice->getDependentSliceSegmentFlag() ? 1 : 0, "dependent_slice_segment_flag" );
1949  }
1950  if(sliceSegmentAddress>0)
1951  {
1952    WRITE_CODE( sliceSegmentAddress, bitsSliceSegmentAddress, "slice_segment_address" );
1953  }
1954  if ( !pcSlice->getDependentSliceSegmentFlag() )
1955  {
1956#if H_MV   
1957    Int esb = 0;  //Don't use i, otherwise will shadow something below
1958
1959    if ( pcSlice->getPPS()->getNumExtraSliceHeaderBits() > esb )
1960    {
1961      esb++; 
1962      WRITE_FLAG( pcSlice->getDiscardableFlag( ) ? 1 : 0 , "discardable_flag" );
1963#if NON_REF_NAL_TYPE_DISCARDABLE
1964      if (pcSlice->getDiscardableFlag( ))
1965      {
1966        assert(pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_TRAIL_R &&
1967          pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_TSA_R &&
1968          pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_STSA_R &&
1969          pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_RADL_R &&
1970          pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_RASL_R);
1971      }
1972#endif
1973    }
1974
1975    if ( pcSlice->getPPS()->getNumExtraSliceHeaderBits() > esb )
1976    {
1977      esb++; 
1978      WRITE_FLAG( pcSlice->getCrossLayerBlaFlag( ) ? 1 : 0 , "cross_layer_bla_flag" );
1979    }
1980    pcSlice->checkCrossLayerBlaFlag( ); 
1981#if !H_MV_HLS7_GEN
1982    if ( pcSlice->getPPS()->getNumExtraSliceHeaderBits() > esb )
1983    {
1984      esb++; 
1985      WRITE_FLAG( pcSlice->getPocResetFlag( ) ? 1 : 0 , "poc_reset_flag" );
1986    }
1987#endif
1988
1989
1990
1991    for (; esb < pcSlice->getPPS()->getNumExtraSliceHeaderBits(); esb++)   
1992#else
1993    for (Int i = 0; i < pcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
1994#endif
1995    {
1996      assert(!!"slice_reserved_undetermined_flag[]");
1997      WRITE_FLAG(0, "slice_reserved_undetermined_flag[]");
1998    }
1999
2000    WRITE_UVLC( pcSlice->getSliceType(),       "slice_type" );
2001
2002    if( pcSlice->getPPS()->getOutputFlagPresentFlag() )
2003    {
2004      WRITE_FLAG( pcSlice->getPicOutputFlag() ? 1 : 0, "pic_output_flag" );
2005    }
2006
2007    // in the first version chroma_format_idc is equal to one, thus colour_plane_id will not be present
2008    assert (pcSlice->getSPS()->getChromaFormatIdc() == 1 );
2009    // if( separate_colour_plane_flag  ==  1 )
2010    //   colour_plane_id                                      u(2)
2011#if H_MV
2012    if ( (pcSlice->getLayerId() > 0 && !vps->getPocLsbNotPresentFlag( pcSlice->getLayerIdInVps())) || !pcSlice->getIdrPicFlag() )
2013    {
2014      Int picOrderCntLSB = (pcSlice->getPOC()-pcSlice->getLastIDR()+(1<<pcSlice->getSPS()->getBitsForPOC())) & ((1<<pcSlice->getSPS()->getBitsForPOC())-1);
2015      WRITE_CODE( picOrderCntLSB, pcSlice->getSPS()->getBitsForPOC(), "slice_pic_order_cnt_lsb");
2016      pcSlice->setSlicePicOrderCntLsb( picOrderCntLSB ); 
2017    }
2018
2019#endif
2020    if( !pcSlice->getIdrPicFlag() )
2021    {
2022#if !H_MV
2023      Int picOrderCntLSB = (pcSlice->getPOC()-pcSlice->getLastIDR()+(1<<pcSlice->getSPS()->getBitsForPOC())) & ((1<<pcSlice->getSPS()->getBitsForPOC())-1);
2024      WRITE_CODE( picOrderCntLSB, pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb");
2025#endif
2026      TComReferencePictureSet* rps = pcSlice->getRPS();
2027     
2028      // check for bitstream restriction stating that:
2029      // If the current picture is a BLA or CRA picture, the value of NumPocTotalCurr shall be equal to 0.
2030      // Ideally this process should not be repeated for each slice in a picture
2031      if (pcSlice->isIRAP())
2032      {
2033          for (Int picIdx = 0; picIdx < rps->getNumberOfPictures(); picIdx++)
2034          {
2035          assert (!rps->getUsed(picIdx));
2036          }
2037        }
2038
2039      if(pcSlice->getRPSidx() < 0)
2040      {
2041        WRITE_FLAG( 0, "short_term_ref_pic_set_sps_flag");
2042        codeShortTermRefPicSet(pcSlice->getSPS(), rps, true, pcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets());
2043      }
2044      else
2045      {
2046        WRITE_FLAG( 1, "short_term_ref_pic_set_sps_flag");
2047        Int numBits = 0;
2048        while ((1 << numBits) < pcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets())
2049        {
2050          numBits++;
2051        }
2052        if (numBits > 0)
2053        {
2054          WRITE_CODE( pcSlice->getRPSidx(), numBits, "short_term_ref_pic_set_idx" );         
2055        }
2056      }
2057      if(pcSlice->getSPS()->getLongTermRefsPresent())
2058      {
2059        Int numLtrpInSH = rps->getNumberOfLongtermPictures();
2060        Int ltrpInSPS[MAX_NUM_REF_PICS];
2061        Int numLtrpInSPS = 0;
2062        UInt ltrpIndex;
2063        Int counter = 0;
2064        for(Int k = rps->getNumberOfPictures()-1; k > rps->getNumberOfPictures()-rps->getNumberOfLongtermPictures()-1; k--) 
2065        {
2066          if (findMatchingLTRP(pcSlice, &ltrpIndex, rps->getPOC(k), rps->getUsed(k))) 
2067          {
2068            ltrpInSPS[numLtrpInSPS] = ltrpIndex;
2069            numLtrpInSPS++;
2070          }
2071          else
2072          {
2073            counter++;
2074          }
2075        }
2076        numLtrpInSH -= numLtrpInSPS;
2077
2078        Int bitsForLtrpInSPS = 0;
2079        while (pcSlice->getSPS()->getNumLongTermRefPicSPS() > (1 << bitsForLtrpInSPS))
2080        {
2081          bitsForLtrpInSPS++;
2082        }
2083        if (pcSlice->getSPS()->getNumLongTermRefPicSPS() > 0) 
2084        {
2085          WRITE_UVLC( numLtrpInSPS, "num_long_term_sps");
2086        }
2087        WRITE_UVLC( numLtrpInSH, "num_long_term_pics");
2088        // Note that the LSBs of the LT ref. pic. POCs must be sorted before.
2089        // Not sorted here because LT ref indices will be used in setRefPicList()
2090        Int prevDeltaMSB = 0, prevLSB = 0;
2091        Int offset = rps->getNumberOfNegativePictures() + rps->getNumberOfPositivePictures();
2092        for(Int i=rps->getNumberOfPictures()-1 ; i > offset-1; i--)
2093        {
2094          if (counter < numLtrpInSPS)
2095          {
2096            if (bitsForLtrpInSPS > 0)
2097            {
2098              WRITE_CODE( ltrpInSPS[counter], bitsForLtrpInSPS, "lt_idx_sps[i]");             
2099            }
2100          }
2101          else 
2102          {
2103            WRITE_CODE( rps->getPocLSBLT(i), pcSlice->getSPS()->getBitsForPOC(), "poc_lsb_lt");
2104            WRITE_FLAG( rps->getUsed(i), "used_by_curr_pic_lt_flag"); 
2105          }
2106          WRITE_FLAG( rps->getDeltaPocMSBPresentFlag(i), "delta_poc_msb_present_flag");
2107
2108          if(rps->getDeltaPocMSBPresentFlag(i))
2109          {
2110            Bool deltaFlag = false;
2111            //  First LTRP from SPS                 ||  First LTRP from SH                              || curr LSB            != prev LSB
2112            if( (i == rps->getNumberOfPictures()-1) || (i == rps->getNumberOfPictures()-1-numLtrpInSPS) || (rps->getPocLSBLT(i) != prevLSB) )
2113            {
2114              deltaFlag = true;
2115            }
2116            if(deltaFlag)
2117            {
2118              WRITE_UVLC( rps->getDeltaPocMSBCycleLT(i), "delta_poc_msb_cycle_lt[i]" );
2119            }
2120            else
2121            {             
2122              Int differenceInDeltaMSB = rps->getDeltaPocMSBCycleLT(i) - prevDeltaMSB;
2123              assert(differenceInDeltaMSB >= 0);
2124              WRITE_UVLC( differenceInDeltaMSB, "delta_poc_msb_cycle_lt[i]" );
2125            }
2126            prevLSB = rps->getPocLSBLT(i);
2127            prevDeltaMSB = rps->getDeltaPocMSBCycleLT(i);
2128          }
2129        }
2130      }
2131      if (pcSlice->getSPS()->getTMVPFlagsPresent())
2132      {
2133#if I0044_SLICE_TMVP
2134        WRITE_FLAG( pcSlice->getEnableTMVPFlag() ? 1 : 0, "slice_temporal_mvp_enabled_flag" );
2135#else
2136        WRITE_FLAG( pcSlice->getEnableTMVPFlag() ? 1 : 0, "slice_temporal_mvp_enable_flag" );
2137#endif
2138      }
2139    }
2140#if H_MV
2141    Bool interLayerPredLayerIdcPresentFlag = false; 
2142    Int layerId = pcSlice->getLayerId(); 
2143    if( pcSlice->getLayerId() > 0 && !vps->getAllRefLayersActiveFlag() && vps->getNumDirectRefLayers( layerId ) > 0 )
2144    {   
2145      WRITE_FLAG( pcSlice->getInterLayerPredEnabledFlag( ) ? 1 : 0 , "inter_layer_pred_enabled_flag" );
2146      if( pcSlice->getInterLayerPredEnabledFlag() && vps->getNumDirectRefLayers( layerId ) > 1 )
2147      {           
2148        if( !vps->getMaxOneActiveRefLayerFlag()) 
2149        {
2150          WRITE_CODE( pcSlice->getNumInterLayerRefPicsMinus1( ), pcSlice->getNumInterLayerRefPicsMinus1Len( ), "num_inter_layer_ref_pics_minus1" );
2151        }
2152        if ( pcSlice->getNumActiveRefLayerPics() != vps->getNumDirectRefLayers( layerId ) )
2153        {       
2154          interLayerPredLayerIdcPresentFlag = true; 
2155          for( Int idx = 0; idx < pcSlice->getNumActiveRefLayerPics(); idx++ )   
2156          {
2157            WRITE_CODE( pcSlice->getInterLayerPredLayerIdc( idx ), pcSlice->getInterLayerPredLayerIdcLen( ), "inter_layer_pred_layer_idc" );
2158          }
2159        }
2160      } 
2161    }
2162    if ( !interLayerPredLayerIdcPresentFlag )
2163    {
2164      for( Int i = 0; i < pcSlice->getNumActiveRefLayerPics(); i++ )   
2165      {
2166        assert( pcSlice->getInterLayerPredLayerIdc( i ) == pcSlice->getRefLayerPicIdc( i ) );
2167      }
2168    }
2169#endif
2170    if(pcSlice->getSPS()->getUseSAO())
2171    {
2172      if (pcSlice->getSPS()->getUseSAO())
2173      {
2174         WRITE_FLAG( pcSlice->getSaoEnabledFlag(), "slice_sao_luma_flag" );
2175         WRITE_FLAG( pcSlice->getSaoEnabledFlagChroma(), "slice_sao_chroma_flag" );
2176      }
2177    }
2178
2179    //check if numrefidxes match the defaults. If not, override
2180
2181    if (!pcSlice->isIntra())
2182    {
2183      Bool overrideFlag = (pcSlice->getNumRefIdx( REF_PIC_LIST_0 )!=pcSlice->getPPS()->getNumRefIdxL0DefaultActive()||(pcSlice->isInterB()&&pcSlice->getNumRefIdx( REF_PIC_LIST_1 )!=pcSlice->getPPS()->getNumRefIdxL1DefaultActive()));
2184#if PPS_FIX_DEPTH
2185      overrideFlag |= (pcSlice->getIsDepth() && !pcSlice->getViewIndex());
2186#endif
2187      WRITE_FLAG( overrideFlag ? 1 : 0,                               "num_ref_idx_active_override_flag");
2188      if (overrideFlag) 
2189      {
2190        WRITE_UVLC( pcSlice->getNumRefIdx( REF_PIC_LIST_0 ) - 1,      "num_ref_idx_l0_active_minus1" );
2191        if (pcSlice->isInterB())
2192        {
2193          WRITE_UVLC( pcSlice->getNumRefIdx( REF_PIC_LIST_1 ) - 1,    "num_ref_idx_l1_active_minus1" );
2194        }
2195        else
2196        {
2197          pcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
2198        }
2199      }
2200    }
2201    else
2202    {
2203      pcSlice->setNumRefIdx(REF_PIC_LIST_0, 0);
2204      pcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
2205    }
2206#if PPS_FIX_DEPTH
2207    if( (pcSlice->getPPS()->getListsModificationPresentFlag() || (pcSlice->getIsDepth() && !pcSlice->getViewIndex())) && pcSlice->getNumRpsCurrTempList() > 1)
2208#else
2209    if( pcSlice->getPPS()->getListsModificationPresentFlag() && pcSlice->getNumRpsCurrTempList() > 1)
2210#endif
2211    {
2212      TComRefPicListModification* refPicListModification = pcSlice->getRefPicListModification();
2213      if(!pcSlice->isIntra())
2214      {
2215        WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0() ? 1 : 0,       "ref_pic_list_modification_flag_l0" );
2216        if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0())
2217        {
2218          Int numRpsCurrTempList0 = pcSlice->getNumRpsCurrTempList();
2219          if (numRpsCurrTempList0 > 1)
2220          {
2221            Int length = 1;
2222            numRpsCurrTempList0 --;
2223            while ( numRpsCurrTempList0 >>= 1) 
2224            {
2225              length ++;
2226            }
2227            for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_0 ); i++)
2228            {
2229              WRITE_CODE( refPicListModification->getRefPicSetIdxL0(i), length, "list_entry_l0");
2230            }
2231          }
2232        }
2233      }
2234      if(pcSlice->isInterB())
2235      {   
2236        WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1() ? 1 : 0,       "ref_pic_list_modification_flag_l1" );
2237        if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1())
2238        {
2239          Int numRpsCurrTempList1 = pcSlice->getNumRpsCurrTempList();
2240          if ( numRpsCurrTempList1 > 1 )
2241          {
2242            Int length = 1;
2243            numRpsCurrTempList1 --;
2244            while ( numRpsCurrTempList1 >>= 1)
2245            {
2246              length ++;
2247            }
2248            for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_1 ); i++)
2249            {
2250              WRITE_CODE( refPicListModification->getRefPicSetIdxL1(i), length, "list_entry_l1");
2251            }
2252          }
2253        }
2254      }
2255    }
2256   
2257    if (pcSlice->isInterB())
2258    {
2259      WRITE_FLAG( pcSlice->getMvdL1ZeroFlag() ? 1 : 0,   "mvd_l1_zero_flag");
2260    }
2261
2262    if(!pcSlice->isIntra())
2263    {
2264      if (!pcSlice->isIntra() && pcSlice->getPPS()->getCabacInitPresentFlag())
2265      {
2266        SliceType sliceType   = pcSlice->getSliceType();
2267        Int  encCABACTableIdx = pcSlice->getPPS()->getEncCABACTableIdx();
2268        Bool encCabacInitFlag = (sliceType!=encCABACTableIdx && encCABACTableIdx!=I_SLICE) ? true : false;
2269        pcSlice->setCabacInitFlag( encCabacInitFlag );
2270        WRITE_FLAG( encCabacInitFlag?1:0, "cabac_init_flag" );
2271      }
2272    }
2273
2274    if ( pcSlice->getEnableTMVPFlag() )
2275    {
2276      if ( pcSlice->getSliceType() == B_SLICE )
2277      {
2278        WRITE_FLAG( pcSlice->getColFromL0Flag(), "collocated_from_l0_flag" );
2279      }
2280
2281      if ( pcSlice->getSliceType() != I_SLICE &&
2282        ((pcSlice->getColFromL0Flag()==1 && pcSlice->getNumRefIdx(REF_PIC_LIST_0)>1)||
2283        (pcSlice->getColFromL0Flag()==0  && pcSlice->getNumRefIdx(REF_PIC_LIST_1)>1)))
2284      {
2285        WRITE_UVLC( pcSlice->getColRefIdx(), "collocated_ref_idx" );
2286      }
2287    }
2288    if ( (pcSlice->getPPS()->getUseWP() && pcSlice->getSliceType()==P_SLICE) || (pcSlice->getPPS()->getWPBiPred() && pcSlice->getSliceType()==B_SLICE) )
2289    {
2290      xCodePredWeightTable( pcSlice );
2291    }
2292#if H_3D_IC
2293#if SEC_HLS_CLEANUP_I0100
2294    else if( pcSlice->getViewIndex() && ( pcSlice->getSliceType() == P_SLICE || pcSlice->getSliceType() == B_SLICE ) && !pcSlice->getIsDepth() && vps->getNumDirectRefLayers( layerId ) > 0 )
2295#else
2296    else if( pcSlice->getViewIndex() && ( pcSlice->getSliceType() == P_SLICE || pcSlice->getSliceType() == B_SLICE ) && !pcSlice->getIsDepth())
2297#endif
2298    {
2299      WRITE_FLAG( pcSlice->getApplyIC() ? 1 : 0, "slice_ic_enable_flag" );
2300      if( pcSlice->getApplyIC() )
2301      {
2302        WRITE_FLAG( pcSlice->getIcSkipParseFlag() ? 1 : 0, "ic_skip_mergeidx0" );
2303      }
2304    }
2305#endif
2306#if MTK_SINGLE_DEPTH_MODE_I0095
2307    if(pcSlice->getIsDepth())
2308    {
2309      WRITE_FLAG( pcSlice->getApplySingleDepthMode() ? 1 : 0, "slice_enable_single_depth_mode" );
2310    }
2311#endif
2312#if H_3D_IV_MERGE
2313    assert(pcSlice->getMaxNumMergeCand()<=MRG_MAX_NUM_CANDS_MEM);
2314#else
2315    assert(pcSlice->getMaxNumMergeCand()<=MRG_MAX_NUM_CANDS);
2316#endif
2317    if (!pcSlice->isIntra())
2318    {
2319#if H_3D_IV_MERGE
2320      if(pcSlice->getIsDepth())
2321      {
2322        Bool bMPIFlag = pcSlice->getVPS()->getMPIFlag( pcSlice->getLayerIdInVps() ) ;
2323        Bool ivMvPredFlag = pcSlice->getVPS()->getIvMvPredFlag( pcSlice->getLayerIdInVps() ) ;
2324        WRITE_UVLC( ( ( bMPIFlag || ivMvPredFlag ) ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS ) - pcSlice->getMaxNumMergeCand(), "five_minus_max_num_merge_cand");
2325      }
2326      else
2327      {
2328        Bool ivMvPredFlag = pcSlice->getVPS()->getIvMvPredFlag( pcSlice->getLayerIdInVps() ) ;
2329        WRITE_UVLC( ( ivMvPredFlag ? MRG_MAX_NUM_CANDS_MEM : MRG_MAX_NUM_CANDS ) - pcSlice->getMaxNumMergeCand(), "five_minus_max_num_merge_cand");
2330      }
2331#else
2332      WRITE_UVLC(MRG_MAX_NUM_CANDS - pcSlice->getMaxNumMergeCand(), "five_minus_max_num_merge_cand");
2333#endif
2334    }
2335    Int iCode = pcSlice->getSliceQp() - ( pcSlice->getPPS()->getPicInitQPMinus26() + 26 );
2336    WRITE_SVLC( iCode, "slice_qp_delta" ); 
2337    if (pcSlice->getPPS()->getSliceChromaQpFlag())
2338    {
2339      iCode = pcSlice->getSliceQpDeltaCb();
2340      WRITE_SVLC( iCode, "slice_qp_delta_cb" );
2341      iCode = pcSlice->getSliceQpDeltaCr();
2342      WRITE_SVLC( iCode, "slice_qp_delta_cr" );
2343    }
2344    if (pcSlice->getPPS()->getDeblockingFilterControlPresentFlag())
2345    {
2346      if (pcSlice->getPPS()->getDeblockingFilterOverrideEnabledFlag() )
2347      {
2348        WRITE_FLAG(pcSlice->getDeblockingFilterOverrideFlag(), "deblocking_filter_override_flag");
2349      }
2350      if (pcSlice->getDeblockingFilterOverrideFlag())
2351      {
2352        WRITE_FLAG(pcSlice->getDeblockingFilterDisable(), "slice_disable_deblocking_filter_flag");
2353        if(!pcSlice->getDeblockingFilterDisable())
2354        {
2355          WRITE_SVLC (pcSlice->getDeblockingFilterBetaOffsetDiv2(), "slice_beta_offset_div2");
2356          WRITE_SVLC (pcSlice->getDeblockingFilterTcOffsetDiv2(),   "slice_tc_offset_div2");
2357        }
2358      }
2359    }
2360
2361    Bool isSAOEnabled = (!pcSlice->getSPS()->getUseSAO())?(false):(pcSlice->getSaoEnabledFlag()||pcSlice->getSaoEnabledFlagChroma());
2362    Bool isDBFEnabled = (!pcSlice->getDeblockingFilterDisable());
2363
2364    if(pcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag() && ( isSAOEnabled || isDBFEnabled ))
2365    {
2366      WRITE_FLAG(pcSlice->getLFCrossSliceBoundaryFlag()?1:0, "slice_loop_filter_across_slices_enabled_flag");
2367    }
2368  }
2369#if H_3D
2370#if LGE_FCO_I0116
2371  if( pcSlice->getVPS()->hasCamParInSliceHeader( pcSlice->getViewIndex() ) && pcSlice->getIsDepth() )
2372#else
2373  if( pcSlice->getVPS()->hasCamParInSliceHeader( pcSlice->getViewIndex() ) && !pcSlice->getIsDepth() )
2374#endif
2375  {
2376    for( UInt uiId = 0; uiId < pcSlice->getViewIndex(); uiId++ )
2377    {
2378      WRITE_SVLC( pcSlice->getCodedScale    ()[ uiId ],                                     "cp_scale" );
2379      WRITE_SVLC( pcSlice->getCodedOffset   ()[ uiId ],                                     "cp_off" );
2380      WRITE_SVLC( pcSlice->getInvCodedScale ()[ uiId ] + pcSlice->getCodedScale ()[ uiId ], "cp_inv_scale_plus_scale" );
2381      WRITE_SVLC( pcSlice->getInvCodedOffset()[ uiId ] + pcSlice->getCodedOffset()[ uiId ], "cp_inv_off_plus_off" );
2382    }
2383  }
2384#endif
2385
2386
2387#if !H_MV
2388  if(pcSlice->getPPS()->getSliceHeaderExtensionPresentFlag())
2389  {
2390    WRITE_UVLC(0,"slice_header_extension_length");
2391  }
2392#else
2393  if(pcSlice->getPPS()->getSliceHeaderExtensionPresentFlag())
2394  {
2395    // Derive the value of PocMsbValRequiredFlag
2396    pcSlice->setPocMsbValRequiredFlag( pcSlice->getCraPicFlag() || pcSlice->getBlaPicFlag()
2397                                          /* || related to vps_poc_lsb_aligned_flag */
2398                                          );
2399
2400    // Determine value of SH extension length.
2401    Int shExtnLengthInBit = 0;
2402    if (pcSlice->getPPS()->getPocResetInfoPresentFlag())
2403    {
2404      shExtnLengthInBit += 2;
2405    }
2406    if (pcSlice->getPocResetIdc() > 0)
2407    {
2408      shExtnLengthInBit += 6;
2409    }
2410    if (pcSlice->getPocResetIdc() == 3)
2411    {
2412      shExtnLengthInBit += (pcSlice->getSPS()->getBitsForPOC() + 1);
2413    }
2414
2415
2416    if( !pcSlice->getPocMsbValRequiredFlag() /* TODO &&  pcSlice->getVPS()->getVpsPocLsbAlignedFlag() */ )
2417    {
2418      shExtnLengthInBit++;    // For poc_msb_val_present_flag
2419    }
2420    else
2421    {
2422      if( pcSlice->getPocMsbValRequiredFlag() )
2423      {
2424        pcSlice->setPocMsbValPresentFlag( true );
2425      }
2426      else
2427      {
2428        pcSlice->setPocMsbValPresentFlag( false );
2429      }
2430    }
2431
2432    if( pcSlice->getPocMsbValPresentFlag() )
2433    {
2434//      Int iMaxPOClsb = 1<< pcSlice->getSPS()->getBitsForPOC(); currently unused
2435
2436      UInt lengthVal = 1;
2437      UInt tempVal = pcSlice->getPocMsbVal() + 1;
2438      assert ( tempVal );
2439      while( 1 != tempVal )
2440      {
2441        tempVal >>= 1;
2442        lengthVal += 2;
2443      }
2444      shExtnLengthInBit += lengthVal;
2445    }
2446    Int shExtnAdditionalBits = 0;
2447    if(shExtnLengthInBit % 8 != 0)
2448    {
2449      shExtnAdditionalBits = 8 - (shExtnLengthInBit % 8);
2450    }
2451    pcSlice->setSliceSegmentHeaderExtensionLength((shExtnLengthInBit + shExtnAdditionalBits) / 8);
2452     
2453
2454    WRITE_UVLC( pcSlice->getSliceSegmentHeaderExtensionLength( ), "slice_segment_header_extension_length" );
2455    UInt posFollSliceSegHeaderExtLen = m_pcBitIf->getNumberOfWrittenBits();
2456    if( pcSlice->getPPS()->getPocResetInfoPresentFlag() )
2457    {
2458      WRITE_CODE( pcSlice->getPocResetIdc( ), 2, "poc_reset_idc" );
2459    }
2460    else
2461    {
2462      assert( pcSlice->getPocResetIdc( ) == 0 );
2463    }
2464
2465    pcSlice->checkPocResetIdc(); 
2466
2467    if( pcSlice->getPocResetIdc() !=  0 )
2468    {
2469      WRITE_CODE( pcSlice->getPocResetPeriodId( ), 6, "poc_reset_period_id" );
2470    }
2471   
2472    if( pcSlice->getPocResetIdc() ==  3 ) 
2473    {
2474      WRITE_FLAG( pcSlice->getFullPocResetFlag( ) ? 1 : 0 , "full_poc_reset_flag" );
2475      WRITE_CODE( pcSlice->getPocLsbVal( ), pcSlice->getPocLsbValLen() , "poc_lsb_val" );
2476    }             
2477    pcSlice->checkPocLsbVal(); 
2478
2479    if( !pcSlice->getPocMsbValRequiredFlag() /* TODO &&  pcSlice->getVPS()->getVpsPocLsbAlignedFlag() */ )
2480    {
2481      WRITE_FLAG( pcSlice->getPocMsbValPresentFlag( ) ? 1 : 0 , "poc_msb_val_present_flag" );
2482    }
2483    else
2484    {
2485      assert( pcSlice->getPocMsbValPresentFlag() ==  pcSlice->inferPocMsbValPresentFlag( ) ); 
2486    }
2487   
2488    if( pcSlice->getPocMsbValPresentFlag() )
2489    {
2490      WRITE_UVLC( pcSlice->getPocMsbVal( ), "poc_msb_val" );
2491    }
2492   
2493    while( ( m_pcBitIf->getNumberOfWrittenBits() - posFollSliceSegHeaderExtLen ) < pcSlice->getSliceSegmentHeaderExtensionLength() * 8 )
2494    {
2495      WRITE_FLAG( 0, "slice_segment_header_extension_data_bit" );
2496    }
2497
2498    assert( ( m_pcBitIf->getNumberOfWrittenBits() - posFollSliceSegHeaderExtLen ) == pcSlice->getSliceSegmentHeaderExtensionLength() * 8  ); 
2499  }
2500#endif
2501}
2502
2503Void TEncCavlc::codePTL( TComPTL* pcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1)
2504{
2505  if(profilePresentFlag)
2506  {
2507    codeProfileTier(pcPTL->getGeneralPTL());    // general_...
2508  }
2509  WRITE_CODE( pcPTL->getGeneralPTL()->getLevelIdc(), 8, "general_level_idc" );
2510
2511  for (Int i = 0; i < maxNumSubLayersMinus1; i++)
2512  {
2513#if !H_MV
2514    if(profilePresentFlag)
2515    {
2516#endif
2517      WRITE_FLAG( pcPTL->getSubLayerProfilePresentFlag(i), "sub_layer_profile_present_flag[i]" );
2518#if !H_MV
2519    }
2520#endif
2521   
2522    WRITE_FLAG( pcPTL->getSubLayerLevelPresentFlag(i),   "sub_layer_level_present_flag[i]" );
2523  }
2524 
2525  if (maxNumSubLayersMinus1 > 0)
2526  {
2527    for (Int i = maxNumSubLayersMinus1; i < 8; i++)
2528    {
2529      WRITE_CODE(0, 2, "reserved_zero_2bits");
2530    }
2531  }
2532 
2533  for(Int i = 0; i < maxNumSubLayersMinus1; i++)
2534  {
2535    if( profilePresentFlag && pcPTL->getSubLayerProfilePresentFlag(i) )
2536    {
2537      codeProfileTier(pcPTL->getSubLayerPTL(i));  // sub_layer_...
2538    }
2539    if( pcPTL->getSubLayerLevelPresentFlag(i) )
2540    {
2541      WRITE_CODE( pcPTL->getSubLayerPTL(i)->getLevelIdc(), 8, "sub_layer_level_idc[i]" );
2542    }
2543  }
2544}
2545Void TEncCavlc::codeProfileTier( ProfileTierLevel* ptl )
2546{
2547  WRITE_CODE( ptl->getProfileSpace(), 2 ,     "XXX_profile_space[]");
2548  WRITE_FLAG( ptl->getTierFlag    (),         "XXX_tier_flag[]"    );
2549  WRITE_CODE( ptl->getProfileIdc  (), 5 ,     "XXX_profile_idc[]"  );   
2550  for(Int j = 0; j < 32; j++)
2551  {
2552    WRITE_FLAG( ptl->getProfileCompatibilityFlag(j), "XXX_profile_compatibility_flag[][j]");   
2553  }
2554
2555  WRITE_FLAG(ptl->getProgressiveSourceFlag(),   "general_progressive_source_flag");
2556  WRITE_FLAG(ptl->getInterlacedSourceFlag(),    "general_interlaced_source_flag");
2557  WRITE_FLAG(ptl->getNonPackedConstraintFlag(), "general_non_packed_constraint_flag");
2558  WRITE_FLAG(ptl->getFrameOnlyConstraintFlag(), "general_frame_only_constraint_flag");
2559 
2560#if H_MV_HLS10_PTL
2561  if( ptl->getProfileIdc( ) ==  4 || ptl->getProfileCompatibilityFlag( 4 )  ||
2562    ptl->getProfileIdc( ) ==  5 || ptl->getProfileCompatibilityFlag( 5 )  ||
2563    ptl->getProfileIdc( ) ==  6 || ptl->getProfileCompatibilityFlag( 6 )  ||
2564    ptl->getProfileIdc( ) ==  7 || ptl->getProfileCompatibilityFlag( 7 ) ) 
2565  {
2566    WRITE_FLAG( ptl->getMax12bitConstraintFlag( ) ? 1 : 0 , "max_12bit_constraint_flag" );
2567    WRITE_FLAG( ptl->getMax10bitConstraintFlag( ) ? 1 : 0 , "max_10bit_constraint_flag" );
2568    WRITE_FLAG( ptl->getMax8bitConstraintFlag( ) ? 1 : 0 , "max_8bit_constraint_flag" );
2569    WRITE_FLAG( ptl->getMax422chromaConstraintFlag( ) ? 1 : 0 , "max_422chroma_constraint_flag" );
2570    WRITE_FLAG( ptl->getMax420chromaConstraintFlag( ) ? 1 : 0 , "max_420chroma_constraint_flag" );
2571    WRITE_FLAG( ptl->getMaxMonochromeConstraintFlag( ) ? 1 : 0 , "max_monochrome_constraint_flag" );
2572    WRITE_FLAG( ptl->getIntraConstraintFlag( ) ? 1 : 0 , "intra_constraint_flag" );
2573    WRITE_FLAG( ptl->getOnePictureOnlyConstraintFlag( ) ? 1 : 0 , "one_picture_only_constraint_flag" );
2574    WRITE_FLAG( ptl->getLowerBitRateConstraintFlag( ) ? 1 : 0 , "lower_bit_rate_constraint_flag" );
2575    WRITE_CODE( 0, 16, "XXX_reserved_zero_34bits[0..15]");
2576    WRITE_CODE( 0, 16, "XXX_reserved_zero_34bits[16..31]");
2577    WRITE_CODE( 0, 2 , "XXX_reserved_zero_34bits[32..33]");
2578  }
2579  else
2580  {
2581    WRITE_CODE( 0, 16, "XXX_reserved_zero_43bits[0..15]");
2582    WRITE_CODE( 0, 16, "XXX_reserved_zero_43bits[16..31]");
2583    WRITE_CODE( 0, 11, "XXX_reserved_zero_43bits[32..42]");
2584  }
2585  if( ( ptl->getProfileIdc() >= 1 && ptl->getProfileIdc() <= 5 )  ||
2586    ptl->getProfileCompatibilityFlag( 1 ) || ptl->getProfileCompatibilityFlag( 2 )  ||
2587    ptl->getProfileCompatibilityFlag( 3 ) || ptl->getProfileCompatibilityFlag( 4 )  ||
2588    ptl->getProfileCompatibilityFlag( 5 ) )
2589  {
2590    WRITE_FLAG( ptl->getInbldFlag( ) ? 1 : 0 , "inbld_flag" );
2591  }
2592  else
2593  {
2594    WRITE_FLAG(0, "reserved_zero_bit");
2595  }
2596#else
2597  WRITE_CODE(0 , 16, "XXX_reserved_zero_44bits[0..15]");
2598  WRITE_CODE(0 , 16, "XXX_reserved_zero_44bits[16..31]");
2599  WRITE_CODE(0 , 12, "XXX_reserved_zero_44bits[32..43]");
2600#endif
2601}
2602
2603/**
2604 - write wavefront substreams sizes for the slice header.
2605 .
2606 \param pcSlice Where we find the substream size information.
2607 */
2608Void  TEncCavlc::codeTilesWPPEntryPoint( TComSlice* pSlice )
2609{
2610  if (!pSlice->getPPS()->getTilesEnabledFlag() && !pSlice->getPPS()->getEntropyCodingSyncEnabledFlag())
2611  {
2612    return;
2613  }
2614  UInt numEntryPointOffsets = 0, offsetLenMinus1 = 0, maxOffset = 0;
2615  Int  numZeroSubstreamsAtStartOfSlice  = 0;
2616  UInt *entryPointOffset = NULL;
2617  if ( pSlice->getPPS()->getTilesEnabledFlag() )
2618  {
2619    numEntryPointOffsets = pSlice->getTileLocationCount();
2620    entryPointOffset     = new UInt[numEntryPointOffsets];
2621    for (Int idx=0; idx<pSlice->getTileLocationCount(); idx++)
2622    {
2623      if ( idx == 0 )
2624      {
2625        entryPointOffset [ idx ] = pSlice->getTileLocation( 0 );
2626      }
2627      else
2628      {
2629        entryPointOffset [ idx ] = pSlice->getTileLocation( idx ) - pSlice->getTileLocation( idx-1 );
2630      }
2631
2632      if ( entryPointOffset[ idx ] > maxOffset )
2633      {
2634        maxOffset = entryPointOffset[ idx ];
2635      }
2636    }
2637  }
2638  else if ( pSlice->getPPS()->getEntropyCodingSyncEnabledFlag() )
2639  {
2640    UInt* pSubstreamSizes               = pSlice->getSubstreamSizes();
2641    Int maxNumParts                       = pSlice->getPic()->getNumPartInCU();
2642    numZeroSubstreamsAtStartOfSlice       = pSlice->getSliceSegmentCurStartCUAddr()/maxNumParts/pSlice->getPic()->getFrameWidthInCU();
2643    Int  numZeroSubstreamsAtEndOfSlice    = pSlice->getPic()->getFrameHeightInCU()-1 - ((pSlice->getSliceSegmentCurEndCUAddr()-1)/maxNumParts/pSlice->getPic()->getFrameWidthInCU());
2644    numEntryPointOffsets                  = pSlice->getPPS()->getNumSubstreams() - numZeroSubstreamsAtStartOfSlice - numZeroSubstreamsAtEndOfSlice - 1;
2645    pSlice->setNumEntryPointOffsets(numEntryPointOffsets);
2646    entryPointOffset           = new UInt[numEntryPointOffsets];
2647    for (Int idx=0; idx<numEntryPointOffsets; idx++)
2648    {
2649      entryPointOffset[ idx ] = ( pSubstreamSizes[ idx+numZeroSubstreamsAtStartOfSlice ] >> 3 ) ;
2650      if ( entryPointOffset[ idx ] > maxOffset )
2651      {
2652        maxOffset = entryPointOffset[ idx ];
2653      }
2654    }
2655  }
2656  // Determine number of bits "offsetLenMinus1+1" required for entry point information
2657  offsetLenMinus1 = 0;
2658  while (maxOffset >= (1u << (offsetLenMinus1 + 1)))
2659  {
2660    offsetLenMinus1++;
2661    assert(offsetLenMinus1 + 1 < 32);   
2662  }
2663
2664  WRITE_UVLC(numEntryPointOffsets, "num_entry_point_offsets");
2665  if (numEntryPointOffsets>0)
2666  {
2667    WRITE_UVLC(offsetLenMinus1, "offset_len_minus1");
2668  }
2669
2670  for (UInt idx=0; idx<numEntryPointOffsets; idx++)
2671  {
2672    WRITE_CODE(entryPointOffset[ idx ]-1, offsetLenMinus1+1, "entry_point_offset_minus1");
2673  }
2674
2675  delete [] entryPointOffset;
2676}
2677
2678Void TEncCavlc::codeTerminatingBit      ( UInt uilsLast )
2679{
2680}
2681
2682Void TEncCavlc::codeSliceFinish ()
2683{
2684}
2685
2686Void TEncCavlc::codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
2687{
2688  assert(0);
2689}
2690
2691Void TEncCavlc::codePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2692{
2693  assert(0);
2694}
2695
2696Void TEncCavlc::codePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx )
2697{
2698  assert(0);
2699}
2700
2701Void TEncCavlc::codeMergeFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx )
2702{
2703  assert(0);
2704}
2705
2706Void TEncCavlc::codeMergeIndex    ( TComDataCU* pcCU, UInt uiAbsPartIdx )
2707{
2708  assert(0);
2709}
2710
2711#if H_3D_ARP
2712Void TEncCavlc::codeARPW( TComDataCU* pcCU, UInt uiAbsPartIdx )
2713{
2714  assert(0);
2715}
2716#endif
2717
2718#if H_3D_IC
2719Void TEncCavlc::codeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
2720{
2721  assert(0);
2722}
2723#endif
2724
2725Void TEncCavlc::codeInterModeFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiEncMode )
2726{
2727  assert(0);
2728}
2729
2730Void TEncCavlc::codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
2731{
2732  assert(0);
2733}
2734
2735Void TEncCavlc::codeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
2736{
2737  assert(0);
2738}
2739#if MTK_SINGLE_DEPTH_MODE_I0095
2740Void TEncCavlc::codeSingleDepthMode( TComDataCU* pcCU, UInt uiAbsPartIdx )
2741{
2742  assert(0);
2743}
2744#endif
2745Void TEncCavlc::codeSplitFlag   ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
2746{
2747  assert(0);
2748}
2749
2750Void TEncCavlc::codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx )
2751{
2752  assert(0);
2753}
2754
2755Void TEncCavlc::codeQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth )
2756{
2757  assert(0);
2758}
2759
2760Void TEncCavlc::codeQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx )
2761{
2762  assert(0);
2763}
2764
2765Void TEncCavlc::codeQtCbfZero( TComDataCU* pcCU, TextType eType, UInt uiTrDepth )
2766{
2767  assert(0);
2768}
2769Void TEncCavlc::codeQtRootCbfZero( TComDataCU* pcCU )
2770{
2771  assert(0);
2772}
2773
2774Void TEncCavlc::codeTransformSkipFlags (TComDataCU* pcCU, UInt uiAbsPartIdx, UInt width, UInt height, TextType eTType )
2775{
2776  assert(0);
2777}
2778
2779/** Code I_PCM information.
2780 * \param pcCU pointer to CU
2781 * \param uiAbsPartIdx CU index
2782 * \returns Void
2783 */
2784Void TEncCavlc::codeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx )
2785{
2786  assert(0);
2787}
2788
2789Void TEncCavlc::codeIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool isMultiple)
2790{
2791  assert(0);
2792}
2793
2794Void TEncCavlc::codeIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx )
2795{
2796  assert(0);
2797}
2798
2799Void TEncCavlc::codeInterDir( TComDataCU* pcCU, UInt uiAbsPartIdx )
2800{
2801  assert(0);
2802}
2803
2804Void TEncCavlc::codeRefFrmIdx( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
2805{
2806  assert(0);
2807}
2808
2809Void TEncCavlc::codeMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
2810{
2811  assert(0);
2812}
2813
2814Void TEncCavlc::codeDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx )
2815{
2816  Int iDQp  = pcCU->getQP( uiAbsPartIdx ) - pcCU->getRefQP( uiAbsPartIdx );
2817
2818  Int qpBdOffsetY =  pcCU->getSlice()->getSPS()->getQpBDOffsetY();
2819  iDQp = (iDQp + 78 + qpBdOffsetY + (qpBdOffsetY/2)) % (52 + qpBdOffsetY) - 26 - (qpBdOffsetY/2);
2820
2821  xWriteSvlc( iDQp );
2822 
2823  return;
2824}
2825
2826Void TEncCavlc::codeCoeffNxN    ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType )
2827{
2828  assert(0);
2829}
2830
2831Void TEncCavlc::estBit( estBitsSbacStruct* pcEstBitsCabac, Int width, Int height, TextType eTType )
2832{
2833  // printf("error : no VLC mode support in this version\n");
2834  return;
2835}
2836
2837// ====================================================================================================================
2838// Protected member functions
2839// ====================================================================================================================
2840
2841/** code explicit wp tables
2842 * \param TComSlice* pcSlice
2843 * \returns Void
2844 */
2845Void TEncCavlc::xCodePredWeightTable( TComSlice* pcSlice )
2846{
2847  wpScalingParam  *wp;
2848  Bool            bChroma     = true; // color always present in HEVC ?
2849  Int             iNbRef       = (pcSlice->getSliceType() == B_SLICE ) ? (2) : (1);
2850  Bool            bDenomCoded  = false;
2851  UInt            uiMode = 0;
2852  UInt            uiTotalSignalledWeightFlags = 0;
2853  if ( (pcSlice->getSliceType()==P_SLICE && pcSlice->getPPS()->getUseWP()) || (pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPred()) )
2854  {
2855    uiMode = 1; // explicit
2856  }
2857  if(uiMode == 1)
2858  {
2859
2860    for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) 
2861    {
2862      RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
2863
2864      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
2865      {
2866        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2867        if ( !bDenomCoded ) 
2868        {
2869          Int iDeltaDenom;
2870          WRITE_UVLC( wp[0].uiLog2WeightDenom, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
2871
2872          if( bChroma )
2873          {
2874            iDeltaDenom = (wp[1].uiLog2WeightDenom - wp[0].uiLog2WeightDenom);
2875            WRITE_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );       // se(v): delta_chroma_log2_weight_denom
2876          }
2877          bDenomCoded = true;
2878        }
2879        WRITE_FLAG( wp[0].bPresentFlag, "luma_weight_lX_flag" );               // u(1): luma_weight_lX_flag
2880        uiTotalSignalledWeightFlags += wp[0].bPresentFlag;
2881      }
2882      if (bChroma) 
2883      {
2884        for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
2885        {
2886          pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2887          WRITE_FLAG( wp[1].bPresentFlag, "chroma_weight_lX_flag" );           // u(1): chroma_weight_lX_flag
2888          uiTotalSignalledWeightFlags += 2*wp[1].bPresentFlag;
2889        }
2890      }
2891
2892      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
2893      {
2894        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
2895        if ( wp[0].bPresentFlag ) 
2896        {
2897          Int iDeltaWeight = (wp[0].iWeight - (1<<wp[0].uiLog2WeightDenom));
2898          WRITE_SVLC( iDeltaWeight, "delta_luma_weight_lX" );                  // se(v): delta_luma_weight_lX
2899          WRITE_SVLC( wp[0].iOffset, "luma_offset_lX" );                       // se(v): luma_offset_lX
2900        }
2901
2902        if ( bChroma ) 
2903        {
2904          if ( wp[1].bPresentFlag )
2905          {
2906            for ( Int j=1 ; j<3 ; j++ ) 
2907            {
2908              Int iDeltaWeight = (wp[j].iWeight - (1<<wp[1].uiLog2WeightDenom));
2909              WRITE_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );            // se(v): delta_chroma_weight_lX
2910
2911              Int pred = ( 128 - ( ( 128*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) );
2912              Int iDeltaChroma = (wp[j].iOffset - pred);
2913              WRITE_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );            // se(v): delta_chroma_offset_lX
2914            }
2915          }
2916        }
2917      }
2918    }
2919    assert(uiTotalSignalledWeightFlags<=24);
2920  }
2921}
2922
2923/** code quantization matrix
2924 *  \param scalingList quantization matrix information
2925 */
2926Void TEncCavlc::codeScalingList( TComScalingList* scalingList )
2927{
2928  UInt listId,sizeId;
2929  Bool scalingListPredModeFlag;
2930
2931    //for each size
2932    for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2933    {
2934      for(listId = 0; listId < g_scalingListNum[sizeId]; listId++)
2935      {
2936        scalingListPredModeFlag = scalingList->checkPredMode( sizeId, listId );
2937        WRITE_FLAG( scalingListPredModeFlag, "scaling_list_pred_mode_flag" );
2938        if(!scalingListPredModeFlag)// Copy Mode
2939        {
2940          WRITE_UVLC( (Int)listId - (Int)scalingList->getRefMatrixId (sizeId,listId), "scaling_list_pred_matrix_id_delta");
2941        }
2942        else// DPCM Mode
2943        {
2944          xCodeScalingList(scalingList, sizeId, listId);
2945        }
2946      }
2947    }
2948  return;
2949}
2950/** code DPCM
2951 * \param scalingList quantization matrix information
2952 * \param sizeIdc size index
2953 * \param listIdc list index
2954 */
2955Void TEncCavlc::xCodeScalingList(TComScalingList* scalingList, UInt sizeId, UInt listId)
2956{
2957  Int coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
2958  UInt* scan  = (sizeId == 0) ? g_auiSigLastScan [ SCAN_DIAG ] [ 1 ] :  g_sigLastScanCG32x32;
2959  Int nextCoef = SCALING_LIST_START_VALUE;
2960  Int data;
2961  Int *src = scalingList->getScalingListAddress(sizeId, listId);
2962    if( sizeId > SCALING_LIST_8x8 )
2963    {
2964      WRITE_SVLC( scalingList->getScalingListDC(sizeId,listId) - 8, "scaling_list_dc_coef_minus8");
2965      nextCoef = scalingList->getScalingListDC(sizeId,listId);
2966    }
2967    for(Int i=0;i<coefNum;i++)
2968    {
2969      data = src[scan[i]] - nextCoef;
2970      nextCoef = src[scan[i]];
2971      if(data > 127)
2972      {
2973        data = data - 256;
2974      }
2975      if(data < -128)
2976      {
2977        data = data + 256;
2978      }
2979
2980      WRITE_SVLC( data,  "scaling_list_delta_coef");
2981    }
2982}
2983Bool TEncCavlc::findMatchingLTRP ( TComSlice* pcSlice, UInt *ltrpsIndex, Int ltrpPOC, Bool usedFlag )
2984{
2985  // Bool state = true, state2 = false;
2986  Int lsb = ltrpPOC & ((1<<pcSlice->getSPS()->getBitsForPOC())-1);
2987  for (Int k = 0; k < pcSlice->getSPS()->getNumLongTermRefPicSPS(); k++)
2988  {
2989    if ( (lsb == pcSlice->getSPS()->getLtRefPicPocLsbSps(k)) && (usedFlag == pcSlice->getSPS()->getUsedByCurrPicLtSPSFlag(k)) )
2990    {
2991      *ltrpsIndex = k;
2992      return true;
2993    }
2994  }
2995  return false;
2996}
2997Bool TComScalingList::checkPredMode(UInt sizeId, UInt listId)
2998{
2999  for(Int predListIdx = (Int)listId ; predListIdx >= 0; predListIdx--)
3000  {
3001    if( !memcmp(getScalingListAddress(sizeId,listId),((listId == predListIdx) ?
3002      getScalingListDefaultAddress(sizeId, predListIdx): getScalingListAddress(sizeId, predListIdx)),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId])) // check value of matrix
3003     && ((sizeId < SCALING_LIST_16x16) || (getScalingListDC(sizeId,listId) == getScalingListDC(sizeId,predListIdx)))) // check DC value
3004    {
3005      setRefMatrixId(sizeId, listId, predListIdx);
3006      return false;
3007    }
3008  }
3009  return true;
3010}
3011
3012#if H_3D_INTER_SDC
3013Void TEncCavlc::codeDeltaDC( TComDataCU* pcCU, UInt uiAbsPartIdx )
3014{
3015  assert(0);
3016}
3017
3018Void TEncCavlc::codeSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx )
3019{
3020  assert(0);
3021}
3022
3023#endif
3024   
3025#if H_3D_DBBP
3026Void TEncCavlc::codeDBBPFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx )
3027{
3028  assert(0);
3029}
3030#endif
3031//! \}
Note: See TracBrowser for help on using the repository browser.