Commit dd154198 authored by Reimar Döffinger's avatar Reimar Döffinger

Add assert that the avcodec lock is held when initializing static VLC tables.

Signed-off-by: 's avatarReimar Döffinger <Reimar.Doeffinger@gmx.de>
parent 7feef7db
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include "libavutil/avassert.h" #include "libavutil/avassert.h"
#include "avcodec.h" #include "avcodec.h"
#include "internal.h"
#include "mathops.h" #include "mathops.h"
#include "get_bits.h" #include "get_bits.h"
#include "put_bits.h" #include "put_bits.h"
...@@ -275,6 +276,7 @@ int ff_init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes, ...@@ -275,6 +276,7 @@ int ff_init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
}else if(vlc->table_size){ }else if(vlc->table_size){
abort(); // fatal error, we are called on a partially initialized table abort(); // fatal error, we are called on a partially initialized table
} }
av_assert0(ff_avcodec_locked);
}else { }else {
vlc->table = NULL; vlc->table = NULL;
vlc->table_allocated = 0; vlc->table_allocated = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment