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