mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/evc_ps: use get_bits_long() where needed
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
89f98acbf8
commit
199fc04d09
@ -104,8 +104,8 @@ static int vui_parameters(GetBitContext *gb, VUIParameters *vui)
|
||||
|
||||
vui->timing_info_present_flag = get_bits(gb, 1);
|
||||
if (vui->timing_info_present_flag) {
|
||||
vui->num_units_in_tick = get_bits(gb, 32);
|
||||
vui->time_scale = get_bits(gb, 32);
|
||||
vui->num_units_in_tick = get_bits_long(gb, 32);
|
||||
vui->time_scale = get_bits_long(gb, 32);
|
||||
vui->fixed_pic_rate_flag = get_bits(gb, 1);
|
||||
}
|
||||
vui->nal_hrd_parameters_present_flag = get_bits(gb, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user