source: 3DVCSoftware/branches/HTM-10.0-dev0/source/Lib/TLibEncoder/TEncCavlc.cpp @ 852

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

Update HM-12.0 -> HM-13.0.

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