[FFmpeg-cvslog] r17679 - trunk/libavcodec/arm/mathops.h
mru
subversion
Sun Mar 1 13:11:02 CET 2009
Author: mru
Date: Sun Mar 1 13:11:02 2009
New Revision: 17679
Log:
ARM: fix missing MUL16() return type
Modified:
trunk/libavcodec/arm/mathops.h
Modified: trunk/libavcodec/arm/mathops.h
==============================================================================
--- trunk/libavcodec/arm/mathops.h Sun Mar 1 12:16:57 2009 (r17678)
+++ trunk/libavcodec/arm/mathops.h Sun Mar 1 13:11:02 2009 (r17679)
@@ -81,7 +81,7 @@ static inline av_const int64_t MAC64(int
/* 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));
More information about the ffmpeg-cvslog
mailing list