source: 3DVCSoftware/trunk/source/Lib/TLibEncoder/TEncCavlc.cpp @ 1245

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

Merged 14.0-dev0@1187.

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