mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
avcodec/h264_ps: Fix shadowing
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
d0edc1f8e2
commit
4afa994405
@ -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