Browse Source

ARM: fix missing MUL16() return type

Originally committed as revision 17679 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 17 years ago
parent
commit
4cd19f6e78
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/arm/mathops.h

+ 1
- 1
libavcodec/arm/mathops.h View File

@@ -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));


Loading…
Cancel
Save