# HG changeset patch # User mru # Date 1216148789 0 # Node ID 747908449de040ac7d6650a518945e4ca9dd58d0 # Parent c8b0366e066fb2189be1ad454c6f3b846dc1ff7e ARM: optimised MUL64 diff -r c8b0366e066f -r 747908449de0 armv4l/mathops.h --- a/armv4l/mathops.h Tue Jul 15 19:06:25 2008 +0000 +++ b/armv4l/mathops.h Tue Jul 15 19:06:29 2008 +0000 @@ -48,6 +48,15 @@ hi; }) #endif +static inline av_const int64_t MUL64(int a, int b) +{ + union { uint64_t x; unsigned hl[2]; } x; + asm ("smull %0, %1, %2, %3" + : "=r"(x.hl[0]), "=r"(x.hl[1]) : "r"(a), "r"(b)); + return x.x; +} +#define MUL64 MUL64 + #if defined(HAVE_ARMV5TE) /* signed 16x16 -> 32 multiply add accumulate */