diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-06 16:07:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-06 16:24:27 +0200 |
commit | 66537c7efd4ec69056f116e6c10480bb1655b680 (patch) | |
tree | a93fc11fd8cd2e9a1c7cb3345191ed3bd3a9a920 | |
parent | 32de28053d23fe70a1b99e143757494a4ef15d07 (diff) | |
download | ffmpeg-66537c7efd4ec69056f116e6c10480bb1655b680.tar.gz |
avcodec/x86/cabac: Disable get_cabac_bypass_x86() on broken llvm/clang
This should fix fate on these platforms
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/x86/cabac.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/cabac.h b/libavcodec/x86/cabac.h index 1c24dc3398..ee5885f471 100644 --- a/libavcodec/x86/cabac.h +++ b/libavcodec/x86/cabac.h @@ -230,6 +230,7 @@ static av_always_inline int get_cabac_bypass_sign_x86(CABACContext *c, int val) return val; } +#if !BROKEN_COMPILER #define get_cabac_bypass get_cabac_bypass_x86 static av_always_inline int get_cabac_bypass_x86(CABACContext *c) { @@ -269,6 +270,7 @@ static av_always_inline int get_cabac_bypass_x86(CABACContext *c) ); return res; } +#endif /* !BROKEN_COMPILER */ #endif /* HAVE_INLINE_ASM */ #endif /* AVCODEC_X86_CABAC_H */ |