summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.h
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-06-20 09:28:19 +0100
committerMans Rullgard <mans@mansr.com>2011-06-20 22:36:30 +0100
commit3146a30e612729e4a70dd10361c8a38750fa6d53 (patch)
treeff3e8e87b7668e63d27013bb59f492ecf194f99e /libavcodec/cabac.h
parentf743595e87aecc090cf6884fc681c0adf3a03cbb (diff)
x86: cabac: change 'a' constraint to 'r' in get_cabac_inline()
Nothing requires this value in %eax. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r--libavcodec/cabac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index b967da5ab6..adccf54aab 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -376,7 +376,7 @@ static av_always_inline int get_cabac_inline(CABACContext *c, uint8_t * const st
"movl %2, %a6(%5) \n\t"
"movl %1, %a7(%5) \n\t"
- :"=&a"(bit), "=&r"(low), "=&r"(range), "=&r"(tmp)
+ :"=&r"(bit), "=&r"(low), "=&r"(range), "=&r"(tmp)
:"r"(state), "r"(c),
"i"(offsetof(CABACContext, range)), "i"(offsetof(CABACContext, low)),
"i"(offsetof(CABACContext, bytestream))