diff options
author | Christopher Degawa <ccom@randomderp.com> | 2021-08-17 10:35:39 -0500 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2021-08-19 22:29:23 +0300 |
commit | 8990c5869e27fcd43b53045f87ba251f42e7d293 (patch) | |
tree | f102c66f2fe2d6db1cb01a381e07ac7e0cf23eb1 /libavcodec/x86/cabac.h | |
parent | c64d56a2f53455f803456811873ff08fce98e122 (diff) | |
download | ffmpeg-8990c5869e27fcd43b53045f87ba251f42e7d293.tar.gz |
get_cabac_inline_x86: Don't inline if 32-bit clang on windows
Fixes https://trac.ffmpeg.org/ticket/8903
relevant https://github.com/msys2/MINGW-packages/discussions/9258
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/x86/cabac.h')
-rw-r--r-- | libavcodec/x86/cabac.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libavcodec/x86/cabac.h b/libavcodec/x86/cabac.h index 53d74c541e..b046a56a6b 100644 --- a/libavcodec/x86/cabac.h +++ b/libavcodec/x86/cabac.h @@ -177,8 +177,13 @@ #if HAVE_7REGS && !BROKEN_COMPILER #define get_cabac_inline get_cabac_inline_x86 -static av_always_inline int get_cabac_inline_x86(CABACContext *c, - uint8_t *const state) +static +#if defined(_WIN32) && !defined(_WIN64) && defined(__clang__) +av_noinline +#else +av_always_inline +#endif +int get_cabac_inline_x86(CABACContext *c, uint8_t *const state) { int bit, tmp; #ifdef BROKEN_RELOCATIONS |