mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
hevc_ps: fix fixed_rate check
Fixes:fc429d785eSincefc429d785esplits the fixed_rate flag into general and within_cvs, check for both.
This commit is contained in:
parent
06241c3154
commit
ded4478b8b
1 changed files with 2 additions and 1 deletions
|
|
@ -409,7 +409,8 @@ static int decode_hrd(GetBitContext *gb, int common_inf_present,
|
|||
if (!hdr->flags.fixed_pic_rate_general_flag)
|
||||
hdr->flags.fixed_pic_rate_within_cvs_flag = get_bits1(gb);
|
||||
|
||||
if (hdr->flags.fixed_pic_rate_within_cvs_flag)
|
||||
if (hdr->flags.fixed_pic_rate_within_cvs_flag ||
|
||||
hdr->flags.fixed_pic_rate_general_flag)
|
||||
hdr->elemental_duration_in_tc_minus1[i] = get_ue_golomb_long(gb);
|
||||
else
|
||||
hdr->flags.low_delay_hrd_flag = get_bits1(gb);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue