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
@ -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…
x
Reference in New Issue
Block a user