mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
codecparsers: h264: fix parsing of VUI parameters.
max_dec_frame_buffering was mis-parsed because log2_max_mv_length_vertical was parsed twice. https://bugzilla.gnome.org/show_bug.cgi?id=668660
This commit is contained in:
parent
dcc13e3eba
commit
4964db6a1c
1 changed files with 0 additions and 1 deletions
|
@ -623,7 +623,6 @@ gst_h264_parse_vui_parameters (GstH264SPS * sps, NalReader * nr)
|
|||
READ_UE_ALLOWED (nr, vui->max_bits_per_mb_denom, 0, 16);
|
||||
READ_UE_ALLOWED (nr, vui->log2_max_mv_length_horizontal, 0, 16);
|
||||
READ_UE_ALLOWED (nr, vui->log2_max_mv_length_vertical, 0, 16);
|
||||
READ_UE_ALLOWED (nr, vui->log2_max_mv_length_vertical, 0, 16);
|
||||
READ_UE (nr, vui->num_reorder_frames);
|
||||
READ_UE (nr, vui->max_dec_frame_buffering);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue