nalutils: Fix Exponential-Golomb 'ue' parsing

The algorithm we use only supports up to a maximum exponent of 31
(for a maximum resulting of 2**32 -1)

CID #1427097
This commit is contained in:
Edward Hervey 2018-01-02 15:23:00 +01:00 committed by Edward Hervey
parent e6fe51a3ac
commit 7ecb3dc917

View file

@ -219,7 +219,7 @@ nal_reader_get_ue (NalReader * nr, guint32 * val)
return FALSE;
}
if (G_UNLIKELY (i > 32))
if (G_UNLIKELY (i > 31))
return FALSE;
if (G_UNLIKELY (!nal_reader_get_bits_uint32 (nr, &value, i)))