summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/codecs/aacenc/basic_op
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-02-24 10:22:33 -0800
committerandroid code review <noreply-gerritcodereview@google.com>2012-02-24 10:22:34 -0800
commitc6a8eec53535fcb074989b5966baec48628a6f94 (patch)
treef675c789bf139e5b528cf43879edd225a2164145 /media/libstagefright/codecs/aacenc/basic_op
parentde8b924a7f7d104af4243b1dfaef6f4480f93eea (diff)
parent721f2bb7b28891c0811a5bea31fa62644131befc (diff)
downloadframeworks_av-c6a8eec53535fcb074989b5966baec48628a6f94.zip
frameworks_av-c6a8eec53535fcb074989b5966baec48628a6f94.tar.gz
frameworks_av-c6a8eec53535fcb074989b5966baec48628a6f94.tar.bz2
Merge "stagefright aacenc: Fix an inline asm constraint"
Diffstat (limited to 'media/libstagefright/codecs/aacenc/basic_op')
-rw-r--r--media/libstagefright/codecs/aacenc/basic_op/oper_32b.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/codecs/aacenc/basic_op/oper_32b.h b/media/libstagefright/codecs/aacenc/basic_op/oper_32b.h
index 9ebd1c2..6e5844f 100644
--- a/media/libstagefright/codecs/aacenc/basic_op/oper_32b.h
+++ b/media/libstagefright/codecs/aacenc/basic_op/oper_32b.h
@@ -63,7 +63,7 @@ __inline Word32 L_mpy_wx(Word32 L_var2, Word16 var1)
Word32 result;
asm volatile(
"SMULWB %[result], %[L_var2], %[var1] \n"
- :[result]"+r"(result)
+ :[result]"=r"(result)
:[L_var2]"r"(L_var2), [var1]"r"(var1)
);
return result;