mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
codecparsers: Fix bad condition in h264 parser
https://bugzilla.gnome.org/show_bug.cgi?id=711615
This commit is contained in:
parent
78f104aa61
commit
660979bbf2
1 changed files with 1 additions and 1 deletions
|
@ -1108,7 +1108,7 @@ gst_h264_parser_parse_pic_timing (GstH264NalParser * nalparser,
|
|||
vui->nal_hrd_parameters.cpb_removal_delay_length_minus1 + 1);
|
||||
READ_UINT32 (nr, tim->dpb_output_delay,
|
||||
vui->nal_hrd_parameters.dpb_output_delay_length_minus1 + 1);
|
||||
} else if (vui->nal_hrd_parameters_present_flag) {
|
||||
} else if (vui->vcl_hrd_parameters_present_flag) {
|
||||
READ_UINT32 (nr, tim->cpb_removal_delay,
|
||||
vui->vcl_hrd_parameters.cpb_removal_delay_length_minus1 + 1);
|
||||
READ_UINT32 (nr, tim->dpb_output_delay,
|
||||
|
|
Loading…
Reference in a new issue