mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01: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
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue