ARM: ARMv6 optimised FASTDIV

Originally committed as revision 14242 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2008-07-15 19:06:18 +00:00
parent de0e19cc38
commit 6651ce17b8

View File

@ -154,6 +154,13 @@ extern const uint32_t ff_inverse[256];
);\
ret;\
})
#elif defined(HAVE_ARMV6)
static inline av_const int FASTDIV(int a, int b)
{
int r;
asm volatile("smmul %0, %1, %2" : "=r"(r) : "r"(a), "r"(ff_inverse[b]));
return r;
}
#elif defined(ARCH_ARMV4L)
# define FASTDIV(a,b) \
({\