diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2016-01-03 01:19:23 +0100 |
---|---|---|
committer | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2016-01-03 21:12:53 +0100 |
commit | 43ff4aed26cba2cce230972add631ab938d33b30 (patch) | |
tree | 55e3e95735f6946b852d3bb97ae5ae7c4722760a /libavcodec/hevc.c | |
parent | 713654d9d3a6931a9b4cd0cffa4bb61cd1357977 (diff) | |
download | ffmpeg-43ff4aed26cba2cce230972add631ab938d33b30.tar.gz |
lavc: use get_bitsz to simplify the code
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Diffstat (limited to 'libavcodec/hevc.c')
-rw-r--r-- | libavcodec/hevc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index 33c6ee2d62..c245d3b7e9 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -469,7 +469,7 @@ static int hls_slice_header(HEVCContext *s) slice_address_length = av_ceil_log2(s->ps.sps->ctb_width * s->ps.sps->ctb_height); - sh->slice_segment_addr = slice_address_length ? get_bits(gb, slice_address_length) : 0; + sh->slice_segment_addr = get_bitsz(gb, slice_address_length); if (sh->slice_segment_addr >= s->ps.sps->ctb_width * s->ps.sps->ctb_height) { av_log(s->avctx, AV_LOG_ERROR, "Invalid slice segment address: %u.\n", |