avcodec/golomb: Assert that the input is not too large in set_ue_golomb()

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/262/head
Michael Niedermayer 8 years ago
parent 6e09e12641
commit db93fd74e4
  1. 1
      libavcodec/golomb.h

@ -463,6 +463,7 @@ static inline int get_te(GetBitContext *s, int r, char *file, const char *func,
static inline void set_ue_golomb(PutBitContext *pb, int i)
{
av_assert2(i >= 0);
av_assert2(i <= 0xFFFE);
if (i < 256)
put_bits(pb, ff_ue_golomb_len[i], i + 1);

Loading…
Cancel
Save