mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/hevc_ps: fix 1 vs. 0 typo
Found-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8495c6086d
commit
aaaf7261b7
|
@ -472,7 +472,7 @@ static void decode_vui(HEVCContext *s, HEVCSPS *sps)
|
|||
VUI *vui = &sps->vui;
|
||||
GetBitContext *gb = &s->HEVClc->gb;
|
||||
GetBitContext backup;
|
||||
int sar_present, alt = 1;
|
||||
int sar_present, alt = 0;
|
||||
|
||||
av_log(s->avctx, AV_LOG_DEBUG, "Decoding VUI\n");
|
||||
|
||||
|
|
Loading…
Reference in New Issue