mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avformat/evc: use get_bits_long() where needed
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
377da83b99
commit
048b8bdd5e
@ -134,8 +134,8 @@ static int evcc_parse_sps(const uint8_t *bs, int bs_size, EVCDecoderConfiguratio
|
||||
|
||||
sps.level_idc = get_bits(&gb, 8);
|
||||
|
||||
sps.toolset_idc_h = get_bits(&gb, 32);
|
||||
sps.toolset_idc_l = get_bits(&gb, 32);
|
||||
sps.toolset_idc_h = get_bits_long(&gb, 32);
|
||||
sps.toolset_idc_l = get_bits_long(&gb, 32);
|
||||
|
||||
// 0 - monochrome
|
||||
// 1 - 4:2:0
|
||||
|
Loading…
Reference in New Issue
Block a user