mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-29 06:45:47 +00:00
avcodec/h264_ps: Fix shadowing
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
878f8cabe8
commit
8fb89790af
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user