1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This file contains an implementation of an H264 Annex-B video stream parser.
7 #ifndef MEDIA_FILTERS_H264_PARSER_H_
8 #define MEDIA_FILTERS_H264_PARSER_H_
10 #include <sys/types.h>
15 #include "base/basictypes.h"
16 #include "media/base/media_export.h"
17 #include "media/base/ranges.h"
18 #include "media/filters/h264_bit_reader.h"
22 struct SubsampleEntry
;
24 // For explanations of each struct and its members, see H.264 specification
25 // at http://www.itu.int/rec/T-REC-H.264.
26 struct MEDIA_EXPORT H264NALU
{
50 kCodedSliceExtension
= 20,
53 // After (without) start code; we don't own the underlying memory
54 // and a shallow copy should be made when copying this struct.
56 off_t size
; // From after start code to start code of next NALU (or EOS).
63 kH264ScalingList4x4Length
= 16,
64 kH264ScalingList8x8Length
= 64,
67 struct MEDIA_EXPORT H264SPS
{
71 kProfileIDCBaseline
= 66,
72 kProfileIDCConstrainedBaseline
= kProfileIDCBaseline
,
74 kProfileIDCHigh
= 100,
82 // Constants for HRD parameters (spec ch. E.2.2).
83 kBitRateScaleConstantTerm
= 6, // Equation E-37.
84 kCPBSizeScaleConstantTerm
= 4, // Equation E-38.
85 kDefaultInitialCPBRemovalDelayLength
= 24,
86 kDefaultDPBOutputDelayLength
= 24,
87 kDefaultTimeOffsetLength
= 24,
91 bool constraint_set0_flag
;
92 bool constraint_set1_flag
;
93 bool constraint_set2_flag
;
94 bool constraint_set3_flag
;
95 bool constraint_set4_flag
;
96 bool constraint_set5_flag
;
98 int seq_parameter_set_id
;
100 int chroma_format_idc
;
101 bool separate_colour_plane_flag
;
102 int bit_depth_luma_minus8
;
103 int bit_depth_chroma_minus8
;
104 bool qpprime_y_zero_transform_bypass_flag
;
106 bool seq_scaling_matrix_present_flag
;
107 int scaling_list4x4
[6][kH264ScalingList4x4Length
];
108 int scaling_list8x8
[6][kH264ScalingList8x8Length
];
110 int log2_max_frame_num_minus4
;
111 int pic_order_cnt_type
;
112 int log2_max_pic_order_cnt_lsb_minus4
;
113 bool delta_pic_order_always_zero_flag
;
114 int offset_for_non_ref_pic
;
115 int offset_for_top_to_bottom_field
;
116 int num_ref_frames_in_pic_order_cnt_cycle
;
117 int expected_delta_per_pic_order_cnt_cycle
; // calculated
118 int offset_for_ref_frame
[255];
119 int max_num_ref_frames
;
120 bool gaps_in_frame_num_value_allowed_flag
;
121 int pic_width_in_mbs_minus1
;
122 int pic_height_in_map_units_minus1
;
123 bool frame_mbs_only_flag
;
124 bool mb_adaptive_frame_field_flag
;
125 bool direct_8x8_inference_flag
;
126 bool frame_cropping_flag
;
127 int frame_crop_left_offset
;
128 int frame_crop_right_offset
;
129 int frame_crop_top_offset
;
130 int frame_crop_bottom_offset
;
132 bool vui_parameters_present_flag
;
133 int sar_width
; // Set to 0 when not specified.
134 int sar_height
; // Set to 0 when not specified.
135 bool bitstream_restriction_flag
;
136 int max_num_reorder_frames
;
137 int max_dec_frame_buffering
;
138 bool timing_info_present_flag
;
139 int num_units_in_tick
;
141 bool fixed_frame_rate_flag
;
143 // TODO(posciak): actually parse these instead of ParseAndIgnoreHRDParameters.
144 bool nal_hrd_parameters_present_flag
;
148 int bit_rate_value_minus1
[32];
149 int cpb_size_value_minus1
[32];
151 int initial_cpb_removal_delay_length_minus_1
;
152 int cpb_removal_delay_length_minus1
;
153 int dpb_output_delay_length_minus1
;
154 int time_offset_length
;
156 bool low_delay_hrd_flag
;
158 int chroma_array_type
;
161 struct MEDIA_EXPORT H264PPS
{
164 int pic_parameter_set_id
;
165 int seq_parameter_set_id
;
166 bool entropy_coding_mode_flag
;
167 bool bottom_field_pic_order_in_frame_present_flag
;
168 int num_slice_groups_minus1
;
169 // TODO(posciak): Slice groups not implemented, could be added at some point.
170 int num_ref_idx_l0_default_active_minus1
;
171 int num_ref_idx_l1_default_active_minus1
;
172 bool weighted_pred_flag
;
173 int weighted_bipred_idc
;
174 int pic_init_qp_minus26
;
175 int pic_init_qs_minus26
;
176 int chroma_qp_index_offset
;
177 bool deblocking_filter_control_present_flag
;
178 bool constrained_intra_pred_flag
;
179 bool redundant_pic_cnt_present_flag
;
180 bool transform_8x8_mode_flag
;
182 bool pic_scaling_matrix_present_flag
;
183 int scaling_list4x4
[6][kH264ScalingList4x4Length
];
184 int scaling_list8x8
[6][kH264ScalingList8x8Length
];
186 int second_chroma_qp_index_offset
;
189 struct MEDIA_EXPORT H264ModificationOfPicNum
{
190 int modification_of_pic_nums_idc
;
192 int abs_diff_pic_num_minus1
;
193 int long_term_pic_num
;
197 struct MEDIA_EXPORT H264WeightingFactors
{
198 bool luma_weight_flag
;
199 bool chroma_weight_flag
;
202 int chroma_weight
[32][2];
203 int chroma_offset
[32][2];
206 struct MEDIA_EXPORT H264DecRefPicMarking
{
207 int memory_mgmnt_control_operation
;
208 int difference_of_pic_nums_minus1
;
209 int long_term_pic_num
;
210 int long_term_frame_idx
;
211 int max_long_term_frame_idx_plus1
;
214 struct MEDIA_EXPORT H264SliceHeader
{
219 kRefListModSize
= kRefListSize
230 bool IsPSlice() const;
231 bool IsBSlice() const;
232 bool IsISlice() const;
233 bool IsSPSlice() const;
234 bool IsSISlice() const;
236 bool idr_pic_flag
; // from NAL header
237 int nal_ref_idc
; // from NAL header
238 const uint8
* nalu_data
; // from NAL header
239 off_t nalu_size
; // from NAL header
240 off_t header_bit_size
; // calculated
242 int first_mb_in_slice
;
244 int pic_parameter_set_id
;
245 int colour_plane_id
; // TODO(posciak): use this! http://crbug.com/139878
248 bool bottom_field_flag
;
250 int pic_order_cnt_lsb
;
251 int delta_pic_order_cnt_bottom
;
252 int delta_pic_order_cnt0
;
253 int delta_pic_order_cnt1
;
254 int redundant_pic_cnt
;
255 bool direct_spatial_mv_pred_flag
;
257 bool num_ref_idx_active_override_flag
;
258 int num_ref_idx_l0_active_minus1
;
259 int num_ref_idx_l1_active_minus1
;
260 bool ref_pic_list_modification_flag_l0
;
261 bool ref_pic_list_modification_flag_l1
;
262 H264ModificationOfPicNum ref_list_l0_modifications
[kRefListModSize
];
263 H264ModificationOfPicNum ref_list_l1_modifications
[kRefListModSize
];
265 int luma_log2_weight_denom
;
266 int chroma_log2_weight_denom
;
268 bool luma_weight_l0_flag
;
269 bool chroma_weight_l0_flag
;
270 H264WeightingFactors pred_weight_table_l0
;
272 bool luma_weight_l1_flag
;
273 bool chroma_weight_l1_flag
;
274 H264WeightingFactors pred_weight_table_l1
;
276 bool no_output_of_prior_pics_flag
;
277 bool long_term_reference_flag
;
279 bool adaptive_ref_pic_marking_mode_flag
;
280 H264DecRefPicMarking ref_pic_marking
[kRefListSize
];
284 bool sp_for_switch_flag
;
286 int disable_deblocking_filter_idc
;
287 int slice_alpha_c0_offset_div2
;
288 int slice_beta_offset_div2
;
291 // Size in bits of dec_ref_pic_marking() syntax element.
292 size_t dec_ref_pic_marking_bit_size
;
293 size_t pic_order_cnt_bit_size
;
296 struct H264SEIRecoveryPoint
{
297 int recovery_frame_cnt
;
298 bool exact_match_flag
;
299 bool broken_link_flag
;
300 int changing_slice_group_idc
;
303 struct MEDIA_EXPORT H264SEIMessage
{
307 kSEIRecoveryPoint
= 6,
313 // Placeholder; in future more supported types will contribute to more
314 // union members here.
315 H264SEIRecoveryPoint recovery_point
;
319 // Class to parse an Annex-B H.264 stream,
320 // as specified in chapters 7 and Annex B of the H.264 spec.
321 class MEDIA_EXPORT H264Parser
{
325 kInvalidStream
, // error in stream
326 kUnsupportedStream
, // stream not supported by the parser
327 kEOStream
, // end of stream
330 // Find offset from start of data to next NALU start code
331 // and size of found start code (3 or 4 bytes).
332 // If no start code is found, offset is pointing to the first unprocessed byte
333 // (i.e. the first byte that was not considered as a possible start of a start
334 // code) and |*start_code_size| is set to 0.
336 // - |data_size| >= 0
338 // - |*offset| is between 0 and |data_size| included.
339 // It is strictly less than |data_size| if |data_size| > 0.
340 // - |*start_code_size| is either 0, 3 or 4.
341 static bool FindStartCode(const uint8
* data
, off_t data_size
,
342 off_t
* offset
, off_t
* start_code_size
);
348 // Set current stream pointer to |stream| of |stream_size| in bytes,
349 // |stream| owned by caller.
350 // |subsamples| contains information about what parts of |stream| are
352 void SetStream(const uint8
* stream
, off_t stream_size
);
353 void SetEncryptedStream(const uint8
* stream
, off_t stream_size
,
354 const std::vector
<SubsampleEntry
>& subsamples
);
356 // Read the stream to find the next NALU, identify it and return
357 // that information in |*nalu|. This advances the stream to the beginning
358 // of this NALU, but not past it, so subsequent calls to NALU-specific
359 // parsing functions (ParseSPS, etc.) will parse this NALU.
360 // If the caller wishes to skip the current NALU, it can call this function
361 // again, instead of any NALU-type specific parse functions below.
362 Result
AdvanceToNextNALU(H264NALU
* nalu
);
364 // NALU-specific parsing functions.
365 // These should be called after AdvanceToNextNALU().
367 // SPSes and PPSes are owned by the parser class and the memory for their
368 // structures is managed here, not by the caller, as they are reused
371 // Parse an SPS/PPS NALU and save their data in the parser, returning id
372 // of the parsed structure in |*pps_id|/|*sps_id|.
373 // To get a pointer to a given SPS/PPS structure, use GetSPS()/GetPPS(),
374 // passing the returned |*sps_id|/|*pps_id| as parameter.
375 // TODO(posciak,fischman): consider replacing returning Result from Parse*()
376 // methods with a scoped_ptr and adding an AtEOS() function to check for EOS
377 // if Parse*() return NULL.
378 Result
ParseSPS(int* sps_id
);
379 Result
ParsePPS(int* pps_id
);
381 // Return a pointer to SPS/PPS with given |sps_id|/|pps_id| or NULL if not
383 const H264SPS
* GetSPS(int sps_id
);
384 const H264PPS
* GetPPS(int pps_id
);
386 // Slice headers and SEI messages are not used across NALUs by the parser
387 // and can be discarded after current NALU, so the parser does not store
388 // them, nor does it manage their memory.
389 // The caller has to provide and manage it instead.
391 // Parse a slice header, returning it in |*shdr|. |*nalu| must be set to
392 // the NALU returned from AdvanceToNextNALU() and corresponding to |*shdr|.
393 Result
ParseSliceHeader(const H264NALU
& nalu
, H264SliceHeader
* shdr
);
395 // Parse a SEI message, returning it in |*sei_msg|, provided and managed
397 Result
ParseSEI(H264SEIMessage
* sei_msg
);
400 // Move the stream pointer to the beginning of the next NALU,
401 // i.e. pointing at the next start code.
402 // Return true if a NALU has been found.
403 // If a NALU is found:
404 // - its size in bytes is returned in |*nalu_size| and includes
405 // the start code as well as the trailing zero bits.
406 // - the size in bytes of the start code is returned in |*start_code_size|.
407 bool LocateNALU(off_t
* nalu_size
, off_t
* start_code_size
);
409 // Wrapper for FindStartCode() that skips over start codes that
410 // may appear inside of |encrypted_ranges_|.
411 // Returns true if a start code was found. Otherwise returns false.
412 bool FindStartCodeInClearRanges(const uint8
* data
, off_t data_size
,
413 off_t
* offset
, off_t
* start_code_size
);
415 // Exp-Golomb code parsing as specified in chapter 9.1 of the spec.
416 // Read one unsigned exp-Golomb code from the stream and return in |*val|.
417 Result
ReadUE(int* val
);
419 // Read one signed exp-Golomb code from the stream and return in |*val|.
420 Result
ReadSE(int* val
);
422 // Parse scaling lists (see spec).
423 Result
ParseScalingList(int size
, int* scaling_list
, bool* use_default
);
424 Result
ParseSPSScalingLists(H264SPS
* sps
);
425 Result
ParsePPSScalingLists(const H264SPS
& sps
, H264PPS
* pps
);
427 // Parse optional VUI parameters in SPS (see spec).
428 Result
ParseVUIParameters(H264SPS
* sps
);
429 // Set |hrd_parameters_present| to true only if they are present.
430 Result
ParseAndIgnoreHRDParameters(bool* hrd_parameters_present
);
432 // Parse reference picture lists' modifications (see spec).
433 Result
ParseRefPicListModifications(H264SliceHeader
* shdr
);
434 Result
ParseRefPicListModification(int num_ref_idx_active_minus1
,
435 H264ModificationOfPicNum
* ref_list_mods
);
437 // Parse prediction weight table (see spec).
438 Result
ParsePredWeightTable(const H264SPS
& sps
, H264SliceHeader
* shdr
);
440 // Parse weighting factors (see spec).
441 Result
ParseWeightingFactors(int num_ref_idx_active_minus1
,
442 int chroma_array_type
,
443 int luma_log2_weight_denom
,
444 int chroma_log2_weight_denom
,
445 H264WeightingFactors
* w_facts
);
447 // Parse decoded reference picture marking information (see spec).
448 Result
ParseDecRefPicMarking(H264SliceHeader
* shdr
);
450 // Pointer to the current NALU in the stream.
451 const uint8
* stream_
;
453 // Bytes left in the stream after the current NALU.
458 // PPSes and SPSes stored for future reference.
459 typedef std::map
<int, H264SPS
*> SPSById
;
460 typedef std::map
<int, H264PPS
*> PPSById
;
461 SPSById active_SPSes_
;
462 PPSById active_PPSes_
;
464 // Ranges of encrypted bytes in the buffer passed to
465 // SetEncryptedStream().
466 Ranges
<const uint8
*> encrypted_ranges_
;
468 DISALLOW_COPY_AND_ASSIGN(H264Parser
);
473 #endif // MEDIA_FILTERS_H264_PARSER_H_