From: Måns Rullgård Date: Sun, 1 Mar 2009 12:11:02 +0000 (+0000) Subject: ARM: fix missing MUL16() return type X-Git-Tag: v0.5~52 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4cd19f6e7851ee6afb08eb346c82d5574fa2b699;p=platform%2Fupstream%2Flibav.git ARM: fix missing MUL16() return type Originally committed as revision 17679 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/arm/mathops.h b/libavcodec/arm/mathops.h index de2d530..0d8e044 100644 --- a/libavcodec/arm/mathops.h +++ b/libavcodec/arm/mathops.h @@ -81,7 +81,7 @@ static inline av_const int64_t MAC64(int64_t d, int a, int b) /* 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));