mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/cabac_functions: fix "warning: UNCHECKED_BITSTREAM_READER is not defined, evaluates to 0"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
baee313aa9
commit
a67b6c9541
|
@ -32,6 +32,10 @@
|
||||||
#include "cabac.h"
|
#include "cabac.h"
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
|
#ifndef UNCHECKED_BITSTREAM_READER
|
||||||
|
#define UNCHECKED_BITSTREAM_READER !CONFIG_SAFE_BITSTREAM_READER
|
||||||
|
#endif
|
||||||
|
|
||||||
#if ARCH_AARCH64
|
#if ARCH_AARCH64
|
||||||
# include "aarch64/cabac.h"
|
# include "aarch64/cabac.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue