mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
codecparsers: read the cbr_flag in h264_parse_hrd_parameters
This commit is contained in:
parent
cf74b0bc76
commit
657226d9f0
1 changed files with 1 additions and 0 deletions
|
@ -518,6 +518,7 @@ gst_h264_parse_hrd_parameters (GstH264HRDParams * hrd, NalReader * nr)
|
|||
for (sched_sel_idx = 0; sched_sel_idx <= hrd->cpb_cnt_minus1; sched_sel_idx++) {
|
||||
READ_UE (nr, hrd->bit_rate_value_minus1[sched_sel_idx]);
|
||||
READ_UE (nr, hrd->cpb_size_value_minus1[sched_sel_idx]);
|
||||
READ_UINT8 (nr, hrd->cbr_flag[sched_sel_idx], 1);
|
||||
}
|
||||
|
||||
READ_UINT8 (nr, hrd->initial_cpb_removal_delay_length_minus1, 5);
|
||||
|
|
Loading…
Reference in a new issue