diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-06-16 19:40:02 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-16 20:09:21 +0200 |
commit | e6f9fc4adc16d366713912839625776486c3d543 (patch) | |
tree | f2299f2708f354e71b8de1f0340b1ee7cef174c6 /libavcodec/get_bits.h | |
parent | f7f96cf4bcc369730bb945e993bec53881e212f5 (diff) | |
download | ffmpeg-e6f9fc4adc16d366713912839625776486c3d543.tar.gz |
avcodec/bitstream: try to make vlc init code inherently thread safe
also remove spinlock, it doesnt work on AIX
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/get_bits.h')
-rw-r--r-- | libavcodec/get_bits.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h index ddcef50bd0..d8d7b6ea08 100644 --- a/libavcodec/get_bits.h +++ b/libavcodec/get_bits.h @@ -64,7 +64,6 @@ typedef struct VLC { int bits; VLC_TYPE (*table)[2]; ///< code, bits int table_size, table_allocated; - void * volatile init_state; } VLC; typedef struct RL_VLC_ELEM { |