Shaka Packager SDK
h265_parser.h
1 // Copyright 2016 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #ifndef PACKAGER_MEDIA_CODECS_H265_PARSER_H_
8 #define PACKAGER_MEDIA_CODECS_H265_PARSER_H_
9 
10 #include <map>
11 #include <memory>
12 #include <vector>
13 
14 #include "packager/media/codecs/h26x_bit_reader.h"
15 
16 namespace shaka {
17 namespace media {
18 
19 class Nalu;
20 
21 enum H265SliceType { kBSlice = 0, kPSlice = 1, kISlice = 2 };
22 
23 const int kMaxRefPicSetCount = 16;
24 
25 // On success, |coded_width| and |coded_height| contains coded resolution after
26 // cropping; |pixel_width:pixel_height| contains pixel aspect ratio, 1:1 is
27 // assigned if it is not present in SPS.
28 struct H265Sps;
29 bool ExtractResolutionFromSps(const H265Sps& sps,
30  uint32_t* coded_width,
31  uint32_t* coded_height,
32  uint32_t* pixel_width,
33  uint32_t* pixel_height);
34 
36  int delta_poc_s0[kMaxRefPicSetCount];
37  int delta_poc_s1[kMaxRefPicSetCount];
38  bool used_by_curr_pic_s0[kMaxRefPicSetCount];
39  bool used_by_curr_pic_s1[kMaxRefPicSetCount];
40 
41  int num_negative_pics;
42  int num_positive_pics;
43  int num_delta_pocs;
44 };
45 
47  enum { kExtendedSar = 255 };
48 
49  bool aspect_ratio_info_present_flag = false;
50  int aspect_ratio_idc = 0;
51  int sar_width = 0;
52  int sar_height = 0;
53 
54  bool bitstream_restriction_flag = false;
55  int min_spatial_segmentation_idc = 0;
56 
57  // Incomplete...
58 };
59 
60 struct H265Pps {
61  H265Pps();
62  ~H265Pps();
63 
64  // Many of the fields here are required when parsing so the default here may
65  // not be valid.
66 
67  int pic_parameter_set_id = 0;
68  int seq_parameter_set_id = 0;
69 
70  bool dependent_slice_segments_enabled_flag = false;
71  bool output_flag_present_flag = false;
72  int num_extra_slice_header_bits = 0;
73  bool sign_data_hiding_enabled_flag = false;
74  bool cabac_init_present_flag = false;
75 
76  int num_ref_idx_l0_default_active_minus1 = 0;
77  int num_ref_idx_l1_default_active_minus1 = 0;
78  int init_qp_minus26 = 0;
79  bool constrained_intra_pred_flag = false;
80  bool transform_skip_enabled_flag = false;
81 
82  bool cu_qp_delta_enabled_flag = 0;
83  int diff_cu_qp_delta_depth = 0;
84  int cb_qp_offset = 0;
85  int cr_qp_offset = 0;
86 
87  bool slice_chroma_qp_offsets_present_flag = false;
88  bool weighted_pred_flag = false;
89  bool weighted_bipred_flag = false;
90  bool transquant_bypass_enabled_flag = false;
91  bool tiles_enabled_flag = false;
92  bool entropy_coding_sync_enabled_flag = false;
93 
94  int num_tile_columns_minus1 = 0;
95  int num_tile_rows_minus1 = 0;
96  bool uniform_spacing_flag = true;
97  std::vector<int> column_width_minus1;
98  std::vector<int> row_height_minus1;
99  bool loop_filter_across_tiles_enabled_flag = true;
100 
101  bool loop_filter_across_slices_enabled_flag = false;
102  bool deblocking_filter_control_present_flag = false;
103  bool deblocking_filter_override_enabled_flag = false;
104  bool deblocking_filter_disabled_flag = false;
105  int beta_offset_div2 = 0;
106  int tc_offset_div2 = 0;
107 
108  bool scaling_list_data_present_flag = false;
109  // Ignored: scaling_list_data( )
110 
111  bool lists_modification_present_flag = false;
112  int log2_parallel_merge_level_minus2 = 0;
113  bool slice_segment_header_extension_present_flag = false;
114 
115  // Incomplete: pps_range_extension:
116  bool chroma_qp_offset_list_enabled_flag = false;
117 
118  // Ignored: extensions...
119 };
120 
121 struct H265Sps {
122  H265Sps();
123  ~H265Sps();
124 
125  int GetPicSizeInCtbsY() const;
126  int GetChromaArrayType() const;
127 
128  // Many of the fields here are required when parsing so the default here may
129  // not be valid.
130 
131  int video_parameter_set_id = 0;
132  int max_sub_layers_minus1 = 0;
133  bool temporal_id_nesting_flag = false;
134 
135  // general_profile_space (2), general_tier_flag (1), general_profile_idc (5),
136  // general_profile_compatibility_flags (32),
137  // general_constraint_indicator_flags (48), general_level_idc (8).
138  int general_profile_tier_level_data[12] = {};
139 
140  int seq_parameter_set_id = 0;
141 
142  int chroma_format_idc = 0;
143  bool separate_colour_plane_flag = false;
144  int pic_width_in_luma_samples = 0;
145  int pic_height_in_luma_samples = 0;
146 
147  bool conformance_window_flag = false;
148  int conf_win_left_offset = 0;
149  int conf_win_right_offset = 0;
150  int conf_win_top_offset = 0;
151  int conf_win_bottom_offset = 0;
152 
153  int bit_depth_luma_minus8 = 0;
154  int bit_depth_chroma_minus8 = 0;
155  int log2_max_pic_order_cnt_lsb_minus4 = 0;
156 
157  bool sub_layer_ordering_info_present_flag = false;
158  int max_dec_pic_buffering_minus1[8];
159  int max_num_reorder_pics[8];
160  int max_latency_increase_plus1[8];
161 
162  int log2_min_luma_coding_block_size_minus3 = 0;
163  int log2_diff_max_min_luma_coding_block_size = 0;
164  int log2_min_luma_transform_block_size_minus2 = 0;
165  int log2_diff_max_min_luma_transform_block_size = 0;
166  int max_transform_hierarchy_depth_inter = 0;
167  int max_transform_hierarchy_depth_intra = 0;
168 
169  bool scaling_list_enabled_flag = false;
170  bool scaling_list_data_present_flag = false;
171  // Ignored: scaling_list_data()
172 
173  bool amp_enabled_flag = false;
174  bool sample_adaptive_offset_enabled_flag = false;
175  bool pcm_enabled_flag = false;
176  int pcm_sample_bit_depth_luma_minus1 = 0;
177  int pcm_sample_bit_depth_chroma_minus1 = 0;
178  int log2_min_pcm_luma_coding_block_size_minus3 = 0;
179  int log2_diff_max_min_pcm_luma_coding_block_size = 0;
180  bool pcm_loop_filter_disabled_flag = false;
181 
182  int num_short_term_ref_pic_sets = 0;
183  std::vector<H265ReferencePictureSet> st_ref_pic_sets;
184 
185  bool long_term_ref_pic_present_flag = false;
186  int num_long_term_ref_pics = 0;
187  std::vector<int> lt_ref_pic_poc_lsb;
188  std::vector<bool> used_by_curr_pic_lt_flag;
189 
190  bool temporal_mvp_enabled_flag = false;
191  bool strong_intra_smoothing_enabled_flag = false;
192 
193  bool vui_parameters_present = false;
194  H265VuiParameters vui_parameters;
195 
196  // Ignored: extensions...
197 };
198 
202 
203  bool ref_pic_list_modification_flag_l0 = false;
204  std::vector<int> list_entry_l0;
205 
206  bool ref_pic_list_modification_flag_l1 = false;
207  std::vector<int> list_entry_l1;
208 };
209 
211  H265SliceHeader();
212  ~H265SliceHeader();
213 
215  bool delta_poc_msb_present_flag;
216  int delta_poc_msb_cycle_lt;
217  };
218  // This is the value UsedByCurrPicLt for the current slice segment. This
219  // value is calulated from the LongTermPicsInfo during parsing.
220  int used_by_curr_pic_lt = 0;
221 
222  // Many of the fields here are required when parsing so the default here may
223  // not be valid.
224 
225  // This is the size of the slice header not including the nalu header byte.
226  // Sturcture: |NALU Header | Slice Header | Slice Data |
227  // Size: |<- 16bits ->|<- header_bit_size ->|<- Rest of nalu ->|
228  // Note that this is not a field in the H.265 spec.
229  size_t header_bit_size = 0;
230 
231  bool first_slice_segment_in_pic_flag = false;
232  bool no_output_of_prior_pics_flag = false;
233  int pic_parameter_set_id = 0;
234 
235  bool dependent_slice_segment_flag = false;
236  int segment_address = 0;
237  int slice_type = 0;
238  bool pic_output_flag = true;
239  int colour_plane_id = 0;
240  int slice_pic_order_cnt_lsb = 0;
241 
242  bool short_term_ref_pic_set_sps_flag = false;
243  H265ReferencePictureSet st_ref_pic_set;
244  int short_term_ref_pic_set_idx = 0;
245 
246  int num_long_term_sps = 0;
247  int num_long_term_pics = 0;
248  std::vector<LongTermPicsInfo> long_term_pics_info;
249 
250  bool slice_temporal_mvp_enabled_flag = false;
251  bool slice_sao_luma_flag = false;
252  bool slice_sao_chroma_flag = false;
253 
254  bool num_ref_idx_active_override_flag = false;
255  int num_ref_idx_l0_active_minus1 = 0;
256  int num_ref_idx_l1_active_minus1 = 0;
257 
258  H265ReferencePictureListModifications ref_pic_lists_modification;
259 
260  bool mvd_l1_zero_flag = false;
261  bool cabac_init_flag = false;
262  bool collocated_from_l0 = true;
263  int collocated_ref_idx = 0;
264 
265  int five_minus_max_num_merge_cand = 0;
266  int slice_qp_delta = 0;
267  int slice_cb_qp_offset = 0;
268  int slice_cr_qp_offset = 0;
269 
270  bool cu_chroma_qp_offset_enabled_flag = false;
271  bool deblocking_filter_override_flag = false;
272  bool slice_deblocking_filter_disabled_flag = false;
273  int slice_beta_offset_div2 = 0;
274  int slice_tc_offset_div2 = 0;
275  bool slice_loop_filter_across_slices_enabled_flag = false;
276 
277  int num_entry_point_offsets = 0;
278  int offset_len_minus1 = 0;
279  std::vector<int> entry_point_offset_minus1;
280 };
281 
285 class H265Parser {
286  public:
287  enum Result {
288  kOk,
289  kInvalidStream, // error in stream
290  kUnsupportedStream, // stream not supported by the parser
291  kEOStream, // end of stream
292  };
293 
294  H265Parser();
295  ~H265Parser();
296 
300  Result ParseSliceHeader(const Nalu& nalu, H265SliceHeader* slice_header);
301 
304  Result ParsePps(const Nalu& nalu, int* pps_id);
307  Result ParseSps(const Nalu& nalu, int* sps_id);
308 
310  const H265Pps* GetPps(int pps_id);
312  const H265Sps* GetSps(int sps_id);
313 
314  private:
315  Result ParseVuiParameters(int max_num_sub_layers_minus1,
316  H26xBitReader* br,
317  H265VuiParameters* vui);
318 
319  Result ParseReferencePictureSet(
320  int num_short_term_ref_pic_sets,
321  int st_rpx_idx,
322  const std::vector<H265ReferencePictureSet>& ref_pic_sets,
323  H26xBitReader* br,
324  H265ReferencePictureSet* st_ref_pic_set);
325 
326  Result SkipReferencePictureListModification(
327  const H265SliceHeader& slice_header,
328  const H265Pps& pps,
329  int num_pic_total_curr,
330  H26xBitReader* br);
331 
332  Result SkipPredictionWeightTablePart(int num_ref_idx_minus1,
333  int chroma_array_type,
334  H26xBitReader* br);
335 
336  Result SkipPredictionWeightTable(bool is_b_slice,
337  const H265Sps& sps,
338  const H265SliceHeader& slice_header,
339  H26xBitReader* br);
340 
341  Result ReadProfileTierLevel(bool profile_present,
342  int max_num_sub_layers_minus1,
343  H26xBitReader* br,
344  H265Sps* sps);
345 
346  Result SkipScalingListData(H26xBitReader* br);
347 
348  Result SkipHrdParameters(int max_num_sub_layers_minus1, H26xBitReader* br);
349 
350  Result SkipSubLayerHrdParameters(int cpb_cnt_minus1,
351  bool sub_pic_hdr_params_present_flag,
352  H26xBitReader* br);
353 
354  typedef std::map<int, std::unique_ptr<H265Sps>> SpsById;
355  typedef std::map<int, std::unique_ptr<H265Pps>> PpsById;
356 
357  SpsById active_spses_;
358  PpsById active_ppses_;
359 
360  DISALLOW_COPY_AND_ASSIGN(H265Parser);
361 };
362 
363 } // namespace media
364 } // namespace shaka
365 
366 #endif // PACKAGER_MEDIA_CODECS_H265_PARSER_H_
All the methods that are virtual are virtual for mocking.