diff options
author | Matt Oliver <protogonoi@gmail.com> | 2014-05-07 14:16:26 +1000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-05-07 15:02:45 +0200 |
commit | 1898c2f49da3151fbce04ecf35971005707a609d (patch) | |
tree | 8a34d0bdd66b30c062c1a24d8bdf7b9759d40d2a /libavcodec/x86/cabac.h | |
parent | 134206ca7a3d395c827e6a041f7f01e5fb9e1693 (diff) | |
download | ffmpeg-1898c2f49da3151fbce04ecf35971005707a609d.tar.gz |
inline asm: fix arrays as named constraints.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/x86/cabac.h')
-rw-r--r-- | libavcodec/x86/cabac.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/x86/cabac.h b/libavcodec/x86/cabac.h index 7c816dfd79..3510336f95 100644 --- a/libavcodec/x86/cabac.h +++ b/libavcodec/x86/cabac.h @@ -111,7 +111,7 @@ "2: \n\t" #else /* BROKEN_RELOCATIONS */ -#define TABLES_ARG NAMED_CONSTRAINTS_ADD(ff_h264_cabac_tables) +#define TABLES_ARG NAMED_CONSTRAINTS_ARRAY_ADD(ff_h264_cabac_tables) #define RIP_ARG #if HAVE_FAST_CMOV @@ -185,7 +185,7 @@ static av_always_inline int get_cabac_inline_x86(CABACContext *c, __asm__ volatile( "lea "MANGLE(ff_h264_cabac_tables)", %0 \n\t" : "=&r"(tables) - : NAMED_CONSTRAINTS(ff_h264_cabac_tables) + : NAMED_CONSTRAINTS_ARRAY(ff_h264_cabac_tables) ); #endif |