Commit 6651ce17 authored by Måns Rullgård's avatar Måns Rullgård

ARM: ARMv6 optimised FASTDIV

Originally committed as revision 14242 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent de0e19cc
......@@ -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) \
({\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment