avcodec/h264_ps: Fix shadowing

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2024-03-06 21:03:12 +01:00
parent 878f8cabe8
commit 8fb89790af
1 changed files with 1 additions and 1 deletions

View File

@ -522,7 +522,7 @@ int ff_h264_decode_seq_parameter_set(GetBitContext *gb, AVCodecContext *avctx,
sps->vui_parameters_present_flag = get_bits1(gb);
if (sps->vui_parameters_present_flag) {
int ret = decode_vui_parameters(gb, avctx, sps);
ret = decode_vui_parameters(gb, avctx, sps);
if (ret < 0)
goto fail;
}