summaryrefslogtreecommitdiff
path: root/libavcodec/hevc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-05-15 22:12:08 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-05-15 23:46:10 +0200
commit3051e7fa712dfe2136f19b7157211453895f2a3c (patch)
treefcead5de531feb3e7a2e2e22b35667847317651f /libavcodec/hevc.c
parentc64b2d480b4a35d4face9928b4265a0fda3f3dd9 (diff)
avcodec/hevc: Fix typo in num_entry_point_offsets check
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.c')
-rw-r--r--libavcodec/hevc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 199a3b9850..e55bc488b5 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -709,7 +709,7 @@ static int hls_slice_header(HEVCContext *s)
if (s->pps->tiles_enabled_flag || s->pps->entropy_coding_sync_enabled_flag) {
unsigned num_entry_point_offsets = get_ue_golomb_long(gb);
// It would be possible to bound this tighter but this here is simpler
- if (sh->num_entry_point_offsets > get_bits_left(gb)) {
+ if (num_entry_point_offsets > get_bits_left(gb)) {
av_log(s->avctx, AV_LOG_ERROR, "num_entry_point_offsets %d is invalid\n", num_entry_point_offsets);
return AVERROR_INVALIDDATA;
}