Commit ded4478b authored by llyyr's avatar llyyr Committed by Derek Buitenhuis

hevc_ps: fix fixed_rate check

Fixes: fc429d78

Since fc429d78 splits the fixed_rate
flag into general and within_cvs, check for both.
parent 06241c31
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment