source: SHVCSoftware/branches/SHM-3.1-dev/source/Lib/TLibEncoder/TEncCavlc.cpp @ 392

Last change on this file since 392 was 389, checked in by qualcomm, 12 years ago

Signaling representation format in VPS (MACRO: REPN_FORMAT_IN_VPS)

Includes signaling of representation format - including picture resolution, bit depth, chroma format - in the VPS, with the option of updating them in the SPS. The configuration file has "RepFormatIdx%d" added to indicate for each layer which representation format is used. The rep_format() structures are automatically created by the encoder. If the bit depth and the chroma format are also changed across layers, some more configuration support would be needed.

From: Adarsh K. Ramasubramonian <aramasub@…>

  • Property svn:eol-style set to native
File size: 71.7 KB
Line 
1/* The copyright in this software is being made available under the BSD
2 * License, included below. This software may be subject to other third party
3 * and contributor rights, including patent rights, and no such rights are
4 * granted under this license. 
5 *
6 * Copyright (c) 2010-2013, 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
47Void  xTraceSPSHeader (TComSPS *pSPS)
48{
49  fprintf( g_hTrace, "=========== Sequence Parameter Set ID: %d ===========\n", pSPS->getSPSId() );
50}
51
52Void  xTracePPSHeader (TComPPS *pPPS)
53{
54  fprintf( g_hTrace, "=========== Picture Parameter Set ID: %d ===========\n", pPPS->getPPSId() );
55}
56
57Void  xTraceSliceHeader (TComSlice *pSlice)
58{
59  fprintf( g_hTrace, "=========== Slice ===========\n");
60}
61
62#endif
63
64
65
66// ====================================================================================================================
67// Constructor / destructor / create / destroy
68// ====================================================================================================================
69
70TEncCavlc::TEncCavlc()
71{
72  m_pcBitIf           = NULL;
73  m_uiCoeffCost       = 0;
74}
75
76TEncCavlc::~TEncCavlc()
77{
78}
79
80
81// ====================================================================================================================
82// Public member functions
83// ====================================================================================================================
84
85Void TEncCavlc::resetEntropy()
86{
87}
88
89
90Void TEncCavlc::codeDFFlag(UInt uiCode, const Char *pSymbolName)
91{
92  WRITE_FLAG(uiCode, pSymbolName);
93}
94Void TEncCavlc::codeDFSvlc(Int iCode, const Char *pSymbolName)
95{
96  WRITE_SVLC(iCode, pSymbolName);
97}
98
99Void TEncCavlc::codeShortTermRefPicSet( TComSPS* pcSPS, TComReferencePictureSet* rps, Bool calledFromSliceHeader, Int idx)
100{
101#if PRINT_RPS_INFO
102  Int lastBits = getNumberOfWrittenBits();
103#endif
104  if (idx > 0)
105  {
106  WRITE_FLAG( rps->getInterRPSPrediction(), "inter_ref_pic_set_prediction_flag" ); // inter_RPS_prediction_flag
107  }
108  if (rps->getInterRPSPrediction())
109  {
110    Int deltaRPS = rps->getDeltaRPS();
111    if(calledFromSliceHeader)
112    {
113      WRITE_UVLC( rps->getDeltaRIdxMinus1(), "delta_idx_minus1" ); // delta index of the Reference Picture Set used for prediction minus 1
114    }
115
116    WRITE_CODE( (deltaRPS >=0 ? 0: 1), 1, "delta_rps_sign" ); //delta_rps_sign
117    WRITE_UVLC( abs(deltaRPS) - 1, "abs_delta_rps_minus1"); // absolute delta RPS minus 1
118
119    for(Int j=0; j < rps->getNumRefIdc(); j++)
120    {
121      Int refIdc = rps->getRefIdc(j);
122      WRITE_CODE( (refIdc==1? 1: 0), 1, "used_by_curr_pic_flag" ); //first bit is "1" if Idc is 1
123      if (refIdc != 1) 
124      {
125        WRITE_CODE( refIdc>>1, 1, "use_delta_flag" ); //second bit is "1" if Idc is 2, "0" otherwise.
126      }
127    }
128  }
129  else
130  {
131    WRITE_UVLC( rps->getNumberOfNegativePictures(), "num_negative_pics" );
132    WRITE_UVLC( rps->getNumberOfPositivePictures(), "num_positive_pics" );
133    Int prev = 0;
134    for(Int j=0 ; j < rps->getNumberOfNegativePictures(); j++)
135    {
136      WRITE_UVLC( prev-rps->getDeltaPOC(j)-1, "delta_poc_s0_minus1" );
137      prev = rps->getDeltaPOC(j);
138      WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s0_flag"); 
139    }
140    prev = 0;
141    for(Int j=rps->getNumberOfNegativePictures(); j < rps->getNumberOfNegativePictures()+rps->getNumberOfPositivePictures(); j++)
142    {
143      WRITE_UVLC( rps->getDeltaPOC(j)-prev-1, "delta_poc_s1_minus1" );
144      prev = rps->getDeltaPOC(j);
145      WRITE_FLAG( rps->getUsed(j), "used_by_curr_pic_s1_flag" ); 
146    }
147  }
148
149#if PRINT_RPS_INFO
150  printf("irps=%d (%2d bits) ", rps->getInterRPSPrediction(), getNumberOfWrittenBits() - lastBits);
151  rps->printDeltaPOC();
152#endif
153}
154
155
156Void TEncCavlc::codePPS( TComPPS* pcPPS )
157{
158#if ENC_DEC_TRACE 
159  xTracePPSHeader (pcPPS);
160#endif
161 
162  WRITE_UVLC( pcPPS->getPPSId(),                             "pps_pic_parameter_set_id" );
163  WRITE_UVLC( pcPPS->getSPSId(),                             "pps_seq_parameter_set_id" );
164  WRITE_FLAG( pcPPS->getDependentSliceSegmentsEnabledFlag()    ? 1 : 0, "dependent_slice_segments_enabled_flag" );
165  WRITE_FLAG( pcPPS->getOutputFlagPresentFlag() ? 1 : 0,     "output_flag_present_flag" );
166  WRITE_CODE( pcPPS->getNumExtraSliceHeaderBits(), 3,        "num_extra_slice_header_bits");
167  WRITE_FLAG( pcPPS->getSignHideFlag(), "sign_data_hiding_flag" );
168  WRITE_FLAG( pcPPS->getCabacInitPresentFlag() ? 1 : 0,   "cabac_init_present_flag" );
169  WRITE_UVLC( pcPPS->getNumRefIdxL0DefaultActive()-1,     "num_ref_idx_l0_default_active_minus1");
170  WRITE_UVLC( pcPPS->getNumRefIdxL1DefaultActive()-1,     "num_ref_idx_l1_default_active_minus1");
171
172  WRITE_SVLC( pcPPS->getPicInitQPMinus26(),                  "init_qp_minus26");
173  WRITE_FLAG( pcPPS->getConstrainedIntraPred() ? 1 : 0,      "constrained_intra_pred_flag" );
174  WRITE_FLAG( pcPPS->getUseTransformSkip() ? 1 : 0,  "transform_skip_enabled_flag" ); 
175  WRITE_FLAG( pcPPS->getUseDQP() ? 1 : 0, "cu_qp_delta_enabled_flag" );
176  if ( pcPPS->getUseDQP() )
177  {
178    WRITE_UVLC( pcPPS->getMaxCuDQPDepth(), "diff_cu_qp_delta_depth" );
179  }
180  WRITE_SVLC( pcPPS->getChromaCbQpOffset(),                   "pps_cb_qp_offset" );
181  WRITE_SVLC( pcPPS->getChromaCrQpOffset(),                   "pps_cr_qp_offset" );
182  WRITE_FLAG( pcPPS->getSliceChromaQpFlag() ? 1 : 0,          "pps_slice_chroma_qp_offsets_present_flag" );
183
184  WRITE_FLAG( pcPPS->getUseWP() ? 1 : 0,  "weighted_pred_flag" );   // Use of Weighting Prediction (P_SLICE)
185  WRITE_FLAG( pcPPS->getWPBiPred() ? 1 : 0, "weighted_bipred_flag" );  // Use of Weighting Bi-Prediction (B_SLICE)
186  WRITE_FLAG( pcPPS->getTransquantBypassEnableFlag() ? 1 : 0, "transquant_bypass_enable_flag" );
187  WRITE_FLAG( pcPPS->getTilesEnabledFlag()             ? 1 : 0, "tiles_enabled_flag" );
188  WRITE_FLAG( pcPPS->getEntropyCodingSyncEnabledFlag() ? 1 : 0, "entropy_coding_sync_enabled_flag" );
189  if( pcPPS->getTilesEnabledFlag() )
190  {
191    WRITE_UVLC( pcPPS->getNumColumnsMinus1(),                                    "num_tile_columns_minus1" );
192    WRITE_UVLC( pcPPS->getNumRowsMinus1(),                                       "num_tile_rows_minus1" );
193    WRITE_FLAG( pcPPS->getUniformSpacingFlag(),                                  "uniform_spacing_flag" );
194    if( pcPPS->getUniformSpacingFlag() == 0 )
195    {
196      for(UInt i=0; i<pcPPS->getNumColumnsMinus1(); i++)
197      {
198        WRITE_UVLC( pcPPS->getColumnWidth(i)-1,                                  "column_width_minus1" );
199      }
200      for(UInt i=0; i<pcPPS->getNumRowsMinus1(); i++)
201      {
202        WRITE_UVLC( pcPPS->getRowHeight(i)-1,                                    "row_height_minus1" );
203      }
204    }
205    if(pcPPS->getNumColumnsMinus1() !=0 || pcPPS->getNumRowsMinus1() !=0)
206    {
207      WRITE_FLAG( pcPPS->getLoopFilterAcrossTilesEnabledFlag()?1 : 0,          "loop_filter_across_tiles_enabled_flag");
208    }
209  }
210  WRITE_FLAG( pcPPS->getLoopFilterAcrossSlicesEnabledFlag()?1 : 0,        "loop_filter_across_slices_enabled_flag");
211  WRITE_FLAG( pcPPS->getDeblockingFilterControlPresentFlag()?1 : 0,       "deblocking_filter_control_present_flag");
212  if(pcPPS->getDeblockingFilterControlPresentFlag())
213  {
214    WRITE_FLAG( pcPPS->getDeblockingFilterOverrideEnabledFlag() ? 1 : 0,  "deblocking_filter_override_enabled_flag" ); 
215    WRITE_FLAG( pcPPS->getPicDisableDeblockingFilterFlag() ? 1 : 0,       "pps_disable_deblocking_filter_flag" );
216    if(!pcPPS->getPicDisableDeblockingFilterFlag())
217    {
218      WRITE_SVLC( pcPPS->getDeblockingFilterBetaOffsetDiv2(),             "pps_beta_offset_div2" );
219      WRITE_SVLC( pcPPS->getDeblockingFilterTcOffsetDiv2(),               "pps_tc_offset_div2" );
220    }
221  }
222  WRITE_FLAG( pcPPS->getScalingListPresentFlag() ? 1 : 0,                          "pps_scaling_list_data_present_flag" ); 
223  if( pcPPS->getScalingListPresentFlag() )
224  {
225#if SCALING_LIST_OUTPUT_RESULT
226    printf("PPS\n");
227#endif
228    codeScalingList( m_pcSlice->getScalingList() );
229  }
230  WRITE_FLAG( pcPPS->getListsModificationPresentFlag(), "lists_modification_present_flag");
231  WRITE_UVLC( pcPPS->getLog2ParallelMergeLevelMinus2(), "log2_parallel_merge_level_minus2");
232  WRITE_FLAG( pcPPS->getSliceHeaderExtensionPresentFlag() ? 1 : 0, "slice_segment_header_extension_present_flag");
233  WRITE_FLAG( 0, "pps_extension_flag" );
234}
235
236Void TEncCavlc::codeVUI( TComVUI *pcVUI, TComSPS* pcSPS )
237{
238#if ENC_DEC_TRACE
239  fprintf( g_hTrace, "----------- vui_parameters -----------\n");
240#endif
241  WRITE_FLAG(pcVUI->getAspectRatioInfoPresentFlag(),            "aspect_ratio_info_present_flag");
242  if (pcVUI->getAspectRatioInfoPresentFlag())
243  {
244    WRITE_CODE(pcVUI->getAspectRatioIdc(), 8,                   "aspect_ratio_idc" );
245    if (pcVUI->getAspectRatioIdc() == 255)
246    {
247      WRITE_CODE(pcVUI->getSarWidth(), 16,                      "sar_width");
248      WRITE_CODE(pcVUI->getSarHeight(), 16,                     "sar_height");
249    }
250  }
251  WRITE_FLAG(pcVUI->getOverscanInfoPresentFlag(),               "overscan_info_present_flag");
252  if (pcVUI->getOverscanInfoPresentFlag())
253  {
254    WRITE_FLAG(pcVUI->getOverscanAppropriateFlag(),             "overscan_appropriate_flag");
255  }
256  WRITE_FLAG(pcVUI->getVideoSignalTypePresentFlag(),            "video_signal_type_present_flag");
257  if (pcVUI->getVideoSignalTypePresentFlag())
258  {
259    WRITE_CODE(pcVUI->getVideoFormat(), 3,                      "video_format");
260    WRITE_FLAG(pcVUI->getVideoFullRangeFlag(),                  "video_full_range_flag");
261    WRITE_FLAG(pcVUI->getColourDescriptionPresentFlag(),        "colour_description_present_flag");
262    if (pcVUI->getColourDescriptionPresentFlag())
263    {
264      WRITE_CODE(pcVUI->getColourPrimaries(), 8,                "colour_primaries");
265      WRITE_CODE(pcVUI->getTransferCharacteristics(), 8,        "transfer_characteristics");
266      WRITE_CODE(pcVUI->getMatrixCoefficients(), 8,             "matrix_coefficients");
267    }
268  }
269
270  WRITE_FLAG(pcVUI->getChromaLocInfoPresentFlag(),              "chroma_loc_info_present_flag");
271  if (pcVUI->getChromaLocInfoPresentFlag())
272  {
273    WRITE_UVLC(pcVUI->getChromaSampleLocTypeTopField(),         "chroma_sample_loc_type_top_field");
274    WRITE_UVLC(pcVUI->getChromaSampleLocTypeBottomField(),      "chroma_sample_loc_type_bottom_field");
275  }
276
277  WRITE_FLAG(pcVUI->getNeutralChromaIndicationFlag(),           "neutral_chroma_indication_flag");
278  WRITE_FLAG(pcVUI->getFieldSeqFlag(),                          "field_seq_flag");
279  WRITE_FLAG(pcVUI->getFrameFieldInfoPresentFlag(),             "frame_field_info_present_flag");
280
281  Window defaultDisplayWindow = pcVUI->getDefaultDisplayWindow();
282  WRITE_FLAG(defaultDisplayWindow.getWindowEnabledFlag(),       "default_display_window_flag");
283  if( defaultDisplayWindow.getWindowEnabledFlag() )
284  {
285    WRITE_UVLC(defaultDisplayWindow.getWindowLeftOffset(),      "def_disp_win_left_offset");
286    WRITE_UVLC(defaultDisplayWindow.getWindowRightOffset(),     "def_disp_win_right_offset");
287    WRITE_UVLC(defaultDisplayWindow.getWindowTopOffset(),       "def_disp_win_top_offset");
288    WRITE_UVLC(defaultDisplayWindow.getWindowBottomOffset(),    "def_disp_win_bottom_offset");
289  }
290  TimingInfo *timingInfo = pcVUI->getTimingInfo();
291  WRITE_FLAG(timingInfo->getTimingInfoPresentFlag(),          "vui_timing_info_present_flag");
292  if(timingInfo->getTimingInfoPresentFlag())
293  {
294    WRITE_CODE(timingInfo->getNumUnitsInTick(), 32,           "vui_num_units_in_tick");
295    WRITE_CODE(timingInfo->getTimeScale(),      32,           "vui_time_scale");
296    WRITE_FLAG(timingInfo->getPocProportionalToTimingFlag(),  "vui_poc_proportional_to_timing_flag");
297    if(timingInfo->getPocProportionalToTimingFlag())
298    {
299      WRITE_UVLC(timingInfo->getNumTicksPocDiffOneMinus1(),   "vui_num_ticks_poc_diff_one_minus1");
300    }
301  WRITE_FLAG(pcVUI->getHrdParametersPresentFlag(),              "hrd_parameters_present_flag");
302  if( pcVUI->getHrdParametersPresentFlag() )
303  {
304    codeHrdParameters(pcVUI->getHrdParameters(), 1, pcSPS->getMaxTLayers() - 1 );
305  }
306  }
307
308  WRITE_FLAG(pcVUI->getBitstreamRestrictionFlag(),              "bitstream_restriction_flag");
309  if (pcVUI->getBitstreamRestrictionFlag())
310  {
311    WRITE_FLAG(pcVUI->getTilesFixedStructureFlag(),             "tiles_fixed_structure_flag");
312#if M0464_TILE_BOUNDARY_ALIGNED_FLAG
313    if ( pcSPS->getLayerId() > 0 )
314    {
315      WRITE_FLAG( pcVUI->getTileBoundariesAlignedFlag( ) ? 1 : 0 , "tile_boundaries_aligned_flag" );
316    }
317#endif
318    WRITE_FLAG(pcVUI->getMotionVectorsOverPicBoundariesFlag(),  "motion_vectors_over_pic_boundaries_flag");
319    WRITE_FLAG(pcVUI->getRestrictedRefPicListsFlag(),           "restricted_ref_pic_lists_flag");
320    WRITE_UVLC(pcVUI->getMinSpatialSegmentationIdc(),           "min_spatial_segmentation_idc");
321    WRITE_UVLC(pcVUI->getMaxBytesPerPicDenom(),                 "max_bytes_per_pic_denom");
322    WRITE_UVLC(pcVUI->getMaxBitsPerMinCuDenom(),                "max_bits_per_mincu_denom");
323    WRITE_UVLC(pcVUI->getLog2MaxMvLengthHorizontal(),           "log2_max_mv_length_horizontal");
324    WRITE_UVLC(pcVUI->getLog2MaxMvLengthVertical(),             "log2_max_mv_length_vertical");
325  }
326}
327
328Void TEncCavlc::codeHrdParameters( TComHRD *hrd, Bool commonInfPresentFlag, UInt maxNumSubLayersMinus1 )
329{
330  if( commonInfPresentFlag )
331  {
332    WRITE_FLAG( hrd->getNalHrdParametersPresentFlag() ? 1 : 0 ,  "nal_hrd_parameters_present_flag" );
333    WRITE_FLAG( hrd->getVclHrdParametersPresentFlag() ? 1 : 0 ,  "vcl_hrd_parameters_present_flag" );
334    if( hrd->getNalHrdParametersPresentFlag() || hrd->getVclHrdParametersPresentFlag() )
335    {
336      WRITE_FLAG( hrd->getSubPicCpbParamsPresentFlag() ? 1 : 0,  "sub_pic_cpb_params_present_flag" );
337      if( hrd->getSubPicCpbParamsPresentFlag() )
338      {
339        WRITE_CODE( hrd->getTickDivisorMinus2(), 8,              "tick_divisor_minus2" );
340        WRITE_CODE( hrd->getDuCpbRemovalDelayLengthMinus1(), 5,  "du_cpb_removal_delay_length_minus1" );
341        WRITE_FLAG( hrd->getSubPicCpbParamsInPicTimingSEIFlag() ? 1 : 0, "sub_pic_cpb_params_in_pic_timing_sei_flag" );
342        WRITE_CODE( hrd->getDpbOutputDelayDuLengthMinus1(), 5,   "dpb_output_delay_du_length_minus1"  );
343      }
344      WRITE_CODE( hrd->getBitRateScale(), 4,                     "bit_rate_scale" );
345      WRITE_CODE( hrd->getCpbSizeScale(), 4,                     "cpb_size_scale" );
346      if( hrd->getSubPicCpbParamsPresentFlag() )
347      {
348        WRITE_CODE( hrd->getDuCpbSizeScale(), 4,                "du_cpb_size_scale" ); 
349      }
350      WRITE_CODE( hrd->getInitialCpbRemovalDelayLengthMinus1(), 5, "initial_cpb_removal_delay_length_minus1" );
351      WRITE_CODE( hrd->getCpbRemovalDelayLengthMinus1(),        5, "au_cpb_removal_delay_length_minus1" );
352      WRITE_CODE( hrd->getDpbOutputDelayLengthMinus1(),         5, "dpb_output_delay_length_minus1" );
353    }
354  }
355  Int i, j, nalOrVcl;
356  for( i = 0; i <= maxNumSubLayersMinus1; i ++ )
357  {
358    WRITE_FLAG( hrd->getFixedPicRateFlag( i ) ? 1 : 0,          "fixed_pic_rate_general_flag");
359    if( !hrd->getFixedPicRateFlag( i ) )
360    {
361      WRITE_FLAG( hrd->getFixedPicRateWithinCvsFlag( i ) ? 1 : 0, "fixed_pic_rate_within_cvs_flag");
362    }
363    else
364    {
365      hrd->setFixedPicRateWithinCvsFlag( i, true );
366    }
367    if( hrd->getFixedPicRateWithinCvsFlag( i ) )
368    {
369      WRITE_UVLC( hrd->getPicDurationInTcMinus1( i ),           "elemental_duration_in_tc_minus1");
370    }
371    else
372    {
373      WRITE_FLAG( hrd->getLowDelayHrdFlag( i ) ? 1 : 0,           "low_delay_hrd_flag");
374    }
375    if (!hrd->getLowDelayHrdFlag( i ))
376    {
377      WRITE_UVLC( hrd->getCpbCntMinus1( i ),                      "cpb_cnt_minus1");
378    }
379   
380    for( nalOrVcl = 0; nalOrVcl < 2; nalOrVcl ++ )
381    {
382      if( ( ( nalOrVcl == 0 ) && ( hrd->getNalHrdParametersPresentFlag() ) ) ||
383          ( ( nalOrVcl == 1 ) && ( hrd->getVclHrdParametersPresentFlag() ) ) )
384      {
385        for( j = 0; j <= ( hrd->getCpbCntMinus1( i ) ); j ++ )
386        {
387          WRITE_UVLC( hrd->getBitRateValueMinus1( i, j, nalOrVcl ), "bit_rate_value_minus1");
388          WRITE_UVLC( hrd->getCpbSizeValueMinus1( i, j, nalOrVcl ), "cpb_size_value_minus1");
389          if( hrd->getSubPicCpbParamsPresentFlag() )
390          {
391            WRITE_UVLC( hrd->getDuCpbSizeValueMinus1( i, j, nalOrVcl ), "cpb_size_du_value_minus1"); 
392            WRITE_UVLC( hrd->getDuBitRateValueMinus1( i, j, nalOrVcl ), "bit_rate_du_value_minus1");
393          }
394          WRITE_FLAG( hrd->getCbrFlag( i, j, nalOrVcl ) ? 1 : 0, "cbr_flag");
395        }
396      }
397    }
398  }
399}
400
401Void TEncCavlc::codeSPS( TComSPS* pcSPS )
402{
403#if ENC_DEC_TRACE 
404  xTraceSPSHeader (pcSPS);
405#endif
406  WRITE_CODE( pcSPS->getVPSId (),          4,       "sps_video_parameter_set_id" );
407#if SPS_SUB_LAYER_INFO
408  if(pcSPS->getLayerId() == 0)
409  {
410#endif
411    WRITE_CODE( pcSPS->getMaxTLayers() - 1,  3,       "sps_max_sub_layers_minus1" );
412    WRITE_FLAG( pcSPS->getTemporalIdNestingFlag() ? 1 : 0,                             "sps_temporal_id_nesting_flag" );
413#if SPS_SUB_LAYER_INFO
414  }
415#endif
416#ifdef SPS_PTL_FIX
417  if (pcSPS->getLayerId() == 0)
418  {
419    codePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
420  }
421#else
422  codePTL(pcSPS->getPTL(), 1, pcSPS->getMaxTLayers() - 1);
423#endif
424  WRITE_UVLC( pcSPS->getSPSId (),                   "sps_seq_parameter_set_id" );
425#if REPN_FORMAT_IN_VPS
426  if( pcSPS->getLayerId() > 0 )
427  {
428    WRITE_FLAG( pcSPS->getUpdateRepFormatFlag(), "update_rep_format_flag" );
429  }
430  if( pcSPS->getLayerId() == 0 || pcSPS->getUpdateRepFormatFlag() ) 
431  {
432#endif
433    WRITE_UVLC( pcSPS->getChromaFormatIdc (),         "chroma_format_idc" );
434    assert(pcSPS->getChromaFormatIdc () == 1);
435    // in the first version chroma_format_idc can only be equal to 1 (4:2:0)
436    if( pcSPS->getChromaFormatIdc () == 3 )
437    {
438      WRITE_FLAG( 0,                                  "separate_colour_plane_flag");
439    }
440
441    WRITE_UVLC( pcSPS->getPicWidthInLumaSamples (),   "pic_width_in_luma_samples" );
442    WRITE_UVLC( pcSPS->getPicHeightInLumaSamples(),   "pic_height_in_luma_samples" );
443#if REPN_FORMAT_IN_VPS
444  }
445#endif
446  Window conf = pcSPS->getConformanceWindow();
447
448  WRITE_FLAG( conf.getWindowEnabledFlag(),          "conformance_window_flag" );
449  if (conf.getWindowEnabledFlag())
450  {
451    WRITE_UVLC( conf.getWindowLeftOffset()   / TComSPS::getWinUnitX(pcSPS->getChromaFormatIdc() ), "conf_win_left_offset" );
452    WRITE_UVLC( conf.getWindowRightOffset()  / TComSPS::getWinUnitX(pcSPS->getChromaFormatIdc() ), "conf_win_right_offset" );
453    WRITE_UVLC( conf.getWindowTopOffset()    / TComSPS::getWinUnitY(pcSPS->getChromaFormatIdc() ), "conf_win_top_offset" );
454    WRITE_UVLC( conf.getWindowBottomOffset() / TComSPS::getWinUnitY(pcSPS->getChromaFormatIdc() ), "conf_win_bottom_offset" );
455  }
456
457#if REPN_FORMAT_IN_VPS
458  if( pcSPS->getLayerId() == 0 || pcSPS->getUpdateRepFormatFlag() ) 
459  {
460    assert( pcSPS->getBitDepthY() >= 8 );
461    assert( pcSPS->getBitDepthC() >= 8 );
462#endif
463    WRITE_UVLC( pcSPS->getBitDepthY() - 8,             "bit_depth_luma_minus8" );
464    WRITE_UVLC( pcSPS->getBitDepthC() - 8,             "bit_depth_chroma_minus8" );
465#if REPN_FORMAT_IN_VPS
466  }
467#endif
468  WRITE_UVLC( pcSPS->getBitsForPOC()-4,                 "log2_max_pic_order_cnt_lsb_minus4" );
469
470  const Bool subLayerOrderingInfoPresentFlag = 1;
471  WRITE_FLAG(subLayerOrderingInfoPresentFlag,       "sps_sub_layer_ordering_info_present_flag");
472  for(UInt i=0; i <= pcSPS->getMaxTLayers()-1; i++)
473  {
474    WRITE_UVLC( pcSPS->getMaxDecPicBuffering(i) - 1,       "sps_max_dec_pic_buffering_minus1[i]" );
475    WRITE_UVLC( pcSPS->getNumReorderPics(i),               "sps_num_reorder_pics[i]" );
476    WRITE_UVLC( pcSPS->getMaxLatencyIncrease(i),           "sps_max_latency_increase_plus1[i]" );
477    if (!subLayerOrderingInfoPresentFlag)
478    {
479      break;
480    }
481  }
482  assert( pcSPS->getMaxCUWidth() == pcSPS->getMaxCUHeight() );
483 
484  WRITE_UVLC( pcSPS->getLog2MinCodingBlockSize() - 3,                                "log2_min_coding_block_size_minus3" );
485  WRITE_UVLC( pcSPS->getLog2DiffMaxMinCodingBlockSize(),                             "log2_diff_max_min_coding_block_size" );
486  WRITE_UVLC( pcSPS->getQuadtreeTULog2MinSize() - 2,                                 "log2_min_transform_block_size_minus2" );
487  WRITE_UVLC( pcSPS->getQuadtreeTULog2MaxSize() - pcSPS->getQuadtreeTULog2MinSize(), "log2_diff_max_min_transform_block_size" );
488  WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthInter() - 1,                               "max_transform_hierarchy_depth_inter" );
489  WRITE_UVLC( pcSPS->getQuadtreeTUMaxDepthIntra() - 1,                               "max_transform_hierarchy_depth_intra" );
490  WRITE_FLAG( pcSPS->getScalingListFlag() ? 1 : 0,                                   "scaling_list_enabled_flag" ); 
491  if(pcSPS->getScalingListFlag())
492  {
493    WRITE_FLAG( pcSPS->getScalingListPresentFlag() ? 1 : 0,                          "sps_scaling_list_data_present_flag" ); 
494    if(pcSPS->getScalingListPresentFlag())
495    {
496#if SCALING_LIST_OUTPUT_RESULT
497    printf("SPS\n");
498#endif
499      codeScalingList( m_pcSlice->getScalingList() );
500    }
501  }
502  WRITE_FLAG( pcSPS->getUseAMP() ? 1 : 0,                                            "amp_enabled_flag" );
503  WRITE_FLAG( pcSPS->getUseSAO() ? 1 : 0,                                            "sample_adaptive_offset_enabled_flag");
504
505  WRITE_FLAG( pcSPS->getUsePCM() ? 1 : 0,                                            "pcm_enabled_flag");
506  if( pcSPS->getUsePCM() )
507  {
508    WRITE_CODE( pcSPS->getPCMBitDepthLuma() - 1, 4,                                  "pcm_sample_bit_depth_luma_minus1" );
509    WRITE_CODE( pcSPS->getPCMBitDepthChroma() - 1, 4,                                "pcm_sample_bit_depth_chroma_minus1" );
510    WRITE_UVLC( pcSPS->getPCMLog2MinSize() - 3,                                      "log2_min_pcm_luma_coding_block_size_minus3" );
511    WRITE_UVLC( pcSPS->getPCMLog2MaxSize() - pcSPS->getPCMLog2MinSize(),             "log2_diff_max_min_pcm_luma_coding_block_size" );
512    WRITE_FLAG( pcSPS->getPCMFilterDisableFlag()?1 : 0,                              "pcm_loop_filter_disable_flag");
513  }
514
515  assert( pcSPS->getMaxTLayers() > 0 );         
516
517  TComRPSList* rpsList = pcSPS->getRPSList();
518  TComReferencePictureSet*      rps;
519
520  WRITE_UVLC(rpsList->getNumberOfReferencePictureSets(), "num_short_term_ref_pic_sets" );
521  for(Int i=0; i < rpsList->getNumberOfReferencePictureSets(); i++)
522  {
523    rps = rpsList->getReferencePictureSet(i);
524    codeShortTermRefPicSet(pcSPS,rps,false, i);
525  }
526  WRITE_FLAG( pcSPS->getLongTermRefsPresent() ? 1 : 0,         "long_term_ref_pics_present_flag" );
527  if (pcSPS->getLongTermRefsPresent()) 
528  {
529    WRITE_UVLC(pcSPS->getNumLongTermRefPicSPS(), "num_long_term_ref_pic_sps" );
530    for (UInt k = 0; k < pcSPS->getNumLongTermRefPicSPS(); k++)
531    {
532      WRITE_CODE( pcSPS->getLtRefPicPocLsbSps(k), pcSPS->getBitsForPOC(), "lt_ref_pic_poc_lsb_sps");
533      WRITE_FLAG( pcSPS->getUsedByCurrPicLtSPSFlag(k), "used_by_curr_pic_lt_sps_flag");
534    }
535  }
536  WRITE_FLAG( pcSPS->getTMVPFlagsPresent()  ? 1 : 0,           "sps_temporal_mvp_enable_flag" );
537#if REF_IDX_MFM
538#if !M0457_COL_PICTURE_SIGNALING
539  if( pcSPS->getLayerId() > 0 )
540  {
541    WRITE_FLAG( pcSPS->getMFMEnabledFlag() ? 1 : 0,          "sps_enh_mfm_enable_flag" );
542  }
543#endif
544#endif
545  WRITE_FLAG( pcSPS->getUseStrongIntraSmoothing(),             "sps_strong_intra_smoothing_enable_flag" );
546
547  WRITE_FLAG( pcSPS->getVuiParametersPresentFlag(),             "vui_parameters_present_flag" );
548  if (pcSPS->getVuiParametersPresentFlag())
549  {
550      codeVUI(pcSPS->getVuiParameters(), pcSPS);
551  }
552
553#if SPS_EXTENSION
554  WRITE_FLAG( 1, "sps_extension_flag" );
555  if( 1 )   // if( sps_extension_flag )
556  {
557    codeSPSExtension( pcSPS );
558    WRITE_FLAG( 0, "sps_extension2_flag" );
559  }
560#else
561  WRITE_FLAG( 0, "sps_extension_flag" );
562#endif
563}
564#if SPS_EXTENSION
565Void TEncCavlc::codeSPSExtension( TComSPS* pcSPS )
566{
567  // more syntax elements to be written here
568#if SCALED_REF_LAYER_OFFSETS
569#if SCALED_REF_LAYER_OFFSET_FLAG
570  WRITE_FLAG( pcSPS->getLayerId() > 0, "scaled_ref_layer_offset_present_flag" );
571  if( pcSPS->getLayerId() > 0 )
572#else
573  if( pcSPS->getLayerId() > 0 )
574#endif
575  {
576    WRITE_UVLC( pcSPS->getNumScaledRefLayerOffsets(),      "num_scaled_ref_layer_offsets" );
577    for(Int i = 0; i < pcSPS->getNumScaledRefLayerOffsets(); i++)
578    {
579      Window scaledWindow = pcSPS->getScaledRefLayerWindow(i);
580      WRITE_SVLC( scaledWindow.getWindowLeftOffset()   >> 1, "scaled_ref_layer_left_offset" );
581      WRITE_SVLC( scaledWindow.getWindowTopOffset()    >> 1, "scaled_ref_layer_top_offset" );
582      WRITE_SVLC( scaledWindow.getWindowRightOffset()  >> 1, "scaled_ref_layer_right_offset" );
583      WRITE_SVLC( scaledWindow.getWindowBottomOffset() >> 1, "scaled_ref_layer_bottom_offset" );
584    }
585  }
586#endif
587#if M0463_VUI_EXT_ILP_REF
588  ////   sps_extension_vui_parameters( )
589  if( pcSPS->getVuiParameters()->getBitstreamRestrictionFlag() )
590  { 
591    WRITE_UVLC( pcSPS->getNumIlpRestrictedRefLayers( ),           "num_ilp_restricted_ref_layers" ); 
592    for( Int i = 0; i < pcSPS->getNumIlpRestrictedRefLayers( ); i++ ) 
593    { 
594      WRITE_UVLC( pcSPS->getMinSpatialSegmentOffsetPlus1( i ),    "min_spatial_segment_offset_plus1" ); 
595      if( pcSPS->getMinSpatialSegmentOffsetPlus1( i ) > 0 ) 
596      { 
597        WRITE_FLAG( pcSPS->getCtuBasedOffsetEnabledFlag( i ),      "ctu_based_offset_enabled_flag[ i ]"); 
598        if( pcSPS->getCtuBasedOffsetEnabledFlag( i ) ) 
599        {
600          WRITE_UVLC( pcSPS->getMinHorizontalCtuOffsetPlus1( i ), "min_horizontal_ctu_offset_plus1[ i ]"); 
601        }
602      } 
603    } 
604  } 
605  ////   sps_extension_vui_parameters( ) END
606#endif
607}
608#endif
609Void TEncCavlc::codeVPS( TComVPS* pcVPS )
610{
611  WRITE_CODE( pcVPS->getVPSId(),                    4,        "vps_video_parameter_set_id" );
612  WRITE_CODE( 3,                                    2,        "vps_reserved_three_2bits" );
613#if VPS_RENAME
614  WRITE_CODE( pcVPS->getMaxLayers() - 1,            6,        "vps_max_layers_minus1" );           
615#else
616  WRITE_CODE( 0,                                    6,        "vps_reserved_zero_6bits" );
617#endif
618  WRITE_CODE( pcVPS->getMaxTLayers() - 1,           3,        "vps_max_sub_layers_minus1" );
619  WRITE_FLAG( pcVPS->getTemporalNestingFlag(),                "vps_temporal_id_nesting_flag" );
620  assert (pcVPS->getMaxTLayers()>1||pcVPS->getTemporalNestingFlag());
621  WRITE_CODE( 0xffff,                              16,        "vps_reserved_ffff_16bits" );
622  codePTL( pcVPS->getPTL(), true, pcVPS->getMaxTLayers() - 1 );
623  const Bool subLayerOrderingInfoPresentFlag = 1;
624  WRITE_FLAG(subLayerOrderingInfoPresentFlag,              "vps_sub_layer_ordering_info_present_flag");
625  for(UInt i=0; i <= pcVPS->getMaxTLayers()-1; i++)
626  {
627    WRITE_UVLC( pcVPS->getMaxDecPicBuffering(i) - 1,       "vps_max_dec_pic_buffering_minus1[i]" );
628    WRITE_UVLC( pcVPS->getNumReorderPics(i),               "vps_num_reorder_pics[i]" );
629    WRITE_UVLC( pcVPS->getMaxLatencyIncrease(i),           "vps_max_latency_increase_plus1[i]" );
630    if (!subLayerOrderingInfoPresentFlag)
631    {
632      break;
633    }
634  }
635
636#if VPS_RENAME
637  assert( pcVPS->getNumHrdParameters() <= MAX_VPS_LAYER_SETS_PLUS1 );
638  assert( pcVPS->getMaxLayerId() < MAX_VPS_LAYER_ID_PLUS1 );
639#if !VPS_EXTN_OP_LAYER_SETS     // num layer sets set in TAppEncTop.cpp
640  pcVPS->setNumLayerSets(1);
641#endif
642  WRITE_CODE( pcVPS->getMaxLayerId(), 6,                       "vps_max_layer_id" );
643  WRITE_UVLC( pcVPS->getNumLayerSets() - 1,                 "vps_num_layer_sets_minus1" );
644  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getNumLayerSets() - 1 ); opsIdx ++ )
645  {
646    // Operation point set
647    for( UInt i = 0; i <= pcVPS->getMaxLayerId(); i ++ )
648#else
649  assert( pcVPS->getNumHrdParameters() <= MAX_VPS_NUM_HRD_PARAMETERS );
650  assert( pcVPS->getMaxNuhReservedZeroLayerId() < MAX_VPS_NUH_RESERVED_ZERO_LAYER_ID_PLUS1 );
651  WRITE_CODE( pcVPS->getMaxNuhReservedZeroLayerId(), 6,     "vps_max_nuh_reserved_zero_layer_id" );
652  pcVPS->setMaxOpSets(1);
653  WRITE_UVLC( pcVPS->getMaxOpSets() - 1,                    "vps_max_op_sets_minus1" );
654  for( UInt opsIdx = 1; opsIdx <= ( pcVPS->getMaxOpSets() - 1 ); opsIdx ++ )
655  {
656    // Operation point set
657    for( UInt i = 0; i <= pcVPS->getMaxNuhReservedZeroLayerId(); i ++ )
658#endif
659    {
660#if !VPS_EXTN_OP_LAYER_SETS     // layer Id include flag set in TAppEncTop.cpp
661      // Only applicable for version 1
662      pcVPS->setLayerIdIncludedFlag( true, opsIdx, i );
663#endif
664      WRITE_FLAG( pcVPS->getLayerIdIncludedFlag( opsIdx, i ) ? 1 : 0, "layer_id_included_flag[opsIdx][i]" );
665    }
666  }
667#if DERIVE_LAYER_ID_LIST_VARIABLES
668  pcVPS->deriveLayerIdListVariables();
669#endif
670  TimingInfo *timingInfo = pcVPS->getTimingInfo();
671  WRITE_FLAG(timingInfo->getTimingInfoPresentFlag(),          "vps_timing_info_present_flag");
672  if(timingInfo->getTimingInfoPresentFlag())
673  {
674    WRITE_CODE(timingInfo->getNumUnitsInTick(), 32,           "vps_num_units_in_tick");
675    WRITE_CODE(timingInfo->getTimeScale(),      32,           "vps_time_scale");
676    WRITE_FLAG(timingInfo->getPocProportionalToTimingFlag(),  "vps_poc_proportional_to_timing_flag");
677    if(timingInfo->getPocProportionalToTimingFlag())
678    {
679      WRITE_UVLC(timingInfo->getNumTicksPocDiffOneMinus1(),   "vps_num_ticks_poc_diff_one_minus1");
680    }
681    pcVPS->setNumHrdParameters( 0 );
682    WRITE_UVLC( pcVPS->getNumHrdParameters(),                 "vps_num_hrd_parameters" );
683
684    if( pcVPS->getNumHrdParameters() > 0 )
685    {
686      pcVPS->createHrdParamBuffer();
687    }
688    for( UInt i = 0; i < pcVPS->getNumHrdParameters(); i ++ )
689    {
690      // Only applicable for version 1
691      pcVPS->setHrdOpSetIdx( 0, i );
692      WRITE_UVLC( pcVPS->getHrdOpSetIdx( i ),                "hrd_op_set_idx" );
693      if( i > 0 )
694      {
695        WRITE_FLAG( pcVPS->getCprmsPresentFlag( i ) ? 1 : 0, "cprms_present_flag[i]" );
696      }
697      codeHrdParameters(pcVPS->getHrdParameters(i), pcVPS->getCprmsPresentFlag( i ), pcVPS->getMaxTLayers() - 1);
698    }
699  }
700#if !VPS_EXTNS
701  WRITE_FLAG( 0,                     "vps_extension_flag" );
702#else
703  WRITE_FLAG( 1,                     "vps_extension_flag" );
704  if(1) // Should be conditioned on the value of vps_extension_flag
705  {
706    while ( m_pcBitIf->getNumberOfWrittenBits() % 8 != 0 )
707    {
708      WRITE_FLAG(1,                  "vps_extension_alignment_bit_equal_to_one");
709    }
710    codeVPSExtension(pcVPS);
711    WRITE_FLAG( 0,                     "vps_extension2_flag" );   // Flag value of 1 reserved
712  }
713#endif 
714  //future extensions here..
715 
716  return;
717}
718
719#if VPS_EXTNS
720Void TEncCavlc::codeVPSExtension (TComVPS *vps)
721{
722  // ... More syntax elements to be written here
723#if VPS_EXTN_MASK_AND_DIM_INFO
724  UInt i = 0, j = 0;
725
726  WRITE_FLAG( vps->getAvcBaseLayerFlag(),              "avc_base_layer_flag" );
727  WRITE_FLAG( vps->getSplittingFlag(),                 "splitting_flag" );
728
729  for(i = 0; i < MAX_VPS_NUM_SCALABILITY_TYPES; i++)
730  {
731    WRITE_FLAG( vps->getScalabilityMask(i),            "scalability_mask[i]" );
732  }
733
734#if VPS_SPLIT_FLAG
735  for(j = 0; j < vps->getNumScalabilityTypes() - vps->getSplittingFlag(); j++)
736#else
737  for(j = 0; j < vps->getNumScalabilityTypes(); j++)
738#endif
739  {
740    WRITE_CODE( vps->getDimensionIdLen(j) - 1, 3,      "dimension_id_len_minus1[j]" );
741  }
742
743#if SPL_FLG_CHK
744  if(vps->getSplittingFlag())
745  {
746    UInt splDimSum=0;
747    for(j = 0; j < vps->getNumScalabilityTypes(); j++)
748    {
749      splDimSum+=(vps->getDimensionIdLen(j));
750    }
751    assert(splDimSum<=6);
752  }
753#endif
754
755  WRITE_FLAG( vps->getNuhLayerIdPresentFlag(),         "vps_nuh_layer_id_present_flag" );
756  for(i = 1; i < vps->getMaxLayers(); i++)
757  {
758    if( vps->getNuhLayerIdPresentFlag() )
759    {
760      WRITE_CODE( vps->getLayerIdInNuh(i),     6,      "layer_id_in_nuh[i]" );
761    }
762#if VPS_SPLIT_FLAG
763    if(!vps->getSplittingFlag())
764#endif
765    for(j = 0; j < vps->getNumScalabilityTypes(); j++)
766    {
767      UInt bits = vps->getDimensionIdLen(j);
768      WRITE_CODE( vps->getDimensionId(i, j),   bits,   "dimension_id[i][j]" );
769    }
770  }
771#endif
772#if VPS_MOVE_DIR_DEPENDENCY_FLAG
773#if VPS_EXTN_DIRECT_REF_LAYERS
774  for( Int layerCtr = 1; layerCtr <= vps->getMaxLayers() - 1; layerCtr++)
775  {
776    for( Int refLayerCtr = 0; refLayerCtr < layerCtr; refLayerCtr++)
777    {
778      WRITE_FLAG(vps->getDirectDependencyFlag(layerCtr, refLayerCtr), "direct_dependency_flag[i][j]" );
779    }
780  }
781#endif
782#endif
783#if JCTVC_M0203_INTERLAYER_PRED_IDC
784#if N0120_MAX_TID_REF_PRESENT_FLAG
785   WRITE_FLAG( vps->getMaxTidIlRefPicsPlus1PresentFlag(), "max_tid_il_ref_pics_plus1_present_flag");
786   if (vps->getMaxTidIlRefPicsPlus1PresentFlag())
787   {
788     for( i = 0; i < vps->getMaxLayers() - 1; i++)
789     {
790       WRITE_CODE(vps->getMaxSublayerForIlpPlus1(i), 3, "max_sublayer_for_ilp_plus1[i]" );
791     }
792   }
793#else
794  for( i = 0; i < vps->getMaxLayers() - 1; i++)
795  {
796    WRITE_CODE(vps->getMaxSublayerForIlpPlus1(i), 3, "max_sublayer_for_ilp_plus1[i]" );
797  }
798#endif
799#endif
800#if ILP_SSH_SIG
801    WRITE_FLAG( vps->getIlpSshSignalingEnabledFlag(), "all_ref_layers_active_flag" );
802#endif
803#if VPS_EXTN_PROFILE_INFO
804  // Profile-tier-level signalling
805#if VPS_PROFILE_OUTPUT_LAYERS
806  WRITE_CODE( vps->getNumLayerSets() - 1   , 10, "vps_number_layer_sets_minus1" );     
807  WRITE_CODE( vps->getNumProfileTierLevel() - 1,  6, "vps_num_profile_tier_level_minus1"); 
808  for(Int idx = 1; idx <= vps->getNumProfileTierLevel() - 1; idx++)
809#else
810  for(Int idx = 1; idx <= vps->getNumLayerSets() - 1; idx++)
811#endif
812  {
813    WRITE_FLAG( vps->getProfilePresentFlag(idx),       "vps_profile_present_flag[i]" );
814    if( !vps->getProfilePresentFlag(idx) )
815    {
816#if VPS_PROFILE_OUTPUT_LAYERS
817      WRITE_CODE( vps->getProfileLayerSetRef(idx) - 1, 6, "profile_ref_minus1[i]" );
818#else
819      WRITE_UVLC( vps->getProfileLayerSetRef(idx) - 1, "vps_profile_layer_set_ref_minus1[i]" );
820#endif
821    }
822    codePTL( vps->getPTLForExtn(idx), vps->getProfilePresentFlag(idx), vps->getMaxTLayers() - 1 );
823  }
824#endif
825
826#if VPS_PROFILE_OUTPUT_LAYERS
827  Int numOutputLayerSets = vps->getNumOutputLayerSets() ;
828  WRITE_FLAG(  (numOutputLayerSets > vps->getNumLayerSets()), "more_output_layer_sets_than_default_flag" ); 
829  if(numOutputLayerSets > vps->getNumLayerSets())
830  {
831    WRITE_CODE( numOutputLayerSets - vps->getNumLayerSets(), 10, "num_add_output_layer_sets" );
832  }
833  if( numOutputLayerSets > 1 )
834  {
835    WRITE_FLAG( vps->getDefaultOneTargetOutputLayerFlag(), "default_one_target_output_layer_flag" );   
836  }
837
838  for(i = 1; i < numOutputLayerSets; i++)
839  {
840    if( i > (vps->getNumLayerSets() - 1) )
841    {
842      Int numBits = 1;
843      while ((1 << numBits) < (vps->getNumLayerSets() - 1))
844      {
845        numBits++;
846      }
847      WRITE_CODE( vps->getOutputLayerSetIdx(i) - 1, numBits, "output_layer_set_idx_minus1"); 
848      Int lsIdx = vps->getOutputLayerSetIdx(i);
849      for(j = 0; j < vps->getNumLayersInIdList(lsIdx) - 1; j++)
850      {
851        WRITE_FLAG( vps->getOutputLayerFlag(i,j), "output_layer_flag[i][j]");
852      }
853    }
854    Int numBits = 1;
855    while ((1 << numBits) < (vps->getNumProfileTierLevel()))
856    {
857      numBits++;
858    }
859    WRITE_CODE( vps->getProfileLevelTierIdx(i), numBits, "profile_level_tier_idx[i]" );     
860  }
861#else
862#if VPS_EXTN_OP_LAYER_SETS
863  // Target output layer signalling
864  WRITE_UVLC( vps->getNumOutputLayerSets(),            "vps_num_output_layer_sets");
865  for(i = 0; i < vps->getNumOutputLayerSets(); i++)
866  {
867#if VPS_OUTPUT_LAYER_SET_IDX
868    assert(vps->getOutputLayerSetIdx(i) > 0);
869    WRITE_UVLC( vps->getOutputLayerSetIdx(i) - 1,           "vps_output_layer_set_idx_minus1[i]");
870#else
871    WRITE_UVLC( vps->getOutputLayerSetIdx(i),           "vps_output_layer_set_idx[i]");
872#endif
873    Int lsIdx = vps->getOutputLayerSetIdx(i);
874    for(j = 0; j <= vps->getMaxLayerId(); j++)
875    {
876      if(vps->getLayerIdIncludedFlag(lsIdx, j))
877      {
878        WRITE_FLAG( vps->getOutputLayerFlag(lsIdx, j), "vps_output_layer_flag[lsIdx][j]");
879      }
880    }
881  }
882#endif
883#endif
884
885#if REPN_FORMAT_IN_VPS
886  WRITE_FLAG( vps->getRepFormatIdxPresentFlag(), "rep_format_idx_present_flag"); 
887
888  if( vps->getRepFormatIdxPresentFlag() )
889  {
890    WRITE_CODE( vps->getVpsNumRepFormats() - 1, 4, "vps_num_rep_formats_minus1" );
891  }
892  for(Int i = 0; i < vps->getVpsNumRepFormats(); i++)
893  {
894    // Read rep_format_structures
895    codeRepFormat( vps->getVpsRepFormat(i) );
896  }
897 
898  if( vps->getRepFormatIdxPresentFlag() )
899  {
900    for(Int i = 1; i < vps->getMaxLayers(); i++)
901    {
902      if( vps->getVpsNumRepFormats() > 1 )
903      {
904        WRITE_CODE( vps->getVpsRepFormatIdx(i), 4, "vps_rep_format_idx[i]" );
905      }
906    }
907  }
908#endif
909
910#if JCTVC_M0458_INTERLAYER_RPS_SIG
911      WRITE_FLAG(vps->getMaxOneActiveRefLayerFlag(), "max_one_active_ref_layer_flag");
912#endif
913#if !VPS_MOVE_DIR_DEPENDENCY_FLAG
914#if VPS_EXTN_DIRECT_REF_LAYERS
915  for( Int layerCtr = 1; layerCtr <= vps->getMaxLayers() - 1; layerCtr++)
916  {
917    for( Int refLayerCtr = 0; refLayerCtr < layerCtr; refLayerCtr++)
918    {
919      WRITE_FLAG(vps->getDirectDependencyFlag(layerCtr, refLayerCtr), "direct_dependency_flag[i][j]" );
920    }
921  }
922#endif
923#endif
924#if VPS_EXTN_DIRECT_REF_LAYERS && M0457_PREDICTION_INDICATIONS
925  WRITE_UVLC( vps->getDirectDepTypeLen()-2,                           "direct_dep_type_len_minus2");
926  for(i = 1; i < vps->getMaxLayers(); i++)
927  {
928    for(j = 0; j < i; j++)
929    {
930      if (vps->getDirectDependencyFlag(i, j))
931      {
932        WRITE_CODE( vps->getDirectDependencyType(i, j), vps->getDirectDepTypeLen(), "direct_dependency_type[i][j]" );
933      }
934    }
935  }
936#endif
937#if M0040_ADAPTIVE_RESOLUTION_CHANGE
938  WRITE_FLAG(vps->getSingleLayerForNonIrapFlag(), "single_layer_for_non_irap_flag" );
939#endif
940
941#if !VPS_VUI
942  WRITE_FLAG( 0,                     "vps_vui_present_flag" );
943#else
944  WRITE_FLAG( 1,                     "vps_vui_present_flag" );
945  if(1)   // Should be conditioned on the value of vps_vui_present_flag
946  {
947    while ( m_pcBitIf->getNumberOfWrittenBits() % 8 != 0 )
948    {
949      WRITE_FLAG(1,                  "vps_vui_alignment_bit_equal_to_one");
950    }
951    codeVPSVUI(vps); 
952  }
953#endif
954}
955#endif
956#if REPN_FORMAT_IN_VPS
957Void  TEncCavlc::codeRepFormat      ( RepFormat *repFormat )
958{
959  WRITE_CODE( repFormat->getChromaFormatVpsIdc(), 2, "chroma_format_idc" );   
960 
961  if( repFormat->getChromaFormatVpsIdc() == 3 )
962  {
963    WRITE_FLAG( repFormat->getSeparateColourPlaneVpsFlag(), "separate_colour_plane_flag");     
964  }
965
966  WRITE_CODE ( repFormat->getPicWidthVpsInLumaSamples (), 16, "pic_width_in_luma_samples" );   
967  WRITE_CODE ( repFormat->getPicHeightVpsInLumaSamples(), 16, "pic_height_in_luma_samples" );   
968 
969  assert( repFormat->getBitDepthVpsLuma() >= 8 );
970  assert( repFormat->getBitDepthVpsChroma() >= 8 );
971  WRITE_CODE( repFormat->getBitDepthVpsLuma() - 8,   4, "bit_depth_luma_minus8" );           
972  WRITE_CODE( repFormat->getBitDepthVpsChroma() - 8, 4, "bit_depth_chroma_minus8" );         
973
974}
975#endif
976#if VPS_VUI
977Void TEncCavlc::codeVPSVUI (TComVPS *vps)
978{
979  Int i,j;
980#if VPS_VUI_BITRATE_PICRATE
981  WRITE_FLAG( vps->getBitRatePresentVpsFlag(),        "bit_rate_present_vps_flag" );
982  WRITE_FLAG( vps->getPicRatePresentVpsFlag(),        "pic_rate_present_vps_flag" );
983
984  if( vps->getBitRatePresentVpsFlag() || vps->getPicRatePresentVpsFlag() )
985  {
986    for( i = 0; i < vps->getNumLayerSets(); i++ )
987    {
988      for( j = 0; j < vps->getMaxTLayers(); j++ )
989      {
990        if( vps->getBitRatePresentVpsFlag() )
991        {
992          WRITE_FLAG( vps->getBitRatePresentFlag( i, j),        "bit_rate_present_vps_flag[i][j]" );
993        }
994        if( vps->getPicRatePresentVpsFlag() )
995        {
996          WRITE_FLAG( vps->getPicRatePresentFlag( i, j),        "pic_rate_present_vps_flag[i][j]" );
997        }
998        if( vps->getBitRatePresentFlag(i, j) )
999        {
1000          WRITE_CODE( vps->getAvgBitRate( i, j ), 16, "avg_bit_rate[i][j]" );
1001          WRITE_CODE( vps->getAvgBitRate( i, j ), 16, "max_bit_rate[i][j]" );
1002        }
1003        if( vps->getPicRatePresentFlag(i, j) )
1004        {
1005          WRITE_CODE( vps->getConstPicRateIdc( i, j), 2 , "constant_pic_rate_idc[i][j]" ); 
1006          WRITE_CODE( vps->getConstPicRateIdc( i, j), 16, "avg_pic_rate[i][j]"          ); 
1007        }
1008      }
1009    }
1010  }
1011#endif
1012#if TILE_BOUNDARY_ALIGNED_FLAG
1013  for(i = 1; i < vps->getMaxLayers(); i++)
1014  {
1015    for(j = 0; j < vps->getNumDirectRefLayers(vps->getLayerIdInNuh(i)); j++)
1016    {
1017      WRITE_FLAG( vps->getTileBoundariesAlignedFlag(i,j) ? 1 : 0 , "tile_boundaries_aligned_flag[i][j]" );
1018    }
1019  } 
1020#endif
1021#if N0160_VUI_EXT_ILP_REF
1022  WRITE_FLAG( vps->getNumIlpRestrictedRefLayers() ? 1 : 0 , "num_ilp_restricted_ref_layers" );   
1023  if( vps->getNumIlpRestrictedRefLayers())
1024  {
1025    for(i = 1; i < vps->getMaxLayers(); i++)
1026    {
1027      for(j = 0; j < vps->getNumDirectRefLayers(vps->getLayerIdInNuh(i)); j++)
1028      {       
1029        WRITE_UVLC(vps->getMinSpatialSegmentOffsetPlus1( i, j),    "min_spatial_segment_offset_plus1[i][j]");
1030       
1031        if( vps->getMinSpatialSegmentOffsetPlus1(i,j ) > 0 ) 
1032        { 
1033          WRITE_FLAG( vps->getCtuBasedOffsetEnabledFlag( i, j) ? 1 : 0 , "ctu_based_offset_enabled_flag[i][j]" );   
1034         
1035          if(vps->getCtuBasedOffsetEnabledFlag(i,j)) 
1036          {
1037            WRITE_UVLC(vps->getMinHorizontalCtuOffsetPlus1( i, j),    "min_horizontal_ctu_offset_plus1[i][j]");           
1038          }
1039        } 
1040      } 
1041    }
1042  }
1043#endif
1044}
1045#endif
1046
1047Void TEncCavlc::codeSliceHeader         ( TComSlice* pcSlice )
1048{
1049#if ENC_DEC_TRACE 
1050  xTraceSliceHeader (pcSlice);
1051#endif
1052
1053  //calculate number of bits required for slice address
1054  Int maxSliceSegmentAddress = pcSlice->getPic()->getNumCUsInFrame();
1055  Int bitsSliceSegmentAddress = 0;
1056  while(maxSliceSegmentAddress>(1<<bitsSliceSegmentAddress)) 
1057  {
1058    bitsSliceSegmentAddress++;
1059  }
1060  Int ctuAddress;
1061  if (pcSlice->isNextSlice())
1062  {
1063    // Calculate slice address
1064    ctuAddress = (pcSlice->getSliceCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU());
1065  }
1066  else
1067  {
1068    // Calculate slice address
1069    ctuAddress = (pcSlice->getSliceSegmentCurStartCUAddr()/pcSlice->getPic()->getNumPartInCU());
1070  }
1071  //write slice address
1072  Int sliceSegmentAddress = pcSlice->getPic()->getPicSym()->getCUOrderMap(ctuAddress);
1073
1074  WRITE_FLAG( sliceSegmentAddress==0, "first_slice_segment_in_pic_flag" );
1075  if ( pcSlice->getRapPicFlag() )
1076  {
1077    WRITE_FLAG( 0, "no_output_of_prior_pics_flag" );
1078  }
1079  WRITE_UVLC( pcSlice->getPPS()->getPPSId(), "slice_pic_parameter_set_id" );
1080  pcSlice->setDependentSliceSegmentFlag(!pcSlice->isNextSlice());
1081  if ( pcSlice->getPPS()->getDependentSliceSegmentsEnabledFlag() && (sliceSegmentAddress!=0) )
1082  {
1083    WRITE_FLAG( pcSlice->getDependentSliceSegmentFlag() ? 1 : 0, "dependent_slice_segment_flag" );
1084  }
1085  if(sliceSegmentAddress>0)
1086  {
1087    WRITE_CODE( sliceSegmentAddress, bitsSliceSegmentAddress, "slice_segment_address" );
1088  }
1089  if ( !pcSlice->getDependentSliceSegmentFlag() )
1090  {
1091
1092#if SH_DISCARDABLE_FLAG
1093    if (pcSlice->getPPS()->getNumExtraSliceHeaderBits()>0)
1094    {
1095      assert(!!"discardable_flag");
1096      WRITE_FLAG(pcSlice->getDiscardableFlag(), "discardable_flag");
1097    }
1098    for (Int i = 1; i < pcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
1099    {
1100      assert(!!"slice_reserved_undetermined_flag[]");
1101      WRITE_FLAG(0, "slice_reserved_undetermined_flag[]");
1102    }
1103#else
1104    for (Int i = 0; i < pcSlice->getPPS()->getNumExtraSliceHeaderBits(); i++)
1105    {
1106      assert(!!"slice_reserved_undetermined_flag[]");
1107      WRITE_FLAG(0, "slice_reserved_undetermined_flag[]");
1108    }
1109#endif
1110
1111    WRITE_UVLC( pcSlice->getSliceType(),       "slice_type" );
1112
1113    if( pcSlice->getPPS()->getOutputFlagPresentFlag() )
1114    {
1115      WRITE_FLAG( pcSlice->getPicOutputFlag() ? 1 : 0, "pic_output_flag" );
1116    }
1117
1118#if REPN_FORMAT_IN_VPS
1119    // in the first version chroma_format_idc is equal to one, thus colour_plane_id will not be present
1120    assert( pcSlice->getChromaFormatIdc() == 1 );
1121#else
1122    // in the first version chroma_format_idc is equal to one, thus colour_plane_id will not be present
1123    assert (pcSlice->getSPS()->getChromaFormatIdc() == 1 );
1124#endif
1125    // if( separate_colour_plane_flag  ==  1 )
1126    //   colour_plane_id                                      u(2)
1127
1128    if( !pcSlice->getIdrPicFlag() )
1129    {
1130      Int picOrderCntLSB = (pcSlice->getPOC()-pcSlice->getLastIDR()+(1<<pcSlice->getSPS()->getBitsForPOC()))%(1<<pcSlice->getSPS()->getBitsForPOC());
1131      WRITE_CODE( picOrderCntLSB, pcSlice->getSPS()->getBitsForPOC(), "pic_order_cnt_lsb");
1132      TComReferencePictureSet* rps = pcSlice->getRPS();
1133     
1134#if FIX1071
1135      // check for bitstream restriction stating that:
1136      // If the current picture is a BLA or CRA picture, the value of NumPocTotalCurr shall be equal to 0.
1137      // Ideally this process should not be repeated for each slice in a picture
1138#if SVC_EXTENSION
1139      if( pcSlice->getLayerId() == 0 )
1140#endif
1141      if (pcSlice->isIRAP())
1142      {
1143        for (Int picIdx = 0; picIdx < rps->getNumberOfPictures(); picIdx++)
1144        {
1145          assert (!rps->getUsed(picIdx));
1146        }
1147      }
1148#endif
1149
1150      if(pcSlice->getRPSidx() < 0)
1151      {
1152        WRITE_FLAG( 0, "short_term_ref_pic_set_sps_flag");
1153        codeShortTermRefPicSet(pcSlice->getSPS(), rps, true, pcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets());
1154      }
1155      else
1156      {
1157        WRITE_FLAG( 1, "short_term_ref_pic_set_sps_flag");
1158        Int numBits = 0;
1159        while ((1 << numBits) < pcSlice->getSPS()->getRPSList()->getNumberOfReferencePictureSets())
1160        {
1161          numBits++;
1162        }
1163        if (numBits > 0)
1164        {
1165          WRITE_CODE( pcSlice->getRPSidx(), numBits, "short_term_ref_pic_set_idx" );         
1166        }
1167      }
1168      if(pcSlice->getSPS()->getLongTermRefsPresent())
1169      {
1170        Int numLtrpInSH = rps->getNumberOfLongtermPictures();
1171        Int ltrpInSPS[MAX_NUM_REF_PICS];
1172        Int numLtrpInSPS = 0;
1173        UInt ltrpIndex;
1174        Int counter = 0;
1175        for(Int k = rps->getNumberOfPictures()-1; k > rps->getNumberOfPictures()-rps->getNumberOfLongtermPictures()-1; k--) 
1176        {
1177          if (findMatchingLTRP(pcSlice, &ltrpIndex, rps->getPOC(k), rps->getUsed(k))) 
1178          {
1179            ltrpInSPS[numLtrpInSPS] = ltrpIndex;
1180            numLtrpInSPS++;
1181          }
1182          else
1183          {
1184            counter++;
1185          }
1186        }
1187        numLtrpInSH -= numLtrpInSPS;
1188
1189        Int bitsForLtrpInSPS = 0;
1190        while (pcSlice->getSPS()->getNumLongTermRefPicSPS() > (1 << bitsForLtrpInSPS))
1191        {
1192          bitsForLtrpInSPS++;
1193        }
1194        if (pcSlice->getSPS()->getNumLongTermRefPicSPS() > 0) 
1195        {
1196          WRITE_UVLC( numLtrpInSPS, "num_long_term_sps");
1197        }
1198        WRITE_UVLC( numLtrpInSH, "num_long_term_pics");
1199        // Note that the LSBs of the LT ref. pic. POCs must be sorted before.
1200        // Not sorted here because LT ref indices will be used in setRefPicList()
1201        Int prevDeltaMSB = 0, prevLSB = 0;
1202        Int offset = rps->getNumberOfNegativePictures() + rps->getNumberOfPositivePictures();
1203        for(Int i=rps->getNumberOfPictures()-1 ; i > offset-1; i--)
1204        {
1205          if (counter < numLtrpInSPS)
1206          {
1207            if (bitsForLtrpInSPS > 0)
1208            {
1209              WRITE_CODE( ltrpInSPS[counter], bitsForLtrpInSPS, "lt_idx_sps[i]");             
1210            }
1211          }
1212          else 
1213          {
1214            WRITE_CODE( rps->getPocLSBLT(i), pcSlice->getSPS()->getBitsForPOC(), "poc_lsb_lt");
1215            WRITE_FLAG( rps->getUsed(i), "used_by_curr_pic_lt_flag"); 
1216          }
1217          WRITE_FLAG( rps->getDeltaPocMSBPresentFlag(i), "delta_poc_msb_present_flag");
1218
1219          if(rps->getDeltaPocMSBPresentFlag(i))
1220          {
1221            Bool deltaFlag = false;
1222            //  First LTRP from SPS                 ||  First LTRP from SH                              || curr LSB            != prev LSB
1223            if( (i == rps->getNumberOfPictures()-1) || (i == rps->getNumberOfPictures()-1-numLtrpInSPS) || (rps->getPocLSBLT(i) != prevLSB) )
1224            {
1225              deltaFlag = true;
1226            }
1227            if(deltaFlag)
1228            {
1229              WRITE_UVLC( rps->getDeltaPocMSBCycleLT(i), "delta_poc_msb_cycle_lt[i]" );
1230            }
1231            else
1232            {             
1233              Int differenceInDeltaMSB = rps->getDeltaPocMSBCycleLT(i) - prevDeltaMSB;
1234              assert(differenceInDeltaMSB >= 0);
1235              WRITE_UVLC( differenceInDeltaMSB, "delta_poc_msb_cycle_lt[i]" );
1236            }
1237            prevLSB = rps->getPocLSBLT(i);
1238            prevDeltaMSB = rps->getDeltaPocMSBCycleLT(i);
1239          }
1240        }
1241      }
1242      if (pcSlice->getSPS()->getTMVPFlagsPresent())
1243      {
1244        WRITE_FLAG( pcSlice->getEnableTMVPFlag() ? 1 : 0, "slice_temporal_mvp_enable_flag" );
1245      }
1246    }
1247
1248#if JCTVC_M0458_INTERLAYER_RPS_SIG
1249#if ILP_SSH_SIG
1250    if((pcSlice->getSPS()->getLayerId() > 0) && pcSlice->getVPS()->getIlpSshSignalingEnabledFlag() && (pcSlice->getNumILRRefIdx() > 0) )
1251#else
1252    if((pcSlice->getSPS()->getLayerId() > 0)  &&  (pcSlice->getNumILRRefIdx() > 0) )
1253#endif
1254    {
1255      WRITE_FLAG(pcSlice->getInterLayerPredEnabledFlag(),"inter_layer_pred_enabled_flag");
1256      if( pcSlice->getInterLayerPredEnabledFlag())
1257      {
1258        if(pcSlice->getNumILRRefIdx() > 1)
1259        {
1260          Int numBits = 1;
1261          while ((1 << numBits) < pcSlice->getNumILRRefIdx())
1262          {
1263            numBits++;
1264          }
1265          if( !pcSlice->getVPS()->getMaxOneActiveRefLayerFlag()) 
1266          {
1267            WRITE_CODE(pcSlice->getActiveNumILRRefIdx() - 1, numBits,"num_inter_layer_ref_pics_minus1");
1268          }       
1269#if ILP_NUM_REF_CHK
1270          if( pcSlice->getNumILRRefIdx() != pcSlice->getActiveNumILRRefIdx() )
1271          {
1272#endif
1273          for(Int i = 0; i < pcSlice->getActiveNumILRRefIdx(); i++ )
1274          {
1275            WRITE_CODE(pcSlice->getInterLayerPredLayerIdc(i),numBits,"inter_layer_pred_layer_idc[i]");   
1276          }
1277#if ILP_NUM_REF_CHK
1278          }
1279#endif
1280        }
1281      }
1282    }     
1283#if M0457_IL_SAMPLE_PRED_ONLY_FLAG
1284    if( pcSlice->getNumSamplePredRefLayers() > 0 && pcSlice->getActiveNumILRRefIdx() > 0 )
1285    {
1286      WRITE_FLAG( pcSlice->getInterLayerSamplePredOnlyFlag(), "inter_layer_sample_pred_only_flag" );
1287    }
1288#endif
1289#endif
1290
1291    if(pcSlice->getSPS()->getUseSAO())
1292    {
1293      if (pcSlice->getSPS()->getUseSAO())
1294      {
1295         WRITE_FLAG( pcSlice->getSaoEnabledFlag(), "slice_sao_luma_flag" );
1296         {
1297           SAOParam *saoParam = pcSlice->getPic()->getPicSym()->getSaoParam();
1298          WRITE_FLAG( saoParam->bSaoFlag[1], "slice_sao_chroma_flag" );
1299         }
1300      }
1301    }
1302
1303    //check if numrefidxes match the defaults. If not, override
1304
1305    if (!pcSlice->isIntra())
1306    {
1307      Bool overrideFlag = (pcSlice->getNumRefIdx( REF_PIC_LIST_0 )!=pcSlice->getPPS()->getNumRefIdxL0DefaultActive()||(pcSlice->isInterB()&&pcSlice->getNumRefIdx( REF_PIC_LIST_1 )!=pcSlice->getPPS()->getNumRefIdxL1DefaultActive()));
1308      WRITE_FLAG( overrideFlag ? 1 : 0,                               "num_ref_idx_active_override_flag");
1309      if (overrideFlag) 
1310      {
1311        WRITE_UVLC( pcSlice->getNumRefIdx( REF_PIC_LIST_0 ) - 1,      "num_ref_idx_l0_active_minus1" );
1312        if (pcSlice->isInterB())
1313        {
1314          WRITE_UVLC( pcSlice->getNumRefIdx( REF_PIC_LIST_1 ) - 1,    "num_ref_idx_l1_active_minus1" );
1315        }
1316        else
1317        {
1318          pcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1319        }
1320      }
1321    }
1322    else
1323    {
1324      pcSlice->setNumRefIdx(REF_PIC_LIST_0, 0);
1325      pcSlice->setNumRefIdx(REF_PIC_LIST_1, 0);
1326    }
1327
1328    if( pcSlice->getPPS()->getListsModificationPresentFlag() && pcSlice->getNumRpsCurrTempList() > 1)
1329    {
1330      TComRefPicListModification* refPicListModification = pcSlice->getRefPicListModification();
1331      if(!pcSlice->isIntra())
1332      {
1333        WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0() ? 1 : 0,       "ref_pic_list_modification_flag_l0" );
1334        if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL0())
1335        {
1336          Int numRpsCurrTempList0 = pcSlice->getNumRpsCurrTempList();
1337          if (numRpsCurrTempList0 > 1)
1338          {
1339            Int length = 1;
1340            numRpsCurrTempList0 --;
1341            while ( numRpsCurrTempList0 >>= 1) 
1342            {
1343              length ++;
1344            }
1345            for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_0 ); i++)
1346            {
1347              WRITE_CODE( refPicListModification->getRefPicSetIdxL0(i), length, "list_entry_l0");
1348            }
1349          }
1350        }
1351      }
1352      if(pcSlice->isInterB())
1353      {   
1354        WRITE_FLAG(pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1() ? 1 : 0,       "ref_pic_list_modification_flag_l1" );
1355        if (pcSlice->getRefPicListModification()->getRefPicListModificationFlagL1())
1356        {
1357          Int numRpsCurrTempList1 = pcSlice->getNumRpsCurrTempList();
1358          if ( numRpsCurrTempList1 > 1 )
1359          {
1360            Int length = 1;
1361            numRpsCurrTempList1 --;
1362            while ( numRpsCurrTempList1 >>= 1)
1363            {
1364              length ++;
1365            }
1366            for(Int i = 0; i < pcSlice->getNumRefIdx( REF_PIC_LIST_1 ); i++)
1367            {
1368              WRITE_CODE( refPicListModification->getRefPicSetIdxL1(i), length, "list_entry_l1");
1369            }
1370          }
1371        }
1372      }
1373    }
1374   
1375    if (pcSlice->isInterB())
1376    {
1377      WRITE_FLAG( pcSlice->getMvdL1ZeroFlag() ? 1 : 0,   "mvd_l1_zero_flag");
1378    }
1379
1380    if(!pcSlice->isIntra())
1381    {
1382      if (!pcSlice->isIntra() && pcSlice->getPPS()->getCabacInitPresentFlag())
1383      {
1384        SliceType sliceType   = pcSlice->getSliceType();
1385        Int  encCABACTableIdx = pcSlice->getPPS()->getEncCABACTableIdx();
1386        Bool encCabacInitFlag = (sliceType!=encCABACTableIdx && encCABACTableIdx!=I_SLICE) ? true : false;
1387        pcSlice->setCabacInitFlag( encCabacInitFlag );
1388        WRITE_FLAG( encCabacInitFlag?1:0, "cabac_init_flag" );
1389      }
1390    }
1391
1392    if ( pcSlice->getEnableTMVPFlag() )
1393    {
1394#if SVC_EXTENSION && M0457_COL_PICTURE_SIGNALING && !REMOVE_COL_PICTURE_SIGNALING
1395      if ( !pcSlice->getIdrPicFlag() && pcSlice->getLayerId() > 0 && pcSlice->getActiveNumILRRefIdx() > 0 && pcSlice->getNumMotionPredRefLayers() > 0 )
1396      {
1397        WRITE_FLAG( pcSlice->getAltColIndicationFlag() ? 1 : 0, "alt_collocated_indication_flag" );
1398        if (pcSlice->getAltColIndicationFlag() && pcSlice->getNumMotionPredRefLayers() > 1)
1399        {
1400          WRITE_UVLC(0, "collocated_ref_layer_idx");
1401        }
1402      }
1403      else
1404      {
1405#endif
1406      if ( pcSlice->getSliceType() == B_SLICE )
1407      {
1408        WRITE_FLAG( pcSlice->getColFromL0Flag(), "collocated_from_l0_flag" );
1409      }
1410
1411      if ( pcSlice->getSliceType() != I_SLICE &&
1412        ((pcSlice->getColFromL0Flag()==1 && pcSlice->getNumRefIdx(REF_PIC_LIST_0)>1)||
1413        (pcSlice->getColFromL0Flag()==0  && pcSlice->getNumRefIdx(REF_PIC_LIST_1)>1)))
1414      {
1415        WRITE_UVLC( pcSlice->getColRefIdx(), "collocated_ref_idx" );
1416      }
1417#if SVC_EXTENSION && M0457_COL_PICTURE_SIGNALING && !REMOVE_COL_PICTURE_SIGNALING
1418      }
1419#endif
1420    }
1421    if ( (pcSlice->getPPS()->getUseWP() && pcSlice->getSliceType()==P_SLICE) || (pcSlice->getPPS()->getWPBiPred() && pcSlice->getSliceType()==B_SLICE) )
1422    {
1423      xCodePredWeightTable( pcSlice );
1424    }
1425    assert(pcSlice->getMaxNumMergeCand()<=MRG_MAX_NUM_CANDS);
1426    if (!pcSlice->isIntra())
1427    {
1428      WRITE_UVLC(MRG_MAX_NUM_CANDS - pcSlice->getMaxNumMergeCand(), "five_minus_max_num_merge_cand");
1429    }
1430    Int iCode = pcSlice->getSliceQp() - ( pcSlice->getPPS()->getPicInitQPMinus26() + 26 );
1431    WRITE_SVLC( iCode, "slice_qp_delta" ); 
1432    if (pcSlice->getPPS()->getSliceChromaQpFlag())
1433    {
1434      iCode = pcSlice->getSliceQpDeltaCb();
1435      WRITE_SVLC( iCode, "slice_qp_delta_cb" );
1436      iCode = pcSlice->getSliceQpDeltaCr();
1437      WRITE_SVLC( iCode, "slice_qp_delta_cr" );
1438    }
1439    if (pcSlice->getPPS()->getDeblockingFilterControlPresentFlag())
1440    {
1441      if (pcSlice->getPPS()->getDeblockingFilterOverrideEnabledFlag() )
1442      {
1443        WRITE_FLAG(pcSlice->getDeblockingFilterOverrideFlag(), "deblocking_filter_override_flag");
1444      }
1445      if (pcSlice->getDeblockingFilterOverrideFlag())
1446      {
1447        WRITE_FLAG(pcSlice->getDeblockingFilterDisable(), "slice_disable_deblocking_filter_flag");
1448        if(!pcSlice->getDeblockingFilterDisable())
1449        {
1450          WRITE_SVLC (pcSlice->getDeblockingFilterBetaOffsetDiv2(), "slice_beta_offset_div2");
1451          WRITE_SVLC (pcSlice->getDeblockingFilterTcOffsetDiv2(),   "slice_tc_offset_div2");
1452        }
1453      }
1454    }
1455
1456    Bool isSAOEnabled = (!pcSlice->getSPS()->getUseSAO())?(false):(pcSlice->getSaoEnabledFlag()||pcSlice->getSaoEnabledFlagChroma());
1457    Bool isDBFEnabled = (!pcSlice->getDeblockingFilterDisable());
1458
1459    if(pcSlice->getPPS()->getLoopFilterAcrossSlicesEnabledFlag() && ( isSAOEnabled || isDBFEnabled ))
1460    {
1461      WRITE_FLAG(pcSlice->getLFCrossSliceBoundaryFlag()?1:0, "slice_loop_filter_across_slices_enabled_flag");
1462    }
1463  }
1464  if(pcSlice->getPPS()->getSliceHeaderExtensionPresentFlag())
1465  {
1466    WRITE_UVLC(0,"slice_header_extension_length");
1467  }
1468}
1469
1470Void TEncCavlc::codePTL( TComPTL* pcPTL, Bool profilePresentFlag, Int maxNumSubLayersMinus1)
1471{
1472  if(profilePresentFlag)
1473  {
1474    codeProfileTier(pcPTL->getGeneralPTL());    // general_...
1475  }
1476  WRITE_CODE( pcPTL->getGeneralPTL()->getLevelIdc(), 8, "general_level_idc" );
1477
1478  for (Int i = 0; i < maxNumSubLayersMinus1; i++)
1479  {
1480    if(profilePresentFlag)
1481    {
1482      WRITE_FLAG( pcPTL->getSubLayerProfilePresentFlag(i), "sub_layer_profile_present_flag[i]" );
1483    }
1484   
1485    WRITE_FLAG( pcPTL->getSubLayerLevelPresentFlag(i),   "sub_layer_level_present_flag[i]" );
1486  }
1487 
1488  if (maxNumSubLayersMinus1 > 0)
1489  {
1490    for (Int i = maxNumSubLayersMinus1; i < 8; i++)
1491    {
1492      WRITE_CODE(0, 2, "reserved_zero_2bits");
1493    }
1494  }
1495 
1496  for(Int i = 0; i < maxNumSubLayersMinus1; i++)
1497  {
1498    if( profilePresentFlag && pcPTL->getSubLayerProfilePresentFlag(i) )
1499    {
1500      codeProfileTier(pcPTL->getSubLayerPTL(i));  // sub_layer_...
1501    }
1502    if( pcPTL->getSubLayerLevelPresentFlag(i) )
1503    {
1504      WRITE_CODE( pcPTL->getSubLayerPTL(i)->getLevelIdc(), 8, "sub_layer_level_idc[i]" );
1505    }
1506  }
1507}
1508Void TEncCavlc::codeProfileTier( ProfileTierLevel* ptl )
1509{
1510  WRITE_CODE( ptl->getProfileSpace(), 2 ,     "XXX_profile_space[]");
1511  WRITE_FLAG( ptl->getTierFlag    (),         "XXX_tier_flag[]"    );
1512  WRITE_CODE( ptl->getProfileIdc  (), 5 ,     "XXX_profile_idc[]"  );   
1513  for(Int j = 0; j < 32; j++)
1514  {
1515    WRITE_FLAG( ptl->getProfileCompatibilityFlag(j), "XXX_profile_compatibility_flag[][j]");   
1516  }
1517
1518  WRITE_FLAG(ptl->getProgressiveSourceFlag(),   "general_progressive_source_flag");
1519  WRITE_FLAG(ptl->getInterlacedSourceFlag(),    "general_interlaced_source_flag");
1520  WRITE_FLAG(ptl->getNonPackedConstraintFlag(), "general_non_packed_constraint_flag");
1521  WRITE_FLAG(ptl->getFrameOnlyConstraintFlag(), "general_frame_only_constraint_flag");
1522 
1523  WRITE_CODE(0 , 16, "XXX_reserved_zero_44bits[0..15]");
1524  WRITE_CODE(0 , 16, "XXX_reserved_zero_44bits[16..31]");
1525  WRITE_CODE(0 , 12, "XXX_reserved_zero_44bits[32..43]");
1526}
1527
1528/**
1529 - write wavefront substreams sizes for the slice header.
1530 .
1531 \param pcSlice Where we find the substream size information.
1532 */
1533Void  TEncCavlc::codeTilesWPPEntryPoint( TComSlice* pSlice )
1534{
1535  if (!pSlice->getPPS()->getTilesEnabledFlag() && !pSlice->getPPS()->getEntropyCodingSyncEnabledFlag())
1536  {
1537    return;
1538  }
1539  UInt numEntryPointOffsets = 0, offsetLenMinus1 = 0, maxOffset = 0;
1540  Int  numZeroSubstreamsAtStartOfSlice  = 0;
1541  UInt *entryPointOffset = NULL;
1542  if ( pSlice->getPPS()->getTilesEnabledFlag() )
1543  {
1544    numEntryPointOffsets = pSlice->getTileLocationCount();
1545    entryPointOffset     = new UInt[numEntryPointOffsets];
1546    for (Int idx=0; idx<pSlice->getTileLocationCount(); idx++)
1547    {
1548      if ( idx == 0 )
1549      {
1550        entryPointOffset [ idx ] = pSlice->getTileLocation( 0 );
1551      }
1552      else
1553      {
1554        entryPointOffset [ idx ] = pSlice->getTileLocation( idx ) - pSlice->getTileLocation( idx-1 );
1555      }
1556
1557      if ( entryPointOffset[ idx ] > maxOffset )
1558      {
1559        maxOffset = entryPointOffset[ idx ];
1560      }
1561    }
1562  }
1563  else if ( pSlice->getPPS()->getEntropyCodingSyncEnabledFlag() )
1564  {
1565    UInt* pSubstreamSizes               = pSlice->getSubstreamSizes();
1566    Int maxNumParts                       = pSlice->getPic()->getNumPartInCU();
1567    numZeroSubstreamsAtStartOfSlice       = pSlice->getSliceSegmentCurStartCUAddr()/maxNumParts/pSlice->getPic()->getFrameWidthInCU();
1568    Int  numZeroSubstreamsAtEndOfSlice    = pSlice->getPic()->getFrameHeightInCU()-1 - ((pSlice->getSliceSegmentCurEndCUAddr()-1)/maxNumParts/pSlice->getPic()->getFrameWidthInCU());
1569    numEntryPointOffsets                  = pSlice->getPPS()->getNumSubstreams() - numZeroSubstreamsAtStartOfSlice - numZeroSubstreamsAtEndOfSlice - 1;
1570    pSlice->setNumEntryPointOffsets(numEntryPointOffsets);
1571    entryPointOffset           = new UInt[numEntryPointOffsets];
1572    for (Int idx=0; idx<numEntryPointOffsets; idx++)
1573    {
1574      entryPointOffset[ idx ] = ( pSubstreamSizes[ idx+numZeroSubstreamsAtStartOfSlice ] >> 3 ) ;
1575      if ( entryPointOffset[ idx ] > maxOffset )
1576      {
1577        maxOffset = entryPointOffset[ idx ];
1578      }
1579    }
1580  }
1581  // Determine number of bits "offsetLenMinus1+1" required for entry point information
1582  offsetLenMinus1 = 0;
1583  while (maxOffset >= (1u << (offsetLenMinus1 + 1)))
1584  {
1585    offsetLenMinus1++;
1586    assert(offsetLenMinus1 + 1 < 32);   
1587  }
1588
1589  WRITE_UVLC(numEntryPointOffsets, "num_entry_point_offsets");
1590  if (numEntryPointOffsets>0)
1591  {
1592    WRITE_UVLC(offsetLenMinus1, "offset_len_minus1");
1593  }
1594
1595  for (UInt idx=0; idx<numEntryPointOffsets; idx++)
1596  {
1597    WRITE_CODE(entryPointOffset[ idx ]-1, offsetLenMinus1+1, "entry_point_offset_minus1");
1598  }
1599
1600  delete [] entryPointOffset;
1601}
1602
1603Void TEncCavlc::codeTerminatingBit      ( UInt uilsLast )
1604{
1605}
1606
1607Void TEncCavlc::codeSliceFinish ()
1608{
1609}
1610
1611Void TEncCavlc::codeMVPIdx ( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
1612{
1613  assert(0);
1614}
1615
1616Void TEncCavlc::codePartSize( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1617{
1618  assert(0);
1619}
1620
1621Void TEncCavlc::codePredMode( TComDataCU* pcCU, UInt uiAbsPartIdx )
1622{
1623  assert(0);
1624}
1625
1626Void TEncCavlc::codeMergeFlag    ( TComDataCU* pcCU, UInt uiAbsPartIdx )
1627{
1628  assert(0);
1629}
1630
1631Void TEncCavlc::codeMergeIndex    ( TComDataCU* pcCU, UInt uiAbsPartIdx )
1632{
1633  assert(0);
1634}
1635
1636Void TEncCavlc::codeInterModeFlag( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth, UInt uiEncMode )
1637{
1638  assert(0);
1639}
1640
1641Void TEncCavlc::codeCUTransquantBypassFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
1642{
1643  assert(0);
1644}
1645
1646Void TEncCavlc::codeSkipFlag( TComDataCU* pcCU, UInt uiAbsPartIdx )
1647{
1648  assert(0);
1649}
1650
1651Void TEncCavlc::codeSplitFlag   ( TComDataCU* pcCU, UInt uiAbsPartIdx, UInt uiDepth )
1652{
1653  assert(0);
1654}
1655
1656Void TEncCavlc::codeTransformSubdivFlag( UInt uiSymbol, UInt uiCtx )
1657{
1658  assert(0);
1659}
1660
1661Void TEncCavlc::codeQtCbf( TComDataCU* pcCU, UInt uiAbsPartIdx, TextType eType, UInt uiTrDepth )
1662{
1663  assert(0);
1664}
1665
1666Void TEncCavlc::codeQtRootCbf( TComDataCU* pcCU, UInt uiAbsPartIdx )
1667{
1668  assert(0);
1669}
1670
1671Void TEncCavlc::codeQtCbfZero( TComDataCU* pcCU, TextType eType, UInt uiTrDepth )
1672{
1673  assert(0);
1674}
1675Void TEncCavlc::codeQtRootCbfZero( TComDataCU* pcCU )
1676{
1677  assert(0);
1678}
1679
1680Void TEncCavlc::codeTransformSkipFlags (TComDataCU* pcCU, UInt uiAbsPartIdx, UInt width, UInt height, TextType eTType )
1681{
1682  assert(0);
1683}
1684
1685/** Code I_PCM information.
1686 * \param pcCU pointer to CU
1687 * \param uiAbsPartIdx CU index
1688 * \returns Void
1689 */
1690Void TEncCavlc::codeIPCMInfo( TComDataCU* pcCU, UInt uiAbsPartIdx )
1691{
1692  assert(0);
1693}
1694
1695Void TEncCavlc::codeIntraDirLumaAng( TComDataCU* pcCU, UInt uiAbsPartIdx, Bool isMultiple)
1696{
1697  assert(0);
1698}
1699
1700Void TEncCavlc::codeIntraDirChroma( TComDataCU* pcCU, UInt uiAbsPartIdx )
1701{
1702  assert(0);
1703}
1704
1705Void TEncCavlc::codeInterDir( TComDataCU* pcCU, UInt uiAbsPartIdx )
1706{
1707  assert(0);
1708}
1709
1710Void TEncCavlc::codeRefFrmIdx( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
1711{
1712  assert(0);
1713}
1714
1715Void TEncCavlc::codeMvd( TComDataCU* pcCU, UInt uiAbsPartIdx, RefPicList eRefList )
1716{
1717  assert(0);
1718}
1719
1720Void TEncCavlc::codeDeltaQP( TComDataCU* pcCU, UInt uiAbsPartIdx )
1721{
1722  Int iDQp  = pcCU->getQP( uiAbsPartIdx ) - pcCU->getRefQP( uiAbsPartIdx );
1723
1724#if REPN_FORMAT_IN_VPS
1725  Int qpBdOffsetY =  pcCU->getSlice()->getQpBDOffsetY();
1726#else
1727  Int qpBdOffsetY =  pcCU->getSlice()->getSPS()->getQpBDOffsetY();
1728#endif
1729  iDQp = (iDQp + 78 + qpBdOffsetY + (qpBdOffsetY/2)) % (52 + qpBdOffsetY) - 26 - (qpBdOffsetY/2);
1730
1731  xWriteSvlc( iDQp );
1732 
1733  return;
1734}
1735
1736Void TEncCavlc::codeCoeffNxN    ( TComDataCU* pcCU, TCoeff* pcCoef, UInt uiAbsPartIdx, UInt uiWidth, UInt uiHeight, UInt uiDepth, TextType eTType )
1737{
1738  assert(0);
1739}
1740
1741Void TEncCavlc::estBit( estBitsSbacStruct* pcEstBitsCabac, Int width, Int height, TextType eTType )
1742{
1743  // printf("error : no VLC mode support in this version\n");
1744  return;
1745}
1746
1747// ====================================================================================================================
1748// Protected member functions
1749// ====================================================================================================================
1750
1751/** code explicit wp tables
1752 * \param TComSlice* pcSlice
1753 * \returns Void
1754 */
1755Void TEncCavlc::xCodePredWeightTable( TComSlice* pcSlice )
1756{
1757  wpScalingParam  *wp;
1758  Bool            bChroma     = true; // color always present in HEVC ?
1759  Int             iNbRef       = (pcSlice->getSliceType() == B_SLICE ) ? (2) : (1);
1760  Bool            bDenomCoded  = false;
1761  UInt            uiMode = 0;
1762  UInt            uiTotalSignalledWeightFlags = 0;
1763  if ( (pcSlice->getSliceType()==P_SLICE && pcSlice->getPPS()->getUseWP()) || (pcSlice->getSliceType()==B_SLICE && pcSlice->getPPS()->getWPBiPred()) )
1764  {
1765    uiMode = 1; // explicit
1766  }
1767  if(uiMode == 1)
1768  {
1769
1770    for ( Int iNumRef=0 ; iNumRef<iNbRef ; iNumRef++ ) 
1771    {
1772      RefPicList  eRefPicList = ( iNumRef ? REF_PIC_LIST_1 : REF_PIC_LIST_0 );
1773
1774      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1775      {
1776        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1777        if ( !bDenomCoded ) 
1778        {
1779          Int iDeltaDenom;
1780          WRITE_UVLC( wp[0].uiLog2WeightDenom, "luma_log2_weight_denom" );     // ue(v): luma_log2_weight_denom
1781
1782          if( bChroma )
1783          {
1784            iDeltaDenom = (wp[1].uiLog2WeightDenom - wp[0].uiLog2WeightDenom);
1785            WRITE_SVLC( iDeltaDenom, "delta_chroma_log2_weight_denom" );       // se(v): delta_chroma_log2_weight_denom
1786          }
1787          bDenomCoded = true;
1788        }
1789        WRITE_FLAG( wp[0].bPresentFlag, "luma_weight_lX_flag" );               // u(1): luma_weight_lX_flag
1790        uiTotalSignalledWeightFlags += wp[0].bPresentFlag;
1791      }
1792      if (bChroma) 
1793      {
1794        for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1795        {
1796          pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1797          WRITE_FLAG( wp[1].bPresentFlag, "chroma_weight_lX_flag" );           // u(1): chroma_weight_lX_flag
1798          uiTotalSignalledWeightFlags += 2*wp[1].bPresentFlag;
1799        }
1800      }
1801
1802      for ( Int iRefIdx=0 ; iRefIdx<pcSlice->getNumRefIdx(eRefPicList) ; iRefIdx++ ) 
1803      {
1804        pcSlice->getWpScaling(eRefPicList, iRefIdx, wp);
1805        if ( wp[0].bPresentFlag ) 
1806        {
1807          Int iDeltaWeight = (wp[0].iWeight - (1<<wp[0].uiLog2WeightDenom));
1808          WRITE_SVLC( iDeltaWeight, "delta_luma_weight_lX" );                  // se(v): delta_luma_weight_lX
1809          WRITE_SVLC( wp[0].iOffset, "luma_offset_lX" );                       // se(v): luma_offset_lX
1810        }
1811
1812        if ( bChroma ) 
1813        {
1814          if ( wp[1].bPresentFlag )
1815          {
1816            for ( Int j=1 ; j<3 ; j++ ) 
1817            {
1818              Int iDeltaWeight = (wp[j].iWeight - (1<<wp[1].uiLog2WeightDenom));
1819              WRITE_SVLC( iDeltaWeight, "delta_chroma_weight_lX" );            // se(v): delta_chroma_weight_lX
1820
1821              Int pred = ( 128 - ( ( 128*wp[j].iWeight)>>(wp[j].uiLog2WeightDenom) ) );
1822              Int iDeltaChroma = (wp[j].iOffset - pred);
1823              WRITE_SVLC( iDeltaChroma, "delta_chroma_offset_lX" );            // se(v): delta_chroma_offset_lX
1824            }
1825          }
1826        }
1827      }
1828    }
1829    assert(uiTotalSignalledWeightFlags<=24);
1830  }
1831}
1832
1833/** code quantization matrix
1834 *  \param scalingList quantization matrix information
1835 */
1836Void TEncCavlc::codeScalingList( TComScalingList* scalingList )
1837{
1838  UInt listId,sizeId;
1839  Bool scalingListPredModeFlag;
1840
1841#if SCALING_LIST_OUTPUT_RESULT
1842  Int startBit;
1843  Int startTotalBit;
1844  startBit = m_pcBitIf->getNumberOfWrittenBits();
1845  startTotalBit = m_pcBitIf->getNumberOfWrittenBits();
1846#endif
1847
1848    //for each size
1849    for(sizeId = 0; sizeId < SCALING_LIST_SIZE_NUM; sizeId++)
1850    {
1851      for(listId = 0; listId < g_scalingListNum[sizeId]; listId++)
1852      {
1853#if SCALING_LIST_OUTPUT_RESULT
1854        startBit = m_pcBitIf->getNumberOfWrittenBits();
1855#endif
1856        scalingListPredModeFlag = scalingList->checkPredMode( sizeId, listId );
1857        WRITE_FLAG( scalingListPredModeFlag, "scaling_list_pred_mode_flag" );
1858        if(!scalingListPredModeFlag)// Copy Mode
1859        {
1860          WRITE_UVLC( (Int)listId - (Int)scalingList->getRefMatrixId (sizeId,listId), "scaling_list_pred_matrix_id_delta");
1861        }
1862        else// DPCM Mode
1863        {
1864          xCodeScalingList(scalingList, sizeId, listId);
1865        }
1866#if SCALING_LIST_OUTPUT_RESULT
1867        printf("Matrix [%d][%d] Bit %d\n",sizeId,listId,m_pcBitIf->getNumberOfWrittenBits() - startBit);
1868#endif
1869      }
1870    }
1871#if SCALING_LIST_OUTPUT_RESULT
1872  printf("Total Bit %d\n",m_pcBitIf->getNumberOfWrittenBits()-startTotalBit);
1873#endif
1874  return;
1875}
1876/** code DPCM
1877 * \param scalingList quantization matrix information
1878 * \param sizeIdc size index
1879 * \param listIdc list index
1880 */
1881Void TEncCavlc::xCodeScalingList(TComScalingList* scalingList, UInt sizeId, UInt listId)
1882{
1883  Int coefNum = min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId]);
1884  UInt* scan  = (sizeId == 0) ? g_auiSigLastScan [ SCAN_DIAG ] [ 1 ] :  g_sigLastScanCG32x32;
1885  Int nextCoef = SCALING_LIST_START_VALUE;
1886  Int data;
1887  Int *src = scalingList->getScalingListAddress(sizeId, listId);
1888    if( sizeId > SCALING_LIST_8x8 )
1889    {
1890      WRITE_SVLC( scalingList->getScalingListDC(sizeId,listId) - 8, "scaling_list_dc_coef_minus8");
1891      nextCoef = scalingList->getScalingListDC(sizeId,listId);
1892    }
1893    for(Int i=0;i<coefNum;i++)
1894    {
1895      data = src[scan[i]] - nextCoef;
1896      nextCoef = src[scan[i]];
1897      if(data > 127)
1898      {
1899        data = data - 256;
1900      }
1901      if(data < -128)
1902      {
1903        data = data + 256;
1904      }
1905
1906      WRITE_SVLC( data,  "scaling_list_delta_coef");
1907    }
1908}
1909Bool TEncCavlc::findMatchingLTRP ( TComSlice* pcSlice, UInt *ltrpsIndex, Int ltrpPOC, Bool usedFlag )
1910{
1911  // Bool state = true, state2 = false;
1912  Int lsb = ltrpPOC % (1<<pcSlice->getSPS()->getBitsForPOC());
1913  for (Int k = 0; k < pcSlice->getSPS()->getNumLongTermRefPicSPS(); k++)
1914  {
1915    if ( (lsb == pcSlice->getSPS()->getLtRefPicPocLsbSps(k)) && (usedFlag == pcSlice->getSPS()->getUsedByCurrPicLtSPSFlag(k)) )
1916    {
1917      *ltrpsIndex = k;
1918      return true;
1919    }
1920  }
1921  return false;
1922}
1923Bool TComScalingList::checkPredMode(UInt sizeId, UInt listId)
1924{
1925  for(Int predListIdx = (Int)listId ; predListIdx >= 0; predListIdx--)
1926  {
1927    if( !memcmp(getScalingListAddress(sizeId,listId),((listId == predListIdx) ?
1928      getScalingListDefaultAddress(sizeId, predListIdx): getScalingListAddress(sizeId, predListIdx)),sizeof(Int)*min(MAX_MATRIX_COEF_NUM,(Int)g_scalingListSize[sizeId])) // check value of matrix
1929     && ((sizeId < SCALING_LIST_16x16) || (getScalingListDC(sizeId,listId) == getScalingListDC(sizeId,predListIdx)))) // check DC value
1930    {
1931      setRefMatrixId(sizeId, listId, predListIdx);
1932      return false;
1933    }
1934  }
1935  return true;
1936}
1937//! \}
Note: See TracBrowser for help on using the repository browser.