Mercurial > libavcodec.hg
changeset 9079:37dd457573a4 libavcodec
ARM: fix missing MUL16() return type
author | mru |
---|---|
date | Sun, 01 Mar 2009 12:11:02 +0000 |
parents | 2692e0a168cf |
children | 574481826df3 |
files | arm/mathops.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/arm/mathops.h Sun Mar 01 11:16:57 2009 +0000 +++ b/arm/mathops.h Sun Mar 01 12:11:02 2009 +0000 @@ -81,7 +81,7 @@ /* signed 16x16 -> 32 multiply */ # define MUL16 MUL16 -static inline av_const MUL16(int ra, int rb) +static inline av_const int MUL16(int ra, int rb) { int rt; __asm__ ("smulbb %0, %1, %2" : "=r"(rt) : "r"(ra), "r"(rb));