source: 3DVCSoftware/branches/HTM-DEV-0.3-dev2/source/Lib/TLibEncoder/TEncCavlc.cpp @ 533

Last change on this file since 533 was 533, checked in by tech, 11 years ago

Fixed byte alignment in VPS.

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