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:
Michael Niedermayer 2014-08-22 23:00:41 +02:00
parent 8495c6086d
commit aaaf7261b7
1 changed files with 1 additions and 1 deletions

View File

@ -472,7 +472,7 @@ static void decode_vui(HEVCContext *s, HEVCSPS *sps)
VUI *vui = &sps->vui; VUI *vui = &sps->vui;
GetBitContext *gb = &s->HEVClc->gb; GetBitContext *gb = &s->HEVClc->gb;
GetBitContext backup; GetBitContext backup;
int sar_present, alt = 1; int sar_present, alt = 0;
av_log(s->avctx, AV_LOG_DEBUG, "Decoding VUI\n"); av_log(s->avctx, AV_LOG_DEBUG, "Decoding VUI\n");