]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/bitstream: Consistently treat symbol as VLC_TYPE
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sun, 25 Oct 2020 23:05:26 +0000 (00:05 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 27 Oct 2020 09:34:23 +0000 (10:34 +0100)
If a static VLC table gets initialized a second time (or concurrently by
two threads) and if said VLC table uses symbols that have the sign bit
of VLC_TYPE (a typedef for int16_t) set, initializing the VLC fails. The
reason is that the type of the symbol in the temporary array is an
uint16_t and so comparing it to the symbol read from the VLC table will
fail, because only the lower 16bits coincide. Said failure triggers an
assert.

Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/bitstream.c

index 77c2b9ce054996cf7567a3e3f10ce0c9b698149f..2685ff296804ee282c485ba5cf6f62d0e457c143 100644 (file)
@@ -129,7 +129,7 @@ static int alloc_table(VLC *vlc, int size, int use_static)
 
 typedef struct VLCcode {
     uint8_t bits;
-    uint16_t symbol;
+    VLC_TYPE symbol;
     /** codeword, with the first bit-to-be-read in the msb
      * (even if intended for a little-endian bitstream reader) */
     uint32_t code;