Browse Source

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

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
tags/n1.1
Reimar Döffinger 13 years ago
parent
commit
dd154198b1
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/bitstream.c

+ 2
- 0
libavcodec/bitstream.c View File

@@ -30,6 +30,7 @@

#include "libavutil/avassert.h"
#include "avcodec.h"
#include "internal.h"
#include "mathops.h"
#include "get_bits.h"
#include "put_bits.h"
@@ -275,6 +276,7 @@ int ff_init_vlc_sparse(VLC *vlc, int nb_bits, int nb_codes,
}else if(vlc->table_size){
abort(); // fatal error, we are called on a partially initialized table
}
av_assert0(ff_avcodec_locked);
}else {
vlc->table = NULL;
vlc->table_allocated = 0;


Loading…
Cancel
Save