source: 3DVCSoftware/branches/HTM-5.0-Qualcomm-Fix/source/Lib/TLibEncoder/TEncCavlc.cpp @ 204

Last change on this file since 204 was 195, checked in by tech, 12 years ago

Changed macro switch names to match conventions.

  • Property svn:eol-style set to native
File size: 71.4 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2012, ITU/ISO/IEC
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 *  * Redistributions of source code must retain the above copyright notice,
13 *    this list of conditions and the following disclaimer.
14 *  * Redistributions in binary form must reproduce the above copyright notice,
15 *    this list of conditions and the following disclaimer in the documentation
16 *    and/or other materials provided with the distribution.
17 *  * Neither the name of the ITU/ISO/IEC nor the names of its contributors may
18 *    be used to endorse or promote products derived from this software without
19 *    specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS
25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 */
33
34/** \file     TEncCavlc.cpp
35    \brief    CAVLC encoder class
36*/
37
38#include "../TLibCommon/CommonDef.h"
39#include "TEncCavlc.h"
40#include "SEIwrite.h"
41
42//! \ingroup TLibEncoder
43//! \{
44
45#if ENC_DEC_TRACE
46
47#define WRITE_CODE( value, length, name)    xWriteCodeTr ( value, length, name )
48#define WRITE_UVLC( value,         name)    xWriteUvlcTr ( value,         name )
49#define WRITE_SVLC( value,         name)    xWriteSvlcTr ( value,         name )
50#define WRITE_FLAG( value,         name)    xWriteFlagTr ( value,         name )
51
52Void  xWriteUvlcTr          ( UInt value,               const Char *pSymbolName);
53Void  xWriteSvlcTr          ( Int  value,               const Char *pSymbolName);
54Void  xWriteFlagTr          ( UInt value,               const Char *pSymbolName);
55
56Void  xTraceSPSHeader (TComSPS *pSPS)
57{
58  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
59}
60
61Void  xTracePPSHeader (TComPPS *pPPS)
62{
63  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
64}
65
66Void  xTraceAPSHeader (TComAPS *pAPS)
67{
68  fprintf( g_hTrace, "=========== Adaptation Parameter Set ===========\n");
69}
70
71Void  xTraceSliceHeader (TComSlice *pSlice)
72{
73  fprintf( g_hTrace, "=========== Slice ===========\n");
74}
75
76
77Void  TEncCavlc::xWriteCodeTr (UInt value, UInt  length, const Char *pSymbolName)
78{
79  xWriteCode (value,length);
80  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
81  fprintf( g_hTrace, "%-40s u(%d) : %d\n", pSymbolName, length, value ); 
82}
83
84Void  TEncCavlc::xWriteUvlcTr (UInt value, const Char *pSymbolName)
85{
86  xWriteUvlc (value);
87  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
88  fprintf( g_hTrace, "%-40s u(v) : %d\n", pSymbolName, value ); 
89}
90
91Void  TEncCavlc::xWriteSvlcTr (Int value, const Char *pSymbolName)
92{
93  xWriteSvlc(value);
94  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
95  fprintf( g_hTrace, "%-40s s(v) : %d\n", pSymbolName, value ); 
96}
97
98Void  TEncCavlc::xWriteFlagTr(UInt value, const Char *pSymbolName)
99{
100  xWriteFlag(value);
101  fprintf( g_hTrace, "%8lld  ", g_nSymbolCounter++ );
102  fprintf( g_hTrace, "%-40s u(1) : %d\n", pSymbolName, value ); 
103}
104
105#else
106
107#define WRITE_CODE( value, length, name)     xWriteCode ( value, length )
108#define WRITE_UVLC( value,         name)     xWriteUvlc ( value )
109#define WRITE_SVLC( value,         name)     xWriteSvlc ( value )
110#define WRITE_FLAG( value,         name)     xWriteFlag ( value )
111
112#endif
113
114
115
116// ====================================================================================================================
117// Constructor / destructor / create / destroy
118// ====================================================================================================================
119
120TEncCavlc::TEncCavlc()
121{
122  m_pcBitIf           = NULL;
123  m_uiCoeffCost       = 0;
124  m_bAlfCtrl = false;
125  m_uiMaxAlfCtrlDepth = 0;
126 
127  m_iSliceGranularity = 0;
128}
129
130TEncCavlc::~TEncCavlc()
131{
132}
133
134
135// ====================================================================================================================
136// Public member functions
137// ====================================================================================================================
138
139Void TEncCavlc::resetEntropy()
140{
141}
142
143/**
144 * marshall the SEI message sei.
145 */
146void TEncCavlc::codeSEI(const SEI& sei)
147{
148  writeSEImessage(*m_pcBitIf, sei);
149}
150
151Void  TEncCavlc::codeAPSInitInfo(TComAPS* pcAPS)
152{
153
154#if ENC_DEC_TRACE 
155  xTraceAPSHeader(pcAPS);
156#endif
157  //APS ID
158  WRITE_UVLC( pcAPS->getAPSID(), "aps_id" );
159
160  WRITE_FLAG( pcAPS->getScalingListEnabled()?1:0, "aps_scaling_list_data_present_flag");
161  //DF flag
162  WRITE_FLAG(pcAPS->getLoopFilterOffsetInAPS()?1:0, "aps_deblocking_filter_flag");
163#if !SAO_UNIT_INTERLEAVING
164  //SAO flag
165  WRITE_FLAG( pcAPS->getSaoEnabled()?1:0, "aps_sample_adaptive_offset_flag"); 
166#endif
167#if !LCU_SYNTAX_ALF
168  //ALF flag
169  WRITE_FLAG( pcAPS->getAlfEnabled()?1:0, "aps_adaptive_loop_filter_flag"); 
170#endif
171}
172#if LCU_SYNTAX_ALF
173Void TEncCavlc::codeAPSAlflag(UInt uiCode)
174{
175  WRITE_FLAG(uiCode, "aps_adaptive_loop_filter_flag");
176}
177#endif
178
179Void TEncCavlc::codeDFFlag(UInt uiCode, const Char *pSymbolName)
180{
181  WRITE_FLAG(uiCode, pSymbolName);
182}
183Void TEncCavlc::codeDFSvlc(Int iCode, const Char *pSymbolName)
184{
185  WRITE_SVLC(iCode, pSymbolName);
186}
187
188#if RPS_IN_SPS
189Void TEncCavlc::codeShortTermRefPicSet( TComSPS* pcSPS, TComReferencePictureSet* rps )
190#else
191Void TEncCavlc::codeShortTermRefPicSet( TComPPS* pcPPS, TComReferencePictureSet* rps )
192#endif
193{
194#if PRINT_RPS_INFO
195  int lastBits = getNumberOfWrittenBits();
196#endif
197  WRITE_FLAG( rps->getInterRPSPrediction(), "inter_ref_pic_set_prediction_flag" ); // inter_RPS_prediction_flag
198  if (rps->getInterRPSPrediction()) 
199  {
200    Int deltaRPS = rps->getDeltaRPS();
201    WRITE_UVLC( rps->getDeltaRIdxMinus1(), "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1
202    WRITE_CODE( (deltaRPS >=0 ? 0: 1), 1, "delta_rps_sign" ); //delta_rps_sign
203    WRITE_UVLC( abs(deltaRPS) - 1, "abs_delta_rps_minus1"); // absolute delta RPS minus 1
204
205    for(Int j=0; j < rps->getNumRefIdc(); j++)
206    {
207      Int refIdc = rps->getRefIdc(j);
208      WRITE_CODE( (refIdc==1? 1: 0), 1, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1
209      if (refIdc != 1) 
210      {
211        WRITE_CODE( refIdc>>1, 1, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise.
212      }
213    }
214  }
215  else
216  {
217    WRITE_UVLC( rps->getNumberOfNegativePictures(), "num_negative_pics" );
218    WRITE_UVLC( rps->getNumberOfPositivePictures(), "num_positive_pics" );
219    Int prev = 0;
220    for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++)
221    {
222      WRITE_UVLC( prev-rps->getDeltaPOC(j)-1, "delta_poc_s0_minus1" );
223      prev = rps->getDeltaPOC(j);
224      WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s0_flag"); 
225    }
226    prev = 0;
227    for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++)
228    {
229      WRITE_UVLC( rps->getDeltaPOC(j)-prev-1, "delta_poc_s1_minus1" );
230      prev = rps->getDeltaPOC(j);
231      WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s1_flag" ); 
232    }
233  }
234
235#if PRINT_RPS_INFO
236  printf("irps=%d (%2d bits) ", rps->getInterRPSPrediction(), getNumberOfWrittenBits() - lastBits);
237  rps->printDeltaPOC();
238#endif
239}
240
241
242Void TEncCavlc::codePPS( TComPPS* pcPPS )
243{
244#if ENC_DEC_TRACE 
245  xTracePPSHeader (pcPPS);
246#endif
247#if !RPS_IN_SPS
248  TComRPSList* rpsList = pcPPS->getRPSList();
249#endif
250 
251  WRITE_UVLC( pcPPS->getPPSId(),                             "pic_parameter_set_id" );
252  WRITE_UVLC( pcPPS->getSPSId(),                             "seq_parameter_set_id" );
253
254#if MULTIBITS_DATA_HIDING
255  WRITE_FLAG( pcPPS->getSignHideFlag(), "sign_data_hiding_flag" );
256  if( pcPPS->getSignHideFlag() )
257  {
258    WRITE_CODE(pcPPS->getTSIG(), 4, "sign_hiding_threshold");
259  }
260#endif
261#if CABAC_INIT_FLAG
262  WRITE_FLAG( pcPPS->getCabacInitPresentFlag() ? 1 : 0,   "cabac_init_present_flag" );
263#endif
264#if !RPS_IN_SPS
265  // RPS is put before entropy_coding_mode_flag
266  // since entropy_coding_mode_flag will probably be removed from the WD
267  TComReferencePictureSet*      rps;
268
269  WRITE_UVLC(rpsList->getNumberOfReferencePictureSets(), "num_short_term_ref_pic_sets" );
270  for(UInt i=0; i < rpsList->getNumberOfReferencePictureSets(); i++)
271  {
272    rps = rpsList->getReferencePictureSet(i);
273    codeShortTermRefPicSet(pcPPS,rps);
274  }
275  WRITE_FLAG( pcPPS->getLongTermRefsPresent() ? 1 : 0,         "long_term_ref_pics_present_flag" );
276#endif
277  // entropy_coding_mode_flag
278  // We code the entropy_coding_mode_flag, it's needed for tests.
279  WRITE_FLAG( pcPPS->getEntropyCodingMode() ? 1 : 0,         "entropy_coding_mode_flag" );
280  if (pcPPS->getEntropyCodingMode())
281  {
282#if !WPP_SIMPLIFICATION
283    WRITE_UVLC( pcPPS->getEntropyCodingSynchro(),            "entropy_coding_synchro" );
284    WRITE_FLAG( pcPPS->getCabacIstateReset() ? 1 : 0,        "cabac_istate_reset" );
285#endif
286#if !TILES_OR_ENTROPY_SYNC_IDC
287#if !WPP_SIMPLIFICATION
288    if ( pcPPS->getEntropyCodingSynchro() )
289#endif
290    {
291      WRITE_UVLC( pcPPS->getNumSubstreams()-1,               "num_substreams_minus1" );
292    }
293#endif
294  }
295#if !H0566_TLA
296  WRITE_UVLC( pcPPS->getNumTLayerSwitchingFlags(),           "num_temporal_layer_switching_point_flags" );
297  for( UInt i = 0; i < pcPPS->getNumTLayerSwitchingFlags(); i++ ) 
298  {
299    WRITE_FLAG( pcPPS->getTLayerSwitchingFlag( i ) ? 1 : 0 , "temporal_layer_switching_point_flag" ); 
300  }
301#endif
302  //   num_ref_idx_l0_default_active_minus1
303  //   num_ref_idx_l1_default_active_minus1
304  WRITE_SVLC( pcPPS->getPicInitQPMinus26(),                  "pic_init_qp_minus26");
305  WRITE_FLAG( pcPPS->getConstrainedIntraPred() ? 1 : 0,      "constrained_intra_pred_flag" );
306  WRITE_FLAG( pcPPS->getEnableTMVPFlag() ? 1 : 0,            "enable_temporal_mvp_flag" );
307  WRITE_CODE( pcPPS->getSliceGranularity(), 2,               "slice_granularity");
308  WRITE_UVLC( pcPPS->getMaxCuDQPDepth() + pcPPS->getUseDQP(),                   "max_cu_qp_delta_depth" );
309
310  WRITE_SVLC( pcPPS->getChromaQpOffset(),                   "chroma_qp_offset"     );
311  WRITE_SVLC( pcPPS->getChromaQpOffset2nd(),                "chroma_qp_offset_2nd" );
312
313  WRITE_FLAG( pcPPS->getUseWP() ? 1 : 0,  "weighted_pred_flag" );   // Use of Weighting Prediction (P_SLICE)
314  WRITE_CODE( pcPPS->getWPBiPredIdc(), 2, "weighted_bipred_idc" );  // Use of Weighting Bi-Prediction (B_SLICE)
315#if H0388
316  WRITE_FLAG( pcPPS->getOutputFlagPresentFlag() ? 1 : 0,  "output_flag_present_flag" );
317#endif
318#if TILES_OR_ENTROPY_SYNC_IDC
319  if(pcPPS->getSPS()->getTilesOrEntropyCodingSyncIdc()==1)
320  {
321#endif
322    WRITE_FLAG( pcPPS->getColumnRowInfoPresent(),           "tile_info_present_flag" );
323    WRITE_FLAG( pcPPS->getTileBehaviorControlPresentFlag(),  "tile_control_present_flag");
324    if( pcPPS->getColumnRowInfoPresent() == 1 )
325    {
326      WRITE_UVLC( pcPPS->getNumColumnsMinus1(),                                    "num_tile_columns_minus1" );
327      WRITE_UVLC( pcPPS->getNumRowsMinus1(),                                       "num_tile_rows_minus1" );
328      WRITE_FLAG( pcPPS->getUniformSpacingIdr(),                                   "uniform_spacing_flag" );
329      if( pcPPS->getUniformSpacingIdr() == 0 )
330      {
331        for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++)
332        {
333          WRITE_UVLC( pcPPS->getColumnWidth(i),                                    "column_width" );
334        }
335        for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++)
336        {
337          WRITE_UVLC( pcPPS->getRowHeight(i),                                      "row_height" );
338        }
339      }
340    }
341
342    if(pcPPS->getTileBehaviorControlPresentFlag() == 1)
343    {
344      Int iNumColTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumColumnsMinus1());
345      Int iNumRowTilesMinus1 = (pcPPS->getColumnRowInfoPresent() == 1)?(pcPPS->getNumColumnsMinus1()):(pcPPS->getSPS()->getNumRowsMinus1());
346
347      if(iNumColTilesMinus1 !=0 || iNumRowTilesMinus1 !=0)
348      {
349#if !REMOVE_TILE_DEPENDENCE
350        WRITE_FLAG( pcPPS->getTileBoundaryIndependenceIdr(),                         "tile_boundary_independence_flag" );
351        if(pcPPS->getTileBoundaryIndependenceIdr() == 1)
352        {
353#endif
354          WRITE_FLAG( pcPPS->getLFCrossTileBoundaryFlag()?1 : 0,            "loop_filter_across_tile_flag");
355#if !REMOVE_TILE_DEPENDENCE
356        }
357#endif
358      }
359    }
360#if TILES_OR_ENTROPY_SYNC_IDC
361  }
362  else if(pcPPS->getSPS()->getTilesOrEntropyCodingSyncIdc()==2)
363  {
364    WRITE_UVLC( pcPPS->getNumSubstreams()-1,               "num_substreams_minus1" );
365  }
366#endif
367
368#if DBL_CONTROL
369  WRITE_FLAG( pcPPS->getDeblockingFilterControlPresent()?1 : 0, "deblocking_filter_control_present_flag");
370#endif
371#if PARALLEL_MERGE
372  WRITE_UVLC( pcPPS->getLog2ParallelMergeLevelMinus2(), "log2_parallel_merge_level_minus2");
373#endif
374  WRITE_FLAG( 0, "pps_extension_flag" );
375}
376
377#if QC_MVHEVC_B0046
378Void TEncCavlc::codeVPS( TComVPS* pcVPS )
379{
380  WRITE_CODE( pcVPS->getVPSId(),               4,        "video_parameter_set_id"     );
381  WRITE_FLAG( pcVPS->getTemporalNestingFlag() -1,        "temporal_id_nesting_flag"   );
382  WRITE_CODE( 0,                 2,        "vps_reserved_zero_2bits"    );
383  WRITE_CODE( pcVPS->getMaxLayers() - 1,       6,        "vps_max_layers_minus1"      );
384  WRITE_CODE( pcVPS->getMaxTLayers() - 1,      3,        "vps_max_sub_layers_minus1"  );
385  //to be determined
386  //profile_tier_level( 1, vps_max_sub_layers_minus1 );
387  //to be modified
388  WRITE_CODE( 0,                              12,         "vps_extension_offset"      );
389  for(UInt i=0; i <= pcVPS->getMaxTLayers()-1; i++)
390  {
391    WRITE_UVLC( pcVPS->getMaxDecPicBuffering(i),           "max_dec_pic_buffering[i]" );
392    WRITE_UVLC( pcVPS->getNumReorderPics(i),               "num_reorder_pics[i]"      );
393    WRITE_UVLC( pcVPS->getMaxLatencyIncrease(i),           "max_latency_increase[i]"  );
394  }
395  //!!!waste one bit: 3-view, 3; 2-view or more views: 1
396  WRITE_UVLC(pcVPS->getNumHRDParameters(),                 "vps_num_hrd_parameters"   );
397  assert(pcVPS->getNumHRDParameters()==0);
398  for ( UInt i = 0; i < pcVPS->getNumHRDParameters(); i ++)
399  {
400   //   if( i > 0 ) 
401    //{
402    //  WRITE_UVLC (0, "op_num_layer_id_values_minus1[ opIdx ]");
403    //  for( i = 0; i <= op_num_layer_id_values_minus1[ opIdx ]; i++ ) 
404    //    WRITE_CODE(0, 6, "op_layer_id[ opIdx ][ i ]");
405    //} 
406    //hrd_parameters( i  = =  0, vps_max_sub_layers_minus1 ); 
407  }
408  WRITE_CODE( 1,      1,        "bit_equal_to_one" ); 
409  //btye aligned
410  m_pcBitIf->writeAlignOne();
411
412  if(pcVPS->getMaxLayers() == 3)
413    pcVPS->setNumAddiLayerOperationPoints (pcVPS->getMaxLayers());    //may be configured
414  else
415    pcVPS->setNumAddiLayerOperationPoints (1);   
416  pcVPS->setNumAddiProLevelSets         (1);
417  WRITE_CODE( pcVPS->getNumAddiLayerOperationPoints(),         8,               "num_additional_layer_operation_points" );   
418  WRITE_CODE( pcVPS->getNumAddiProLevelSets(),                 8,               "num_additional_profile_level_sets"     );   
419  for(UInt i=0; i <= pcVPS->getMaxLayers()-1; i++)
420  {
421    WRITE_CODE( 0,         4,               "num_types_zero_4bits[i]" );   
422    WRITE_CODE( 0,         4,               "type_zero_4bits[i]"      );   
423    WRITE_CODE( pcVPS->getViewId(i),         8,               "view_id[i]" );   
424    if(i)
425    {
426      WRITE_CODE( pcVPS->getNumDirectRefLayer(i), 6,  "num_direct_ref_layers[ i ]" );   
427      for (UInt j = 0; j< pcVPS->getNumDirectRefLayer(i); j++)
428      {
429        WRITE_CODE( pcVPS->getDirectRefLayerId (i, j), 6,  "ref_layer_id[i][j]" ); 
430      }
431    }
432  }
433  for( UInt i=1; i<=pcVPS->getNumAddiProLevelSets(); i++)
434  {
435    //profile_tier_level
436  }
437  for( UInt i=1; i<= pcVPS->getNumAddiLayerOperationPoints(); i++)
438  {   
439    if(pcVPS->getMaxLayers() == 3)
440    {
441      pcVPS->setNumOpLayerIdMinus1((i < pcVPS->getNumAddiLayerOperationPoints() ? 1: 2), (i-1)); 
442    }
443    else if( i==1 )
444    {
445      assert(pcVPS->getNumAddiLayerOperationPoints()==1);
446      pcVPS->setNumOpLayerIdMinus1(pcVPS->getMaxLayers()-1, (i-1)); 
447    }
448    WRITE_UVLC( pcVPS->getNumOpLayerIdMinus1(i-1),           "op_num_layer_id_values_minus1[ opIdx ]" );
449    for(UInt j = 0; j <= pcVPS->getNumOpLayerIdMinus1(i-1); j++ )
450    {
451      if(pcVPS->getMaxLayers() == 3 && i== 2 && j==1)
452        pcVPS->setNumOpLayerId (2, i-1, j);
453      else
454        pcVPS->setNumOpLayerId (j, i-1, j);
455      WRITE_UVLC( pcVPS->getNumOpLayerId(i-1, j),           "op_layer_id[ opIdx ][ i ]" );
456    }
457    if (pcVPS->getNumAddiProLevelSets())
458    {
459      //profile_level_idx[ i ]
460    }
461  }
462  return;
463}
464#else
465#if VIDYO_VPS_INTEGRATION
466Void TEncCavlc::codeVPS( TComVPS* pcVPS )
467{
468  WRITE_CODE( pcVPS->getMaxTLayers() - 1,     3,        "max_temporal_layers_minus1" );
469  WRITE_CODE( pcVPS->getMaxLayers() - 1,      5,        "max_layers_minus1" );
470  WRITE_FLAG( pcVPS->getTemporalNestingFlag() - 1,      "temporal_id_nesting_flag" );
471  WRITE_UVLC( pcVPS->getVPSId(),                        "video_parameter_set_id" );
472  for(UInt i=0; i <= pcVPS->getMaxTLayers()-1; i++)
473  {
474    WRITE_UVLC( pcVPS->getMaxDecPicBuffering(i),           "max_dec_pic_buffering[i]" );
475    WRITE_UVLC( pcVPS->getNumReorderPics(i),               "num_reorder_pics[i]" );
476    WRITE_UVLC( pcVPS->getMaxLatencyIncrease(i),           "max_latency_increase[i]" );
477  }
478 
479  WRITE_CODE( 1,      1,        "bit_equal_to_one" );
480 
481  if( pcVPS->getMaxLayers() - 1 > 0 )
482  {
483    WRITE_UVLC( pcVPS->getExtensionType(),                        "extension_type" );
484   
485    for(UInt i=1; i <= pcVPS->getMaxLayers()-1; i++)
486    {
487      WRITE_FLAG( pcVPS->getDependentFlag(i),                     "dependent_flag[i]" );
488      if( pcVPS->getDependentFlag(i) )
489      {
490        WRITE_UVLC( i - pcVPS->getDependentLayer(i) - 1,          "delta_reference_layer_id_minus1[i]" );
491        if( pcVPS->getExtensionType() == VPS_EXTENSION_TYPE_MULTI_VIEW )
492        {
493          WRITE_UVLC( pcVPS->getViewId(i),                        "view_id[i]" );
494          WRITE_FLAG( pcVPS->getDepthFlag(i),                     "depth_flag[i]" );
495          WRITE_SVLC( pcVPS->getViewOrderIdx(i),                  "view_order_idx[i]" );
496        }
497       
498      }
499    }
500  }
501 
502  WRITE_FLAG( 0,                     "vps_extension_flag" );
503 
504  //future extensions here..
505 
506  return;
507}
508#endif
509#endif
510#if HHI_MPI
511Void TEncCavlc::codeSPS( TComSPS* pcSPS, Bool bIsDepth )
512#else
513Void TEncCavlc::codeSPS( TComSPS* pcSPS )
514#endif
515{
516#if ENC_DEC_TRACE 
517  xTraceSPSHeader (pcSPS);
518#endif
519  WRITE_CODE( pcSPS->getProfileIdc (),     8,       "profile_idc" );
520  WRITE_CODE( 0,                           8,       "reserved_zero_8bits" );
521  WRITE_CODE( pcSPS->getLevelIdc (),       8,       "level_idc" );
522  WRITE_UVLC( pcSPS->getSPSId (),                   "seq_parameter_set_id" );
523#if VIDYO_VPS_INTEGRATION
524  WRITE_UVLC( pcSPS->getVPSId (),                   "video_parameter_set_id" );
525#endif
526  WRITE_UVLC( pcSPS->getChromaFormatIdc (),         "chroma_format_idc" );
527  WRITE_CODE( pcSPS->getMaxTLayers() - 1,  3,       "max_temporal_layers_minus1" );
528  WRITE_UVLC( pcSPS->getPicWidthInLumaSamples (),   "pic_width_in_luma_samples" );
529  WRITE_UVLC( pcSPS->getPicHeightInLumaSamples(),   "pic_height_in_luma_samples" );
530#if PIC_CROPPING
531  WRITE_FLAG( pcSPS->getPicCroppingFlag(),          "pic_cropping_flag" );
532  if (pcSPS->getPicCroppingFlag())
533  {
534    WRITE_UVLC( pcSPS->getPicCropLeftOffset(),      "pic_crop_left_offset" );
535    WRITE_UVLC( pcSPS->getPicCropRightOffset(),     "pic_crop_right_offset" );
536    WRITE_UVLC( pcSPS->getPicCropTopOffset(),       "pic_crop_top_offset" );
537    WRITE_UVLC( pcSPS->getPicCropBottomOffset(),    "pic_crop_bottom_offset" );
538  }
539#endif
540
541#if FULL_NBIT
542  WRITE_UVLC( pcSPS->getBitDepth() - 8,             "bit_depth_luma_minus8" );
543#else
544  WRITE_UVLC( pcSPS->getBitIncrement(),             "bit_depth_luma_minus8" );
545#endif
546#if FULL_NBIT
547  WRITE_UVLC( pcSPS->getBitDepth() - 8,             "bit_depth_chroma_minus8" );
548#else
549  WRITE_UVLC( pcSPS->getBitIncrement(),             "bit_depth_chroma_minus8" );
550#endif
551
552  WRITE_FLAG( pcSPS->getUsePCM() ? 1 : 0,                   "pcm_enabled_flag");
553
554  if( pcSPS->getUsePCM() )
555  {
556  WRITE_CODE( pcSPS->getPCMBitDepthLuma() - 1, 4,   "pcm_bit_depth_luma_minus1" );
557  WRITE_CODE( pcSPS->getPCMBitDepthChroma() - 1, 4, "pcm_bit_depth_chroma_minus1" );
558  }
559
560#if LOSSLESS_CODING
561  WRITE_FLAG( (pcSPS->getUseLossless ()) ? 1 : 0,                                    "qpprime_y_zero_transquant_bypass_flag" );
562#endif
563
564  WRITE_UVLC( pcSPS->getBitsForPOC()-4,                 "log2_max_pic_order_cnt_lsb_minus4" );
565#if H0567_DPB_PARAMETERS_PER_TEMPORAL_LAYER
566  for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++)
567  {
568    WRITE_UVLC( pcSPS->getMaxDecPicBuffering(i),           "max_dec_pic_buffering[i]" );
569    WRITE_UVLC( pcSPS->getNumReorderPics(i),               "num_reorder_pics[i]" );
570    WRITE_UVLC( pcSPS->getMaxLatencyIncrease(i),           "max_latency_increase[i]" );
571  }
572#else
573  WRITE_UVLC( pcSPS->getMaxNumberOfReferencePictures(), "max_num_ref_pics" ); 
574  WRITE_UVLC( pcSPS->getNumReorderFrames(),             "num_reorder_frames" ); 
575  WRITE_UVLC(pcSPS->getMaxDecFrameBuffering(),          "max_dec_frame_buffering" );
576  WRITE_UVLC(pcSPS->getMaxLatencyIncrease(),            "max_latency_increase"    );
577#endif
578  assert( pcSPS->getMaxCUWidth() == pcSPS->getMaxCUHeight() );
579 
580  UInt MinCUSize = pcSPS->getMaxCUWidth() >> ( pcSPS->getMaxCUDepth()-g_uiAddCUDepth );
581  UInt log2MinCUSize = 0;
582  while(MinCUSize > 1)
583  {
584    MinCUSize >>= 1;
585    log2MinCUSize++;
586  }
587
588#if H0412_REF_PIC_LIST_RESTRICTION
589  WRITE_FLAG( pcSPS->getRestrictedRefPicListsFlag(),                                 "restricted_ref_pic_lists_flag" );
590  if( pcSPS->getRestrictedRefPicListsFlag() )
591  {
592    WRITE_FLAG( pcSPS->getListsModificationPresentFlag(),                            "lists_modification_present_flag" );
593  }
594#endif
595  WRITE_UVLC( log2MinCUSize - 3,                                                     "log2_min_coding_block_size_minus3" );
596  WRITE_UVLC( pcSPS->getMaxCUDepth()-g_uiAddCUDepth,                                 "log2_diff_max_min_coding_block_size" );
597  WRITE_UVLC( pcSPS->getQuadtreeTULog2MinSize() - 2,                                 "log2_min_transform_block_size_minus2" );
598  WRITE_UVLC( pcSPS->getQuadtreeTULog2MaxSize() - pcSPS->getQuadtreeTULog2MinSize(), "log2_diff_max_min_transform_block_size" );
599
600  if(log2MinCUSize == 3)
601  {
602    xWriteFlag  ( (pcSPS->getDisInter4x4()) ? 1 : 0 );
603  }
604
605  if( pcSPS->getUsePCM() )
606  {
607    WRITE_UVLC( pcSPS->getPCMLog2MinSize() - 3,                                      "log2_min_pcm_coding_block_size_minus3" );
608    WRITE_UVLC( pcSPS->getPCMLog2MaxSize() - pcSPS->getPCMLog2MinSize(),             "log2_diff_max_min_pcm_coding_block_size" );
609  }
610  WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthInter() - 1,                               "max_transform_hierarchy_depth_inter" );
611  WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthIntra() - 1,                               "max_transform_hierarchy_depth_intra" );
612  WRITE_FLAG( pcSPS->getScalingListFlag() ? 1 : 0,                                   "scaling_list_enabled_flag" ); 
613  WRITE_FLAG( pcSPS->getUseLMChroma () ? 1 : 0,                                      "chroma_pred_from_luma_enabled_flag" ); 
614  WRITE_FLAG( pcSPS->getUseDF() ? 1 : 0,                                             "deblocking_filter_in_aps_enabled_flag");
615  WRITE_FLAG( pcSPS->getLFCrossSliceBoundaryFlag()?1 : 0,                            "seq_loop_filter_across_slices_enabled_flag");
616  WRITE_FLAG( pcSPS->getUseAMP(),                                                    "asymmetric_motion_partitions_enabled_flag" );
617  WRITE_FLAG( pcSPS->getUseNSQT(),                                                   "non_square_quadtree_enabled_flag" );
618  WRITE_FLAG( pcSPS->getUseSAO() ? 1 : 0,                                            "sample_adaptive_offset_enabled_flag");
619  WRITE_FLAG( pcSPS->getUseALF () ? 1 : 0,                                           "adaptive_loop_filter_enabled_flag");
620#if LCU_SYNTAX_ALF
621  if(pcSPS->getUseALF())
622  {
623    WRITE_FLAG( (pcSPS->getUseALFCoefInSlice()) ? 1 : 0,                             "alf_coef_in_slice_flag");
624  }
625#endif
626
627  if( pcSPS->getUsePCM() )
628  {
629  WRITE_FLAG( pcSPS->getPCMFilterDisableFlag()?1 : 0,                                "pcm_loop_filter_disable_flag");
630  }
631
632  assert( pcSPS->getMaxTLayers() > 0 );         
633
634  WRITE_FLAG( pcSPS->getTemporalIdNestingFlag() ? 1 : 0,                             "temporal_id_nesting_flag" );
635
636#if RPS_IN_SPS
637  TComRPSList* rpsList = pcSPS->getRPSList();
638  TComReferencePictureSet*      rps;
639
640  WRITE_UVLC(rpsList->getNumberOfReferencePictureSets(), "num_short_term_ref_pic_sets" );
641  for(Int i=0; i < rpsList->getNumberOfReferencePictureSets(); i++)
642  {
643    rps = rpsList->getReferencePictureSet(i);
644    codeShortTermRefPicSet(pcSPS,rps);
645  }   
646  WRITE_FLAG( pcSPS->getLongTermRefsPresent() ? 1 : 0,         "long_term_ref_pics_present_flag" );
647#endif
648#if !PIC_CROPPING
649  //!!!KS: Syntax not in WD !!!
650 
651  xWriteUvlc  ( pcSPS->getPad (0) );
652  xWriteUvlc  ( pcSPS->getPad (1) );
653#endif
654  // AMVP mode for each depth
655  for (Int i = 0; i < pcSPS->getMaxCUDepth(); i++)
656  {
657    xWriteFlag( pcSPS->getAMVPMode(i) ? 1 : 0);
658  }
659
660#if TILES_WPP_ENTRY_POINT_SIGNALLING
661  Int tilesOrEntropyCodingSyncIdc = 0;
662  if ( pcSPS->getNumColumnsMinus1() > 0 || pcSPS->getNumRowsMinus1() > 0)
663  {
664    tilesOrEntropyCodingSyncIdc = 1;
665  }
666  else if ( pcSPS->getNumSubstreams() > 1 )
667  {
668    tilesOrEntropyCodingSyncIdc = 2;
669  }
670  pcSPS->setTilesOrEntropyCodingSyncIdc( tilesOrEntropyCodingSyncIdc );
671  WRITE_CODE(tilesOrEntropyCodingSyncIdc, 2, "tiles_or_entropy_coding_sync_idc");
672#endif
673
674#if TILES_OR_ENTROPY_SYNC_IDC
675  if(tilesOrEntropyCodingSyncIdc == 1)
676  {
677#endif
678    WRITE_UVLC( pcSPS->getNumColumnsMinus1(),                           "num_tile_columns_minus1" );
679    WRITE_UVLC( pcSPS->getNumRowsMinus1(),                              "num_tile_rows_minus1" );
680    WRITE_FLAG( pcSPS->getUniformSpacingIdr(),                          "uniform_spacing_flag" );
681
682    if( pcSPS->getUniformSpacingIdr()==0 )
683    {
684      for(UInt i=0; i<pcSPS->getNumColumnsMinus1(); i++)
685      {
686        WRITE_UVLC( pcSPS->getColumnWidth(i),                           "column_width" );
687      }
688      for(UInt i=0; i<pcSPS->getNumRowsMinus1(); i++)
689      {
690        WRITE_UVLC( pcSPS->getRowHeight(i),                             "row_height" );
691      }
692    }
693
694    if( pcSPS->getNumColumnsMinus1() !=0 || pcSPS->getNumRowsMinus1() != 0)
695    {
696#if !REMOVE_TILE_DEPENDENCE
697      WRITE_FLAG( pcSPS->getTileBoundaryIndependenceIdr(),                "tile_boundary_independence_flag" );
698      if(pcSPS->getTileBoundaryIndependenceIdr() == 1)
699      {
700#endif
701        WRITE_FLAG( pcSPS->getLFCrossTileBoundaryFlag()?1 : 0,            "loop_filter_across_tile_flag");
702#if !REMOVE_TILE_DEPENDENCE
703      }
704#endif
705    }
706#if TILES_OR_ENTROPY_SYNC_IDC
707  }
708#endif
709  WRITE_FLAG( 1, "sps_extension_flag" );
710#if !QC_MVHEVC_B0046
711  WRITE_FLAG( (pcSPS->getNumberOfUsableInterViewRefs() > 0) ? 1 : 0, "interview_refs_present_flag" );
712  if( pcSPS->getNumberOfUsableInterViewRefs() > 0 )
713  {
714    WRITE_UVLC( pcSPS->getNumberOfUsableInterViewRefs() - 1,   "num_usable_interview_refs_minus1" );
715
716    Int prev = 0;
717    for( Int j = 0 ; j < pcSPS->getNumberOfUsableInterViewRefs(); j++ )
718    {
719      WRITE_UVLC( prev - pcSPS->getUsableInterViewRef( j ) - 1, "delta_usable_interview_ref_minus1" );
720      prev = pcSPS->getUsableInterViewRef( j );
721    }
722  }
723
724#if HHI_DMM_WEDGE_INTRA || HHI_DMM_PRED_TEX
725  WRITE_FLAG( pcSPS->getUseDMM(), "enable_dmm_flag" );
726#endif
727
728#if HHI_MPI
729  if( bIsDepth )
730  {
731    WRITE_FLAG( pcSPS->getUseMVI() ? 1 : 0, "use_mvi_flag" );
732  }
733#endif
734
735#if OL_QTLIMIT_PREDCODING_B0068
736  if( bIsDepth )
737  {
738    WRITE_FLAG( pcSPS->getUseQTLPC() ? 1 : 0, "use_qtlpc_flag");
739  }
740#endif
741 
742#if RWTH_SDC_DLT_B0036
743  if( bIsDepth )
744  {
745    WRITE_FLAG( pcSPS->getUseDLT() ? 1 : 0, "use_dlt_flag" );
746    if( pcSPS->getUseDLT() )
747    {
748      // code mapping
749      xWriteUvlc  ( pcSPS->getNumDepthValues() );
750      for(UInt i=0; i<pcSPS->getNumDepthValues(); i++)
751      {
752        xWriteUvlc( pcSPS->idx2DepthValue(i) );
753      }
754    }
755  }
756#endif
757
758  if( pcSPS->getViewId() || pcSPS->isDepth() )
759  {
760    WRITE_FLAG( 0, "base_view_flag" ); 
761    if( pcSPS->isDepth() )
762    {
763      WRITE_FLAG( 1, "depth_flag" ); 
764      WRITE_UVLC( pcSPS->getViewId(), "view_id" );
765      WRITE_SVLC( pcSPS->getViewOrderIdx(), "view_order_idx" );
766    }
767    else
768    {
769      WRITE_FLAG( 0, "depth_flag" ); 
770      WRITE_UVLC( pcSPS->getViewId() - 1, "view_id_minus1" );
771      WRITE_SVLC( pcSPS->getViewOrderIdx(), "view_order_idx" );
772      WRITE_UVLC( pcSPS->getCamParPrecision(), "camera_parameter_precision" );
773      WRITE_FLAG( pcSPS->hasCamParInSliceHeader() ? 1 : 0, "camera_parameter_in_slice_header" );
774      if( !pcSPS->hasCamParInSliceHeader() )
775      {
776        for( UInt uiId = 0; uiId < pcSPS->getViewId(); uiId++ )
777        {
778          WRITE_SVLC( pcSPS->getCodedScale    ()[ uiId ], "coded_scale" );
779          WRITE_SVLC( pcSPS->getCodedOffset   ()[ uiId ], "coded_offset" );
780          WRITE_SVLC( pcSPS->getInvCodedScale ()[ uiId ] + pcSPS->getCodedScale ()[ uiId ], "inverse_coded_scale_plus_coded_scale" );
781          WRITE_SVLC( pcSPS->getInvCodedOffset()[ uiId ] + pcSPS->getCodedOffset()[ uiId ], "inverse_coded_offset_plus_coded_offset" );
782        }
783      }
784#if DEPTH_MAP_GENERATION
785      WRITE_UVLC( pcSPS->getPredDepthMapGeneration(), "Pdm_generation" );
786      if( pcSPS->getPredDepthMapGeneration() )
787      {
788        WRITE_UVLC( pcSPS->getPdmPrecision(), "Pdm_precision" );
789        for( UInt uiId = 0; uiId < pcSPS->getViewId(); uiId++ )
790        {
791          WRITE_SVLC( pcSPS->getPdmScaleNomDelta()[ uiId ], "Pdm_scale_nom_delta" );
792          WRITE_SVLC( pcSPS->getPdmOffset       ()[ uiId ], "Pdm_offset" );
793        }
794#if HHI_INTER_VIEW_MOTION_PRED
795        WRITE_UVLC( pcSPS->getMultiviewMvPredMode(), "multi_view_mv_pred_mode" );
796#endif
797#if HHI_INTER_VIEW_RESIDUAL_PRED
798        WRITE_FLAG  ( pcSPS->getMultiviewResPredMode(), "multi_view_residual_pred_mode" );
799#endif
800      }
801#endif
802    }
803  }
804  else
805  {
806    WRITE_FLAG( 1, "base_view_flag" );   
807  }
808  WRITE_FLAG( 0, "sps_extension2_flag" );
809#endif
810}
811
812Void TEncCavlc::writeTileMarker( UInt uiTileIdx, UInt uiBitsUsed )
813{
814  xWriteCode( uiTileIdx, uiBitsUsed );
815}
816
817Void TEncCavlc::codeSliceHeader         ( TComSlice* pcSlice )
818{
819#if ENC_DEC_TRACE 
820  xTraceSliceHeader (pcSlice);
821#endif
822
823  // if( nal_ref_idc != 0 )
824  //   dec_ref_pic_marking( )
825  // if( entropy_coding_mode_flag  &&  slice_type  !=  I)
826  //   cabac_init_idc
827  // first_slice_in_pic_flag
828  // if( first_slice_in_pic_flag == 0 )
829  //    slice_address
830  //calculate number of bits required for slice address
831  Int maxAddrOuter = pcSlice->getPic()->getNumCUsInFrame();
832  Int reqBitsOuter = 0;
833  while(maxAddrOuter>(1<<reqBitsOuter)) 
834  {
835    reqBitsOuter++;
836  }
837  Int maxAddrInner = pcSlice->getPic()->getNumPartInCU()>>(2);
838  maxAddrInner = (1<<(pcSlice->getPPS()->getSliceGranularity()<<1));
839  Int reqBitsInner = 0;
840 
841  while(maxAddrInner>(1<<reqBitsInner))
842  {
843    reqBitsInner++;
844  }
845  Int lCUAddress;
846  Int innerAddress;
847  if (pcSlice->isNextSlice())
848  {
849    // Calculate slice address
850    lCUAddress = (pcSlice->getSliceCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU());
851    innerAddress = (pcSlice->getSliceCurStartCUAddr()%(pcSlice->getPic()->getNumPartInCU()))>>((pcSlice->getSPS()->getMaxCUDepth()-pcSlice->getPPS()->getSliceGranularity())<<1);
852  }
853  else
854  {
855    // Calculate slice address
856    lCUAddress = (pcSlice->getEntropySliceCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU());
857    innerAddress = (pcSlice->getEntropySliceCurStartCUAddr()%(pcSlice->getPic()->getNumPartInCU()))>>((pcSlice->getSPS()->getMaxCUDepth()-pcSlice->getPPS()->getSliceGranularity())<<1);
858   
859  }
860  //write slice address
861  Int address = (pcSlice->getPic()->getPicSym()->getCUOrderMap(lCUAddress) << reqBitsInner) + innerAddress;
862  WRITE_FLAG( address==0, "first_slice_in_pic_flag" );
863
864#if LGE_ILLUCOMP_B0045
865  // IC flag is on only first_slice_in_pic
866  if (address==0)
867  {
868    if( pcSlice->getSPS()->getViewId() && !pcSlice->getIsDepth() )
869    {
870      WRITE_FLAG( pcSlice->getApplyIC() ? 1 : 0, "applying IC flag" );
871    }
872  }
873#endif
874
875  if(address>0) 
876  {
877    WRITE_CODE( address, reqBitsOuter+reqBitsInner, "slice_address" );
878  }
879
880  WRITE_UVLC( pcSlice->getSliceType(),       "slice_type" );
881  Bool bEntropySlice = (!pcSlice->isNextSlice());
882  WRITE_FLAG( bEntropySlice ? 1 : 0, "lightweight_slice_flag" );
883 
884  if (!bEntropySlice)
885  {
886#if QC_MVHEVC_B0046
887    WRITE_UVLC( 0, "pic_parameter_set_id" );
888#else
889    WRITE_UVLC( pcSlice->getPPS()->getPPSId(), "pic_parameter_set_id" );
890#endif
891#if H0388
892    if( pcSlice->getPPS()->getOutputFlagPresentFlag() )
893    {
894      WRITE_FLAG( pcSlice->getPicOutputFlag() ? 1 : 0, "pic_output_flag" );
895    }
896#endif
897#if QC_REM_IDV_B0046
898    if(pcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR && pcSlice->getViewId() == 0) 
899#else
900    if(pcSlice->getNalUnitType()==NAL_UNIT_CODED_SLICE_IDR) 
901#endif
902    {
903      WRITE_UVLC( 0, "idr_pic_id" );
904      WRITE_FLAG( 0, "no_output_of_prior_pics_flag" );
905    }
906    else
907    {
908      WRITE_CODE( (pcSlice->getPOC()-pcSlice->getLastIDR()+(1<<pcSlice->getSPS()->getBitsForPOC()))%(1<<pcSlice->getSPS()->getBitsForPOC()), pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb");
909#if QC_REM_IDV_B0046
910      if( pcSlice->getPOC() == 0 && !(pcSlice->getSPS()->getViewId() && (pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_IDR || pcSlice->getNalUnitType() == NAL_UNIT_CODED_SLICE_CRA)))
911#else
912      if( pcSlice->getPOC() == 0 && pcSlice->getNalUnitType() != NAL_UNIT_CODED_SLICE_IDV )
913#endif
914      {
915        TComReferencePictureSet* rps = pcSlice->getRPS();
916        if(pcSlice->getRPSidx() < 0)
917        {
918          WRITE_FLAG( 0, "short_term_ref_pic_set_sps_flag");
919#if RPS_IN_SPS
920          codeShortTermRefPicSet(pcSlice->getSPS(), rps);
921#else
922          codeShortTermRefPicSet(pcSlice->getPPS(), rps);
923#endif
924        }
925        else
926        {
927          WRITE_FLAG( 1, "short_term_ref_pic_set_sps_flag");
928          WRITE_UVLC( pcSlice->getRPSidx(), "short_term_ref_pic_set_idx" );
929        }
930#if RPS_IN_SPS
931        if(pcSlice->getSPS()->getLongTermRefsPresent())
932#else
933        if(pcSlice->getPPS()->getLongTermRefsPresent())
934#endif
935        {
936          WRITE_UVLC( rps->getNumberOfLongtermPictures(), "num_long_term_pics");
937          Int maxPocLsb = 1<<pcSlice->getSPS()->getBitsForPOC();
938          Int prev = 0;
939#if LTRP_MULT
940          Int prevDeltaPocLt=0;
941          Int currDeltaPocLt=0;
942#endif
943          for(Int i=rps->getNumberOfPictures()-1 ; i > rps->getNumberOfPictures()-rps->getNumberOfLongtermPictures()-1; i--)
944          {
945            WRITE_UVLC((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb, "delta_poc_lsb_lt");
946         
947#if LTRP_MULT
948            currDeltaPocLt=((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb)+prevDeltaPocLt;
949
950            Int deltaMsbCycle=0;
951            if( (i==(rps->getNumberOfPictures()-1)) )
952            {
953              deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1;
954            }
955            else if( prevDeltaPocLt!=currDeltaPocLt )
956            {
957              deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1;
958              if( ((prevDeltaPocLt==maxPocLsb-1) && (currDeltaPocLt==maxPocLsb+1)) ||  ((prevDeltaPocLt==maxPocLsb-2) && (currDeltaPocLt==maxPocLsb)))
959              {
960                deltaMsbCycle=deltaMsbCycle-1;
961              }
962            }
963            else
964            {
965              deltaMsbCycle=((rps->getDeltaPOC(i+1)-rps->getDeltaPOC(i))/maxPocLsb)-1;
966            }
967
968            if(deltaMsbCycle>=0)
969            {
970              WRITE_FLAG( 1, "delta_poc_msb_present_flag");
971              WRITE_UVLC(deltaMsbCycle, "delta_poc_msb_cycle_lt_minus1");
972            }
973            else
974            {
975              WRITE_FLAG( 0, "delta_poc_msb_present_flag");
976            }
977            prevDeltaPocLt=currDeltaPocLt;
978#endif
979            prev = rps->getDeltaPOC(i);
980            WRITE_FLAG( rps->getUsed(i), "used_by_curr_pic_lt_flag"); 
981          }
982        }
983      }
984      if( pcSlice->getPOC() != 0 )
985      {
986        TComReferencePictureSet* rps = pcSlice->getRPS();
987        if(pcSlice->getRPSidx() < 0)
988        {
989          WRITE_FLAG( 0, "short_term_ref_pic_set_sps_flag");
990#if RPS_IN_SPS
991          codeShortTermRefPicSet(pcSlice->getSPS(), rps);
992#else
993          codeShortTermRefPicSet(pcSlice->getPPS(), rps);
994#endif
995        }
996        else
997        {
998          WRITE_FLAG( 1, "short_term_ref_pic_set_sps_flag");
999          WRITE_UVLC( pcSlice->getRPSidx(), "short_term_ref_pic_set_idx" );
1000        }
1001#if RPS_IN_SPS
1002        if(pcSlice->getSPS()->getLongTermRefsPresent())
1003#else
1004        if(pcSlice->getPPS()->getLongTermRefsPresent())
1005#endif
1006        {
1007          WRITE_UVLC( rps->getNumberOfLongtermPictures(), "num_long_term_pics");
1008          Int maxPocLsb = 1<<pcSlice->getSPS()->getBitsForPOC();
1009          Int prev = 0;
1010#if LTRP_MULT
1011          Int prevDeltaPocLt=0;
1012          Int currDeltaPocLt=0;
1013#endif
1014          for(Int i=rps->getNumberOfPictures()-1 ; i > rps->getNumberOfPictures()-rps->getNumberOfLongtermPictures()-1; i--)
1015          {
1016            WRITE_UVLC((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb, "delta_poc_lsb_lt");
1017         
1018#if LTRP_MULT
1019            currDeltaPocLt=((maxPocLsb-rps->getDeltaPOC(i)+prev)%maxPocLsb)+prevDeltaPocLt;
1020
1021            Int deltaMsbCycle=0;
1022            if( (i==(rps->getNumberOfPictures()-1)) )
1023            {
1024              deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1;
1025            }
1026            else if( prevDeltaPocLt!=currDeltaPocLt )
1027            {
1028              deltaMsbCycle=((-rps->getDeltaPOC(i))/maxPocLsb)-1;
1029              if( ((prevDeltaPocLt==maxPocLsb-1) && (currDeltaPocLt==maxPocLsb+1)) ||  ((prevDeltaPocLt==maxPocLsb-2) && (currDeltaPocLt==maxPocLsb)))
1030              {
1031                deltaMsbCycle=deltaMsbCycle-1;
1032              }
1033            }
1034            else
1035            {
1036              deltaMsbCycle=((rps->getDeltaPOC(i+1)-rps->getDeltaPOC(i))/maxPocLsb)-1;
1037            }
1038
1039            if(deltaMsbCycle>=0)
1040            {
1041              WRITE_FLAG( 1, "delta_poc_msb_present_flag");
1042              WRITE_UVLC(deltaMsbCycle, "delta_poc_msb_cycle_lt_minus1");
1043            }
1044            else
1045            {
1046              WRITE_FLAG( 0, "delta_poc_msb_present_flag");
1047            }
1048            prevDeltaPocLt=currDeltaPocLt;
1049#endif
1050            prev = rps->getDeltaPOC(i);
1051            WRITE_FLAG( rps->getUsed(i), "used_by_curr_pic_lt_flag"); 
1052          }
1053        }
1054      }
1055    }
1056
1057    if(pcSlice->getSPS()->getUseSAO() || pcSlice->getSPS()->getUseALF()|| pcSlice->getSPS()->getScalingListFlag() || pcSlice->getSPS()->getUseDF())
1058    {
1059      if (pcSlice->getSPS()->getUseALF())
1060      {
1061#if !LCU_SYNTAX_ALF
1062         if (pcSlice->getAlfEnabledFlag())
1063         {
1064           assert (pcSlice->getAPS()->getAlfEnabled());
1065         }
1066#endif
1067         WRITE_FLAG( pcSlice->getAlfEnabledFlag(), "ALF on/off flag in slice header" );
1068      }
1069      if (pcSlice->getSPS()->getUseSAO())
1070      {
1071#if SAO_UNIT_INTERLEAVING
1072        WRITE_FLAG( pcSlice->getSaoInterleavingFlag(), "SAO interleaving flag" );
1073#endif
1074         assert (pcSlice->getSaoEnabledFlag() == pcSlice->getAPS()->getSaoEnabled());
1075         WRITE_FLAG( pcSlice->getSaoEnabledFlag(), "SAO on/off flag in slice header" );
1076#if SAO_UNIT_INTERLEAVING
1077         if (pcSlice->getSaoInterleavingFlag()&&pcSlice->getSaoEnabledFlag() )
1078         {
1079           WRITE_FLAG( pcSlice->getAPS()->getSaoParam()->bSaoFlag[1], "SAO on/off flag for Cb in slice header" );
1080           WRITE_FLAG( pcSlice->getAPS()->getSaoParam()->bSaoFlag[2], "SAO on/off flag for Cr in slice header" );
1081         }
1082#endif
1083      }
1084      WRITE_UVLC( pcSlice->getAPS()->getAPSID(), "aps_id");
1085    }
1086
1087    // we always set num_ref_idx_active_override_flag equal to one. this might be done in a more intelligent way
1088    if (!pcSlice->isIntra())
1089    {
1090      WRITE_FLAG( 1 ,                                             "num_ref_idx_active_override_flag");
1091      WRITE_CODE( pcSlice->getNumRefIdx( REF_PIC_LIST_0 ) - 1, 3, "num_ref_idx_l0_active_minus1" );
1092    }
1093    else
1094    {
1095      pcSlice->setNumRefIdx(REF_PIC_LIST_0, 0);
1096    }
1097    if (pcSlice->isInterB())
1098    {
1099      WRITE_CODE( pcSlice->getNumRefIdx( REF_PIC_LIST_1 ) - 1, 3, "num_ref_idx_l1_active_minus1" );
1100    }
1101    else
1102    {
1103      pcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1104    }
1105#if H0412_REF_PIC_LIST_RESTRICTION
1106    if( pcSlice->getSPS()->getListsModificationPresentFlag() )
1107    {
1108#endif
1109    TComRefPicListModification* refPicListModification = pcSlice->getRefPicListModification();
1110#if H0137_0138_LIST_MODIFICATION
1111    if( !pcSlice->isIntra() )
1112    {
1113      WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0() ? 1 : 0,       "ref_pic_list_modification_flag_l0" );
1114      if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0())
1115      {
1116        Int NumPocTotalCurr = pcSlice->getNumPocTotalCurrMvc();
1117        if (NumPocTotalCurr > 1)
1118        {
1119          Int length = 1;
1120          NumPocTotalCurr --;
1121          while ( NumPocTotalCurr >>= 1) 
1122          {
1123            length ++;
1124          }
1125          for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_0 ); i++)
1126          {
1127            WRITE_CODE( refPicListModification->getRefPicSetIdxL0(i), length, "list_entry_l0");
1128          }
1129        }
1130      }
1131    }
1132    if(pcSlice->isInterB())
1133    {   
1134      WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1() ? 1 : 0,       "ref_pic_list_modification_flag_l1" );
1135      if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1())
1136      {
1137        Int NumPocTotalCurr = pcSlice->getNumPocTotalCurrMvc();
1138        if ( NumPocTotalCurr > 1 )
1139        {
1140          Int length = 1;
1141          NumPocTotalCurr --;
1142          while ( NumPocTotalCurr >>= 1)
1143          {
1144            length ++;
1145          }
1146          for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_1 ); i++)
1147          {
1148            WRITE_CODE( refPicListModification->getRefPicSetIdxL1(i), length, "list_entry_l1");
1149          }
1150        }
1151      }
1152    }
1153#else
1154      if(!pcSlice->isIntra())
1155      {
1156        WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0() ? 1 : 0,       "ref_pic_list_modification_flag" );   
1157        for(Int i = 0; i < refPicListModification->getNumberOfRefPicListModificationsL0(); i++)
1158        {
1159          WRITE_UVLC( refPicListModification->getListIdcL0(i), "ref_pic_list_modification_idc");
1160          WRITE_UVLC( refPicListModification->getRefPicSetIdxL0(i), "ref_pic_set_idx");
1161        }
1162        if(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0())
1163          WRITE_UVLC( 3, "ref_pic_list_modification_idc");
1164      }
1165      if(pcSlice->isInterB())
1166      {   
1167        WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1() ? 1 : 0,       "ref_pic_list_modification_flag" );
1168        for(Int i = 0; i < refPicListModification->getNumberOfRefPicListModificationsL1(); i++)
1169        {
1170          WRITE_UVLC( refPicListModification->getListIdcL1(i), "ref_pic_list_modification_idc");
1171          WRITE_UVLC( refPicListModification->getRefPicSetIdxL1(i), "ref_pic_set_idx");
1172        }
1173        if(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1())
1174          WRITE_UVLC( 3, "ref_pic_list_modification_idc");
1175      }
1176#endif
1177    }
1178#if H0412_REF_PIC_LIST_RESTRICTION
1179  }
1180#endif
1181  // ref_pic_list_combination( )
1182  // maybe move to own function?
1183  if (pcSlice->isInterB())
1184  {
1185    WRITE_FLAG(pcSlice->getRefPicListCombinationFlag() ? 1 : 0,       "ref_pic_list_combination_flag" );
1186    if(pcSlice->getRefPicListCombinationFlag())
1187    {
1188      WRITE_UVLC( pcSlice->getNumRefIdx(REF_PIC_LIST_C) - 1,          "num_ref_idx lc_active_minus1");
1189     
1190#if H0412_REF_PIC_LIST_RESTRICTION
1191      if( pcSlice->getSPS()->getListsModificationPresentFlag() )
1192      {
1193#endif
1194        WRITE_FLAG( pcSlice->getRefPicListModificationFlagLC() ? 1 : 0, "ref_pic_list_modification_flag_lc" );
1195        if(pcSlice->getRefPicListModificationFlagLC())
1196        {
1197          for (UInt i=0;i<pcSlice->getNumRefIdx(REF_PIC_LIST_C);i++)
1198          {
1199            WRITE_FLAG( pcSlice->getListIdFromIdxOfLC(i),               "pic_from_list_0_flag" );
1200#if H0137_0138_LIST_MODIFICATION
1201          if (((pcSlice->getListIdFromIdxOfLC(i)==REF_PIC_LIST_0) && pcSlice->getNumRefIdx( REF_PIC_LIST_0 )>1 ) || ((pcSlice->getListIdFromIdxOfLC(i)==REF_PIC_LIST_1) && pcSlice->getNumRefIdx( REF_PIC_LIST_1 )>1 ) )
1202          {
1203            WRITE_UVLC( pcSlice->getRefIdxFromIdxOfLC(i),               "ref_idx_list_curr" );
1204          }
1205#else
1206            WRITE_UVLC( pcSlice->getRefIdxFromIdxOfLC(i),               "ref_idx_list_curr" );
1207#endif
1208          }
1209        }
1210#if H0412_REF_PIC_LIST_RESTRICTION
1211      }
1212#endif
1213    }
1214  }
1215   
1216#if H0111_MVD_L1_ZERO
1217  if (pcSlice->isInterB())
1218  {
1219    WRITE_FLAG( pcSlice->getMvdL1ZeroFlag() ? 1 : 0,   "mvd_l1_zero_flag");
1220  }
1221#endif
1222
1223  if(pcSlice->getPPS()->getEntropyCodingMode() && !pcSlice->isIntra())
1224  {
1225#if CABAC_INIT_FLAG
1226    if (!pcSlice->isIntra() && pcSlice->getPPS()->getCabacInitPresentFlag())
1227    {
1228      SliceType sliceType   = pcSlice->getSliceType();
1229      Int  encCABACTableIdx = pcSlice->getPPS()->getEncCABACTableIdx();
1230      Bool encCabacInitFlag = (sliceType!=encCABACTableIdx && encCABACTableIdx!=0) ? true : false;
1231      pcSlice->setCabacInitFlag( encCabacInitFlag );
1232      WRITE_FLAG( encCabacInitFlag?1:0, "cabac_init_flag" );
1233    }
1234#else
1235    WRITE_UVLC(pcSlice->getCABACinitIDC(),  "cabac_init_idc");
1236#endif
1237  }
1238
1239  // if( !lightweight_slice_flag ) {
1240  if (!bEntropySlice)
1241  {
1242    Int iCode = pcSlice->getSliceQp() - ( pcSlice->getPPS()->getPicInitQPMinus26() + 26 );
1243    WRITE_SVLC( iCode, "slice_qp_delta" ); 
1244#if DBL_CONTROL
1245    if (pcSlice->getPPS()->getDeblockingFilterControlPresent())
1246    {
1247      if ( pcSlice->getSPS()->getUseDF() )
1248      {
1249        WRITE_FLAG(pcSlice->getInheritDblParamFromAPS(), "inherit_dbl_param_from_APS_flag");
1250      }
1251#else
1252    WRITE_FLAG(pcSlice->getInheritDblParamFromAPS(), "inherit_dbl_param_from_APS_flag");
1253#endif
1254      if (!pcSlice->getInheritDblParamFromAPS())
1255      {
1256        WRITE_FLAG(pcSlice->getLoopFilterDisable(), "loop_filter_disable");  // should be an IDC
1257        if(!pcSlice->getLoopFilterDisable())
1258        {
1259          WRITE_SVLC (pcSlice->getLoopFilterBetaOffset(), "beta_offset_div2");
1260          WRITE_SVLC (pcSlice->getLoopFilterTcOffset(), "tc_offset_div2");
1261        }
1262      }
1263#if DBL_CONTROL
1264    }
1265#endif
1266    if ( pcSlice->getSliceType() == B_SLICE )
1267    {
1268      WRITE_FLAG( pcSlice->getColDir(), "collocated_from_l0_flag" );
1269    }
1270
1271#if COLLOCATED_REF_IDX
1272    if ( pcSlice->getSliceType() != I_SLICE &&
1273      ((pcSlice->getColDir()==0 && pcSlice->getNumRefIdx(REF_PIC_LIST_0)>1)||
1274      (pcSlice->getColDir()==1  && pcSlice->getNumRefIdx(REF_PIC_LIST_1)>1)))
1275    {
1276      WRITE_UVLC( pcSlice->getColRefIdx(), "collocated_ref_idx" );
1277    }
1278#endif
1279 
1280    if ( (pcSlice->getPPS()->getUseWP() && pcSlice->getSliceType()==P_SLICE) || (pcSlice->getPPS()->getWPBiPredIdc()==1 && pcSlice->getSliceType()==B_SLICE) )
1281    {
1282      xCodePredWeightTable( pcSlice );
1283    }
1284  }
1285
1286  // !!!! sytnax elements not in the WD !!!!
1287  if (!bEntropySlice)
1288  {
1289    if( pcSlice->getSPS()->hasCamParInSliceHeader() )
1290    {
1291      for( UInt uiId = 0; uiId < pcSlice->getSPS()->getViewId(); uiId++ )
1292      {
1293        WRITE_SVLC( pcSlice->getCodedScale    ()[ uiId ], "coded_scale" );
1294        WRITE_SVLC( pcSlice->getCodedOffset   ()[ uiId ], "coded_offset" );
1295        WRITE_SVLC( pcSlice->getInvCodedScale ()[ uiId ] + pcSlice->getCodedScale ()[ uiId ], "inverse_coded_scale_plus_coded_scale" );
1296        WRITE_SVLC( pcSlice->getInvCodedOffset()[ uiId ] + pcSlice->getCodedOffset()[ uiId ], "inverse_coded_offset_plus_coded_offset" );
1297      }
1298    }
1299  }
1300 
1301#if ( HHI_MPI || HHI_INTER_VIEW_MOTION_PRED )
1302  #if ( HHI_MPI && HHI_INTER_VIEW_MOTION_PRED )
1303  const int iExtraMergeCandidates = ( pcSlice->getSPS()->getUseMVI() || pcSlice->getSPS()->getMultiviewMvPredMode() ) ? 1 : 0;
1304  #elif HHI_MPI
1305  const int iExtraMergeCandidates = pcSlice->getSPS()->getUseMVI() ? 1 : 0;
1306  #else
1307  const int iExtraMergeCandidates = pcSlice->getSPS()->getMultiviewMvPredMode() ? 1 : 0;
1308  #endif
1309  assert(pcSlice->getMaxNumMergeCand()<=(MRG_MAX_NUM_CANDS_SIGNALED+iExtraMergeCandidates));
1310  assert(MRG_MAX_NUM_CANDS_SIGNALED<=MRG_MAX_NUM_CANDS);
1311  WRITE_UVLC(MRG_MAX_NUM_CANDS + iExtraMergeCandidates - pcSlice->getMaxNumMergeCand(), "maxNumMergeCand");
1312#else
1313  assert(pcSlice->getMaxNumMergeCand()<=MRG_MAX_NUM_CANDS_SIGNALED);
1314  assert(MRG_MAX_NUM_CANDS_SIGNALED<=MRG_MAX_NUM_CANDS);
1315  WRITE_UVLC(MRG_MAX_NUM_CANDS - pcSlice->getMaxNumMergeCand(), "maxNumMergeCand");
1316#endif
1317}
1318
1319
1320Void TEncCavlc::codeTileMarkerFlag(TComSlice* pcSlice) 
1321{
1322  Bool bEntropySlice = (!pcSlice->isNextSlice());
1323  if (!bEntropySlice)
1324  {
1325    xWriteFlag  (pcSlice->getTileMarkerFlag() ? 1 : 0 );
1326  }
1327}
1328
1329/**
1330 - write wavefront substreams sizes for the slice header.
1331 .
1332 \param pcSlice Where we find the substream size information.
1333 */
1334#if TILES_WPP_ENTRY_POINT_SIGNALLING
1335Void  TEncCavlc::codeTilesWPPEntryPoint( TComSlice* pSlice )
1336{
1337  Int tilesOrEntropyCodingSyncIdc = pSlice->getSPS()->getTilesOrEntropyCodingSyncIdc();
1338
1339  if ( tilesOrEntropyCodingSyncIdc == 0 )
1340  {
1341    return;
1342  }
1343
1344  UInt numEntryPointOffsets = 0, offsetLenMinus1 = 0, maxOffset = 0;
1345  UInt *entryPointOffset = NULL;
1346  if (tilesOrEntropyCodingSyncIdc == 1) // tiles
1347  {
1348    numEntryPointOffsets = pSlice->getTileLocationCount();
1349    entryPointOffset     = new UInt[numEntryPointOffsets];
1350    for (Int idx=0; idx<pSlice->getTileLocationCount(); idx++)
1351    {
1352      if ( idx == 0 )
1353      {
1354        entryPointOffset [ idx ] = pSlice->getTileLocation( 0 );
1355      }
1356      else
1357      {
1358        entryPointOffset [ idx ] = pSlice->getTileLocation( idx ) - pSlice->getTileLocation( idx-1 );
1359      }
1360
1361      if ( entryPointOffset[ idx ] > maxOffset )
1362      {
1363        maxOffset = entryPointOffset[ idx ];
1364      }
1365    }
1366  }
1367  else if (tilesOrEntropyCodingSyncIdc == 2) // wavefront
1368  {
1369    Int  numZeroSubstreamsAtEndOfSlice  = 0;
1370    UInt* pSubstreamSizes               = pSlice->getSubstreamSizes();
1371    // Find number of zero substreams at the end of slice
1372    for (Int idx=pSlice->getPPS()->getNumSubstreams()-2; idx>=0; idx--)
1373    {
1374      if ( pSubstreamSizes[ idx ] ==  0 )
1375      {
1376        numZeroSubstreamsAtEndOfSlice++; 
1377      }
1378      else
1379      {
1380        break;
1381      }
1382    }
1383    numEntryPointOffsets       = pSlice->getPPS()->getNumSubstreams() - 1 - numZeroSubstreamsAtEndOfSlice;
1384    entryPointOffset           = new UInt[numEntryPointOffsets];
1385    for (Int idx=0; idx<numEntryPointOffsets; idx++)
1386    {
1387      entryPointOffset[ idx ] = ( pSubstreamSizes[ idx ] >> 3 ) ;
1388      if ( entryPointOffset[ idx ] > maxOffset )
1389      {
1390        maxOffset = entryPointOffset[ idx ];
1391      }
1392    }
1393  }
1394
1395  maxOffset += ((m_pcBitIf->getNumberOfWrittenBits() + 16) >> 3) + 8 + 2; // allowing for NALU header, slice header, bytes added for "offset_len_minus1" and "num_entry_point_offsets"
1396
1397  // Determine number of bits "offsetLenMinus1+1" required for entry point information
1398  offsetLenMinus1 = 0;
1399  while (1)
1400  {
1401    if (maxOffset >= (1 << offsetLenMinus1) )
1402    {
1403      offsetLenMinus1++;
1404      if ( offsetLenMinus1 > 32 )
1405      {
1406        FATAL_ERROR_0("exceeded 32-bits", -1);
1407      }
1408    }
1409    else
1410    {
1411      break;
1412    }
1413  }
1414
1415  WRITE_UVLC(numEntryPointOffsets, "num_entry_point_offsets");
1416  if (numEntryPointOffsets>0)
1417  {
1418    WRITE_UVLC(offsetLenMinus1, "offset_len_minus1");
1419  }
1420
1421  for (UInt idx=0; idx<numEntryPointOffsets; idx++)
1422  {
1423    if ( idx == 0 )
1424    {
1425      // Adding sizes of NALU header and slice header information to entryPointOffset[ 0 ]
1426      Int bitDistFromNALUHdrStart    = m_pcBitIf->getNumberOfWrittenBits() + 16;
1427      entryPointOffset[ idx ] += ( bitDistFromNALUHdrStart + numEntryPointOffsets*(offsetLenMinus1+1) ) >> 3;
1428    }
1429    WRITE_CODE(entryPointOffset[ idx ], offsetLenMinus1+1, "entry_point_offset");
1430  }
1431
1432  delete [] entryPointOffset;
1433}
1434#else
1435Void TEncCavlc::codeSliceHeaderSubstreamTable( TComSlice* pcSlice )
1436{
1437  UInt uiNumSubstreams = pcSlice->getPPS()->getNumSubstreams();
1438  UInt*puiSubstreamSizes = pcSlice->getSubstreamSizes();
1439
1440  // Write header information for all substreams except the last.
1441  for (UInt ui = 0; ui+1 < uiNumSubstreams; ui++)
1442  {
1443    UInt uiNumbits = puiSubstreamSizes[ui];
1444
1445    //the 2 first bits are used to give the size of the header
1446    if ( uiNumbits < (1<<8) )
1447    {
1448      xWriteCode(0,         2  );
1449      xWriteCode(uiNumbits, 8  );
1450    }
1451    else if ( uiNumbits < (1<<16) )
1452    {
1453      xWriteCode(1,         2  );
1454      xWriteCode(uiNumbits, 16 );
1455    }
1456    else if ( uiNumbits < (1<<24) )
1457    {
1458      xWriteCode(2,         2  );
1459      xWriteCode(uiNumbits, 24 );
1460    }
1461    else if ( uiNumbits < (1<<31) )
1462    {
1463      xWriteCode(3,         2  );
1464      xWriteCode(uiNumbits, 32 );
1465    }
1466    else
1467    {
1468      printf("Error in codeSliceHeaderTable\n");
1469      exit(-1);
1470    }
1471  }
1472}
1473#endif
1474
1475Void TEncCavlc::codeTerminatingBit      ( UInt uilsLast )
1476{
1477}
1478
1479Void TEncCavlc::codeSliceFinish ()
1480{
1481}
1482
1483#if HHI_INTER_VIEW_MOTION_PRED
1484Void TEncCavlc::codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList, Int iNum )
1485#else
1486Void TEncCavlc::codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
1487#endif
1488{
1489  assert(0);
1490}
1491
1492Void TEncCavlc::codePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1493{
1494  assert(0);
1495}
1496
1497Void TEncCavlc::codePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx )
1498{
1499  assert(0);
1500}
1501
1502Void TEncCavlc::codeMergeFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx )
1503{
1504  assert(0);
1505}
1506
1507Void TEncCavlc::codeMergeIndex    ( TComDataCU* pcCU, UInt uiAbsPartIdx )
1508{
1509  assert(0);
1510}
1511
1512#if HHI_INTER_VIEW_RESIDUAL_PRED
1513Void
1514TEncCavlc::codeResPredFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
1515{
1516  assert(0);
1517}
1518#endif
1519
1520Void TEncCavlc::codeAlfCtrlFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
1521{ 
1522  if (!m_bAlfCtrl)
1523  {
1524    return;
1525  }
1526 
1527  if( pcCU->getDepth(uiAbsPartIdx) > m_uiMaxAlfCtrlDepth && !pcCU->isFirstAbsZorderIdxInDepth(uiAbsPartIdx, m_uiMaxAlfCtrlDepth))
1528  {
1529    return;
1530  }
1531 
1532  // get context function is here
1533  UInt uiSymbol = pcCU->getAlfCtrlFlag( uiAbsPartIdx ) ? 1 : 0;
1534 
1535  xWriteFlag( uiSymbol );
1536}
1537
1538Void TEncCavlc::codeApsExtensionFlag ()
1539{
1540  WRITE_FLAG(0, "aps_extension_flag");
1541}
1542
1543Void TEncCavlc::codeAlfCtrlDepth()
1544{ 
1545  if (!m_bAlfCtrl)
1546  {
1547    return;
1548  }
1549 
1550  UInt uiDepth = m_uiMaxAlfCtrlDepth;
1551 
1552  xWriteUvlc(uiDepth);
1553}
1554
1555Void TEncCavlc::codeInterModeFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiEncMode )
1556{
1557  assert(0);
1558}
1559
1560Void TEncCavlc::codeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
1561{
1562  assert(0);
1563}
1564
1565#if LGE_ILLUCOMP_B0045
1566Void TEncCavlc::codeICFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
1567{
1568  assert(0);
1569}
1570#endif
1571
1572Void TEncCavlc::codeSplitFlag   ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1573{
1574  assert(0);
1575}
1576
1577Void TEncCavlc::codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx )
1578{
1579  assert(0);
1580}
1581
1582Void TEncCavlc::codeQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth )
1583{
1584  assert(0);
1585}
1586
1587Void TEncCavlc::codeQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx )
1588{
1589  assert(0);
1590}
1591
1592#if BURST_IPCM
1593/** Code I_PCM information.
1594 * \param pcCU pointer to CU
1595 * \param uiAbsPartIdx CU index
1596 * \param numIPCM the number of succesive IPCM blocks with the same size
1597 * \param firstIPCMFlag
1598 * \returns Void
1599 */
1600Void TEncCavlc::codeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx, Int numIPCM, Bool firstIPCMFlag)
1601{
1602  assert(0);
1603}
1604#else
1605/** Code I_PCM information.
1606 * \param pcCU pointer to CU
1607 * \param uiAbsPartIdx CU index
1608 * \returns Void
1609 *
1610 * If I_PCM flag indicates that the CU is I_PCM, code its PCM alignment bits and codes. 
1611 */
1612Void TEncCavlc::codeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx)
1613{
1614  UInt uiIPCM = (pcCU->getIPCMFlag(uiAbsPartIdx) == true)? 1 : 0;
1615
1616  xWriteFlag(uiIPCM);
1617
1618  if (uiIPCM)
1619  {
1620    xWritePCMAlignZero();
1621
1622    UInt uiMinCoeffSize = pcCU->getPic()->getMinCUWidth()*pcCU->getPic()->getMinCUHeight();
1623    UInt uiLumaOffset   = uiMinCoeffSize*uiAbsPartIdx;
1624    UInt uiChromaOffset = uiLumaOffset>>2;
1625
1626    Pel* piPCMSample;
1627    UInt uiWidth;
1628    UInt uiHeight;
1629    UInt uiSampleBits;
1630    UInt uiX, uiY;
1631
1632    piPCMSample = pcCU->getPCMSampleY() + uiLumaOffset;
1633    uiWidth = pcCU->getWidth(uiAbsPartIdx);
1634    uiHeight = pcCU->getHeight(uiAbsPartIdx);
1635    uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthLuma();
1636
1637    for(uiY = 0; uiY < uiHeight; uiY++)
1638    {
1639      for(uiX = 0; uiX < uiWidth; uiX++)
1640      {
1641        UInt uiSample = piPCMSample[uiX];
1642
1643        xWriteCode(uiSample, uiSampleBits);
1644      }
1645      piPCMSample += uiWidth;
1646    }
1647
1648    piPCMSample = pcCU->getPCMSampleCb() + uiChromaOffset;
1649    uiWidth = pcCU->getWidth(uiAbsPartIdx)/2;
1650    uiHeight = pcCU->getHeight(uiAbsPartIdx)/2;
1651    uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
1652
1653    for(uiY = 0; uiY < uiHeight; uiY++)
1654    {
1655      for(uiX = 0; uiX < uiWidth; uiX++)
1656      {
1657        UInt uiSample = piPCMSample[uiX];
1658
1659        xWriteCode(uiSample, uiSampleBits);
1660      }
1661      piPCMSample += uiWidth;
1662    }
1663
1664    piPCMSample = pcCU->getPCMSampleCr() + uiChromaOffset;
1665    uiWidth = pcCU->getWidth(uiAbsPartIdx)/2;
1666    uiHeight = pcCU->getHeight(uiAbsPartIdx)/2;
1667    uiSampleBits = pcCU->getSlice()->getSPS()->getPCMBitDepthChroma();
1668
1669    for(uiY = 0; uiY < uiHeight; uiY++)
1670    {
1671      for(uiX = 0; uiX < uiWidth; uiX++)
1672      {
1673        UInt uiSample = piPCMSample[uiX];
1674
1675        xWriteCode(uiSample, uiSampleBits);
1676      }
1677      piPCMSample += uiWidth;
1678    }
1679  }
1680}
1681#endif
1682
1683Void TEncCavlc::codeIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx )
1684{
1685  assert(0);
1686}
1687
1688Void TEncCavlc::codeIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx )
1689{
1690  assert(0);
1691}
1692
1693Void TEncCavlc::codeInterDir( TComDataCU* pcCU, UInt uiAbsPartIdx )
1694{
1695  assert(0);
1696}
1697
1698Void TEncCavlc::codeRefFrmIdx( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
1699{
1700  assert(0);
1701}
1702
1703Void TEncCavlc::codeMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
1704{
1705  assert(0);
1706}
1707
1708Void TEncCavlc::codeDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx )
1709{
1710  Int iDQp  = pcCU->getQP( uiAbsPartIdx ) - pcCU->getRefQP( uiAbsPartIdx );
1711
1712#if H0736_AVC_STYLE_QP_RANGE
1713  Int qpBdOffsetY =  pcCU->getSlice()->getSPS()->getQpBDOffsetY();
1714  iDQp = (iDQp + 78 + qpBdOffsetY + (qpBdOffsetY/2)) % (52 + qpBdOffsetY) - 26 - (qpBdOffsetY/2);
1715#endif
1716
1717  xWriteSvlc( iDQp );
1718 
1719  return;
1720}
1721
1722Void TEncCavlc::codeCoeffNxN    ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType )
1723{
1724  assert(0);
1725}
1726
1727Void TEncCavlc::codeAlfFlag( UInt uiCode )
1728{ 
1729  xWriteFlag( uiCode );
1730}
1731
1732Void TEncCavlc::codeAlfCtrlFlag( UInt uiSymbol )
1733{
1734  xWriteFlag( uiSymbol );
1735}
1736
1737Void TEncCavlc::codeAlfUvlc( UInt uiCode )
1738{
1739  xWriteUvlc( uiCode );
1740}
1741
1742Void TEncCavlc::codeAlfSvlc( Int iCode )
1743{
1744  xWriteSvlc( iCode );
1745}
1746#if LCU_SYNTAX_ALF
1747/** Code the fixed length code (smaller than one max value) in OSALF
1748 * \param idx:  coded value
1749 * \param maxValue: max value
1750 */
1751Void TEncCavlc::codeAlfFixedLengthIdx( UInt idx, UInt maxValue)
1752{
1753  UInt length = 0;
1754  assert(idx<=maxValue);
1755
1756  UInt temp = maxValue;
1757  for(UInt i=0; i<32; i++)
1758  {
1759    if(temp&0x1)
1760    {
1761      length = i+1;
1762    }
1763    temp = (temp >> 1);
1764  }
1765
1766  if(length)
1767  {
1768    xWriteCode( idx, length );
1769  }
1770}
1771#endif
1772
1773Void TEncCavlc::codeSaoFlag( UInt uiCode )
1774{
1775  xWriteFlag( uiCode );
1776}
1777
1778Void TEncCavlc::codeSaoUvlc( UInt uiCode )
1779{
1780    xWriteUvlc( uiCode );
1781}
1782
1783Void TEncCavlc::codeSaoSvlc( Int iCode )
1784{
1785    xWriteSvlc( iCode );
1786}
1787#if SAO_UNIT_INTERLEAVING
1788/** Code SAO run.
1789 * \param uiCode
1790 * \param maxValue
1791 */
1792Void TEncCavlc::codeSaoRun( UInt uiCode, UInt maxValue)
1793{
1794  UInt uiLength = 0;
1795  if (!maxValue)
1796  {
1797    return;
1798  }
1799  assert(uiCode<=maxValue);             
1800
1801  for(UInt i=0; i<32; i++)                                     
1802  {                                                           
1803    if(maxValue&0x1)                                               
1804    {                                                         
1805      uiLength = i+1;                                         
1806    }                                                         
1807    maxValue = (maxValue >> 1);                                       
1808  }
1809  WRITE_CODE( uiCode, uiLength, "sao_run_diff");
1810}
1811#endif
1812
1813Void TEncCavlc::estBit( estBitsSbacStruct* pcEstBitsCabac, Int width, Int height, TextType eTType )
1814{
1815  // printf("error : no VLC mode support in this version\n");
1816  return;
1817}
1818
1819// ====================================================================================================================
1820// Protected member functions
1821// ====================================================================================================================
1822
1823Void TEncCavlc::xWriteCode     ( UInt uiCode, UInt uiLength )
1824{
1825  assert ( uiLength > 0 );
1826  m_pcBitIf->write( uiCode, uiLength );
1827}
1828
1829Void TEncCavlc::xWriteUvlc     ( UInt uiCode )
1830{
1831  UInt uiLength = 1;
1832  UInt uiTemp = ++uiCode;
1833 
1834  assert ( uiTemp );
1835 
1836  while( 1 != uiTemp )
1837  {
1838    uiTemp >>= 1;
1839    uiLength += 2;
1840  }
1841 
1842  //m_pcBitIf->write( uiCode, uiLength );
1843  // Take care of cases where uiLength > 32
1844  m_pcBitIf->write( 0, uiLength >> 1);
1845  m_pcBitIf->write( uiCode, (uiLength+1) >> 1);
1846}
1847
1848Void TEncCavlc::xWriteSvlc     ( Int iCode )
1849{
1850  UInt uiCode;
1851 
1852  uiCode = xConvertToUInt( iCode );
1853  xWriteUvlc( uiCode );
1854}
1855
1856Void TEncCavlc::xWriteFlag( UInt uiCode )
1857{
1858  m_pcBitIf->write( uiCode, 1 );
1859}
1860
1861/** Write PCM alignment bits.
1862 * \returns Void
1863 */
1864Void  TEncCavlc::xWritePCMAlignZero    ()
1865{
1866  m_pcBitIf->writeAlignZero();
1867}
1868
1869Void TEncCavlc::xWriteUnaryMaxSymbol( UInt uiSymbol, UInt uiMaxSymbol )
1870{
1871  if (uiMaxSymbol == 0)
1872  {
1873    return;
1874  }
1875  xWriteFlag( uiSymbol ? 1 : 0 );
1876  if ( uiSymbol == 0 )
1877  {
1878    return;
1879  }
1880 
1881  Bool bCodeLast = ( uiMaxSymbol > uiSymbol );
1882 
1883  while( --uiSymbol )
1884  {
1885    xWriteFlag( 1 );
1886  }
1887  if( bCodeLast )
1888  {
1889    xWriteFlag( 0 );
1890  }
1891  return;
1892}
1893
1894Void TEncCavlc::xWriteExGolombLevel( UInt uiSymbol )
1895{
1896  if( uiSymbol )
1897  {
1898    xWriteFlag( 1 );
1899    UInt uiCount = 0;
1900    Bool bNoExGo = (uiSymbol < 13);
1901   
1902    while( --uiSymbol && ++uiCount < 13 )
1903    {
1904      xWriteFlag( 1 );
1905    }
1906    if( bNoExGo )
1907    {
1908      xWriteFlag( 0 );
1909    }
1910    else
1911    {
1912      xWriteEpExGolomb( uiSymbol, 0 );
1913    }
1914  }
1915  else
1916  {
1917    xWriteFlag( 0 );
1918  }
1919  return;
1920}
1921
1922Void TEncCavlc::xWriteEpExGolomb( UInt uiSymbol, UInt uiCount )
1923{
1924  while( uiSymbol >= (UInt)(1<<uiCount) )
1925  {
1926    xWriteFlag( 1 );
1927    uiSymbol -= 1<<uiCount;
1928    uiCount  ++;
1929  }
1930  xWriteFlag( 0 );
1931  while( uiCount-- )
1932  {
1933    xWriteFlag( (uiSymbol>>uiCount) & 1 );
1934  }
1935  return;
1936}
1937
1938/** code explicit wp tables
1939 * \param TComSlice* pcSlice
1940 * \returns Void
1941 */
1942Void TEncCavlc::xCodePredWeightTable( TComSlice* pcSlice )
1943{
1944  wpScalingParam  *wp;
1945  Bool            bChroma     = true; // color always present in HEVC ?
1946  Int             iNbRef       = (pcSlice->getSliceType() == B_SLICE ) ? (2) : (1);
1947  Bool            bDenomCoded  = false;
1948
1949  UInt            uiMode = 0;
1950  if ( (pcSlice->getSliceType()==P_SLICE && pcSlice->getPPS()->getUseWP()) || (pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag()==0 ) )
1951    uiMode = 1; // explicit
1952  else if ( pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPredIdc()==2 )
1953    uiMode = 2; // implicit (does not use this mode in this syntax)
1954  if (pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPredIdc()==1 && pcSlice->getRefPicListCombinationFlag())
1955    uiMode = 3; // combined explicit
1956  if(uiMode == 1)
1957  {
1958    for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) 
1959    {
1960      RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
1961      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1962      {
1963        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1964        if ( !bDenomCoded ) 
1965        {
1966          Int iDeltaDenom;
1967          WRITE_UVLC( wp[0].uiLog2WeightDenom, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
1968
1969          if( bChroma )
1970          {
1971            iDeltaDenom = (wp[1].uiLog2WeightDenom - wp[0].uiLog2WeightDenom);
1972            WRITE_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );       // se(v): delta_chroma_log2_weight_denom
1973          }
1974          bDenomCoded = true;
1975        }
1976
1977        WRITE_FLAG( wp[0].bPresentFlag, "luma_weight_lX_flag" );               // u(1): luma_weight_lX_flag
1978
1979        if ( wp[0].bPresentFlag ) 
1980        {
1981          Int iDeltaWeight = (wp[0].iWeight - (1<<wp[0].uiLog2WeightDenom));
1982          WRITE_SVLC( iDeltaWeight, "delta_luma_weight_lX" );                  // se(v): delta_luma_weight_lX
1983          WRITE_SVLC( wp[0].iOffset, "luma_offset_lX" );                       // se(v): luma_offset_lX
1984        }
1985
1986        if ( bChroma ) 
1987        {
1988          WRITE_FLAG( wp[1].bPresentFlag, "chroma_weight_lX_flag" );           // u(1): chroma_weight_lX_flag
1989
1990          if ( wp[1].bPresentFlag )
1991          {
1992            for ( Int j=1 ; j<3 ; j++ ) 
1993            {
1994              Int iDeltaWeight = (wp[j].iWeight - (1<<wp[1].uiLog2WeightDenom));
1995              WRITE_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );            // se(v): delta_chroma_weight_lX
1996
1997              Int iDeltaChroma = (wp[j].iOffset + ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) - (g_uiIBDI_MAX>>1));
1998              WRITE_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );            // se(v): delta_chroma_offset_lX
1999            }
2000          }
2001        }
2002      }
2003    }
2004  }
2005  else if (uiMode == 3)
2006  {
2007    for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(REF_PIC_LIST_C) ; iRefIdx++ ) 
2008    {
2009      RefPicList  eRefPicList = (RefPicList)pcSlice->getListIdFromIdxOfLC(iRefIdx);
2010      Int iCombRefIdx = pcSlice->getRefIdxFromIdxOfLC(iRefIdx);
2011
2012      pcSlice->getWpScaling(eRefPicList, iCombRefIdx, wp);
2013      if ( !bDenomCoded ) 
2014      {
2015        Int iDeltaDenom;
2016        WRITE_UVLC( wp[0].uiLog2WeightDenom, "luma_log2_weight_denom" );       // ue(v): luma_log2_weight_denom
2017
2018        if( bChroma )
2019        {
2020          iDeltaDenom = (wp[1].uiLog2WeightDenom - wp[0].uiLog2WeightDenom);
2021          WRITE_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );         // se(v): delta_chroma_log2_weight_denom
2022        }
2023        bDenomCoded = true;
2024      }
2025
2026      WRITE_FLAG( wp[0].bPresentFlag, "luma_weight_lc_flag" );                 // u(1): luma_weight_lc_flag
2027
2028      if ( wp[0].bPresentFlag ) 
2029      {
2030        Int iDeltaWeight = (wp[0].iWeight - (1<<wp[0].uiLog2WeightDenom));
2031        WRITE_SVLC( iDeltaWeight, "delta_luma_weight_lc" );                    // se(v): delta_luma_weight_lc
2032        WRITE_SVLC( wp[0].iOffset, "luma_offset_lc" );                         // se(v): luma_offset_lc
2033      }
2034      if ( bChroma ) 
2035      {
2036        WRITE_FLAG( wp[1].bPresentFlag, "chroma_weight_lc_flag" );             // u(1): luma_weight_lc_flag
2037
2038        if ( wp[1].bPresentFlag )
2039        {
2040          for ( Int j=1 ; j<3 ; j++ ) 
2041          {
2042            Int iDeltaWeight = (wp[j].iWeight - (1<<wp[1].uiLog2WeightDenom));
2043            WRITE_SVLC( iDeltaWeight, "delta_chroma_weight_lc" );              // se(v): delta_chroma_weight_lc
2044
2045            Int iDeltaChroma = (wp[j].iOffset + ( ( (g_uiIBDI_MAX>>1)*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) - (g_uiIBDI_MAX>>1));
2046            WRITE_SVLC( iDeltaChroma, "delta_chroma_offset_lc" );              // se(v): delta_chroma_offset_lc
2047          }
2048        }
2049      }
2050    }
2051  }
2052}
2053
2054/** code quantization matrix
2055 *  \param scalingList quantization matrix information
2056 */
2057Void TEncCavlc::codeScalingList( TComScalingList* scalingList )
2058{
2059  UInt listId,sizeId;
2060  Bool scalingListPredModeFlag;
2061
2062#if SCALING_LIST_OUTPUT_RESULT
2063  Int startBit;
2064  Int startTotalBit;
2065  startBit = m_pcBitIf->getNumberOfWrittenBits();
2066  startTotalBit = m_pcBitIf->getNumberOfWrittenBits();
2067#endif
2068
2069  WRITE_FLAG( scalingList->getScalingListPresentFlag (), "scaling_list_present_flag" );
2070
2071  if(scalingList->getScalingListPresentFlag () == false)
2072  {
2073#if SCALING_LIST_OUTPUT_RESULT
2074    printf("Header Bit %d\n",m_pcBitIf->getNumberOfWrittenBits()-startBit);
2075#endif
2076    //for each size
2077    for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
2078    {
2079      for(listId = 0; listId < g_scalingListNum[sizeId]; listId++)
2080      {
2081#if SCALING_LIST_OUTPUT_RESULT
2082        startBit = m_pcBitIf->getNumberOfWrittenBits();
2083#endif
2084        scalingListPredModeFlag = scalingList->checkPredMode( sizeId, listId );
2085        WRITE_FLAG( scalingListPredModeFlag, "scaling_list_pred_mode_flag" );
2086        if(!scalingListPredModeFlag)// Copy Mode
2087        {
2088          WRITE_UVLC( (Int)listId - (Int)scalingList->getRefMatrixId (sizeId,listId) - 1, "scaling_list_pred_matrix_id_delta");
2089        }
2090        else// DPCM Mode
2091        {
2092          xCodeScalingList(scalingList, sizeId, listId);
2093        }
2094#if SCALING_LIST_OUTPUT_RESULT
2095        printf("Matrix [%d][%d] Bit %d\n",sizeId,listId,m_pcBitIf->getNumberOfWrittenBits() - startBit);
2096#endif
2097      }
2098    }
2099  }
2100#if SCALING_LIST_OUTPUT_RESULT
2101  else
2102  {
2103    printf("Header Bit %d\n",m_pcBitIf->getNumberOfWrittenBits()-startTotalBit);
2104  }
2105  printf("Total Bit %d\n",m_pcBitIf->getNumberOfWrittenBits()-startTotalBit);
2106#endif
2107  return;
2108}
2109/** code DPCM
2110 * \param scalingList quantization matrix information
2111 * \param sizeIdc size index
2112 * \param listIdc list index
2113 */
2114Void TEncCavlc::xCodeScalingList(TComScalingList* scalingList, UInt sizeId, UInt listId)
2115{
2116#if SCALING_LIST
2117  Int coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
2118  UInt* scan    = g_auiFrameScanXY [ (sizeId == 0)? 1 : 2];
2119#else
2120  Int coefNum = (Int)g_scalingListSize[sizeId];
2121  UInt* scan    = g_auiFrameScanXY [ sizeId + 1];
2122#endif
2123  Int nextCoef = SCALING_LIST_START_VALUE;
2124  Int data;
2125  Int *src = scalingList->getScalingListAddress(sizeId, listId);
2126#if SCALING_LIST
2127  if(sizeId > SCALING_LIST_8x8 && scalingList->getUseDefaultScalingMatrixFlag(sizeId,listId))
2128  {
2129    WRITE_SVLC( -8, "scaling_list_dc_coef_minus8");
2130  }
2131  else if(sizeId < SCALING_LIST_16x16 && scalingList->getUseDefaultScalingMatrixFlag(sizeId,listId))
2132  {
2133    WRITE_SVLC( -8, "scaling_list_delta_coef");
2134  }
2135  else
2136  {
2137    if( sizeId > SCALING_LIST_8x8 )
2138    {
2139      WRITE_SVLC( scalingList->getScalingListDC(sizeId,listId) - 8, "scaling_list_dc_coef_minus8");
2140    }
2141    for(Int i=0;i<coefNum;i++)
2142    {
2143      data = src[scan[i]] - nextCoef;
2144      nextCoef = src[scan[i]];
2145      if(data > 127)
2146      {
2147        data = data - 256;
2148      }
2149      if(data < -128)
2150      {
2151        data = data + 256;
2152      }
2153
2154      WRITE_SVLC( data,  "scaling_list_delta_coef");
2155    }
2156  }
2157#else
2158  for(Int i=0;i<coefNum;i++)
2159  {
2160    data = src[scan[i]] - nextCoef;
2161    nextCoef = src[scan[i]];
2162    if(data > 127)
2163    {
2164      data = data - 256;
2165    }
2166    if(data < -128)
2167    {
2168      data = data + 256;
2169    }
2170
2171    WRITE_SVLC( data,  "delta_coef");
2172  }
2173#endif
2174}
2175Bool TComScalingList::checkPredMode(UInt sizeId, UInt listId)
2176{
2177  for(Int predListIdx = (Int)listId -1 ; predListIdx >= 0; predListIdx--)
2178  {
2179#if SCALING_LIST
2180    if( !memcmp(getScalingListAddress(sizeId,listId),getScalingListAddress(sizeId, predListIdx),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId])) // check value of matrix
2181     && ((sizeId < SCALING_LIST_16x16) || (getScalingListDC(sizeId,listId) == getScalingListDC(sizeId,predListIdx)))) // check DC value
2182#else
2183    if( !memcmp(getScalingListAddress(sizeId,listId),getScalingListAddress(sizeId, predListIdx),sizeof(Int)*(Int)g_scalingListSize[sizeId])) // check value of matrix
2184#endif
2185    {
2186      setRefMatrixId(sizeId, listId, predListIdx);
2187      return false;
2188    }
2189  }
2190  return true;
2191}
2192
2193#if RWTH_SDC_DLT_B0036
2194Void TEncCavlc::codeSDCFlag ( TComDataCU* pcCU, UInt uiAbsPartIdx )
2195{
2196  assert(0);
2197}
2198
2199Void TEncCavlc::codeSDCResidualData  ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiSegment )
2200{
2201  assert(0);
2202}
2203
2204Void TEncCavlc::codeSDCPredMode ( TComDataCU* pcCU, UInt uiAbsPartIdx )
2205{
2206  assert(0);
2207}
2208#endif
2209//! \}
Note: See TracBrowser for help on using the repository browser.