Browse Source

avcodec/cbs_av1: Make overread check more robust

When performing a comparison of a signed int and an unsigned int, the
signed int is first converted to an unsigned int, so that negative
values are being treated as big, positive values. This can become a
problem in an overread check, namely when an overread already happened.
So change the type of the variable containing the amount of bits that
need to be left to signed.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.3
Andreas Rheinhardt Mark Thompson 6 years ago
parent
commit
1929dd4eff
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/cbs_av1.c

+ 2
- 2
libavcodec/cbs_av1.c View File

@@ -211,8 +211,8 @@ static int cbs_av1_read_ns(CodedBitstreamContext *ctx, GetBitContext *gbc,
uint32_t n, const char *name,
const int *subscripts, uint32_t *write_to)
{
uint32_t w, m, v, extra_bit, value;
int position;
uint32_t m, v, extra_bit, value;
int position, w;

av_assert0(n > 0);



Loading…
Cancel
Save