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:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-09 22:25:06 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-15 08:29:42 +0300
commitb41e4f6187a10e729288fcf9ff5584f47a6a34e9 (patch)
tree5ad602db0e941cf595e8783620655d5772150b2d /libavcodec/h264_cavlc.c
parentcc15bb0bbf86dbc855aaa307fa16dab3de0426ff (diff)
avcodec/h264_cavlc: Remove redundant check
The only caller to ff_h264_decode_init_vlc() already uses ff_thread_once() for the call; ergo the check via a simple int with static storage duration in ff_h264_decode_init_vlc() is redundant. And if it were not redundant, it would be a potential for data races. So remove it. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/h264_cavlc.c')
-rw-r--r--libavcodec/h264_cavlc.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/h264_cavlc.c b/libavcodec/h264_cavlc.c
index 6481992e58..d0548d84f6 100644
--- a/libavcodec/h264_cavlc.c
+++ b/libavcodec/h264_cavlc.c
@@ -325,12 +325,8 @@ static av_cold void init_cavlc_level_tab(void){
}
av_cold void ff_h264_decode_init_vlc(void){
- static int done = 0;
-
- if (!done) {
int i;
int offset;
- done = 1;
chroma_dc_coeff_token_vlc.table = chroma_dc_coeff_token_vlc_table;
chroma_dc_coeff_token_vlc.table_allocated = chroma_dc_coeff_token_vlc_table_size;
@@ -410,7 +406,6 @@ av_cold void ff_h264_decode_init_vlc(void){
INIT_VLC_USE_NEW_STATIC);
init_cavlc_level_tab();
- }
}
static inline int get_level_prefix(GetBitContext *gb){