You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/evc_ps: use get_bits_long() where needed
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user