Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-06-16 21:40:02 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-06-16 22:09:21 +0400
commite6f9fc4adc16d366713912839625776486c3d543 (patch)
treef2299f2708f354e71b8de1f0340b1ee7cef174c6 /libavcodec/get_bits.h
parentf7f96cf4bcc369730bb945e993bec53881e212f5 (diff)
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.h1
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 {