mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 13:55:41 +00:00
h264parse: fix default time_offset_length
The default value for time_offset_length should be 24, see section E2.2 of the H264 spec. https://bugzilla.gnome.org/show_bug.cgi?id=767792
This commit is contained in:
parent
dc762166f3
commit
378051d80a
1 changed files with 1 additions and 1 deletions
|
@ -947,7 +947,7 @@ gst_h264_parse_clock_timestamp (GstH264ClockTimestamp * tim,
|
|||
}
|
||||
}
|
||||
|
||||
time_offset_length = 0;
|
||||
time_offset_length = 24;
|
||||
if (vui->nal_hrd_parameters_present_flag)
|
||||
time_offset_length = vui->nal_hrd_parameters.time_offset_length;
|
||||
else if (vui->vcl_hrd_parameters_present_flag)
|
||||
|
|
Loading…
Reference in a new issue