summaryrefslogtreecommitdiff
path: root/libavcodec/x86/dca.h
Commit message (Collapse)AuthorAge
* x86: dca: Add missing multiple inclusion guardsDiego Biurrun2014-02-19
|
* dca: include dcadsp.h in {arm,x86}/dca.h for checkheadersJanne Grunau2014-02-08
|
* x86: use the inline int8x8_fmul_int32 only if inline SSE2 is availbaleJanne Grunau2014-02-08
| | | | | Fixes compilation with MSVC. Also does not rely on on earlier config.h include but include it directly.
* x86: dcadsp: implement int8x8_fmul_int32Christophe Gisquet2014-02-07
For the callable function (as opposed to the inline one): C SSE SSE2 SSE4 Win32: 47 42 29 26 Win64: 30 33 25 23 The SSE version is neither compiled nor set for ARCH_X86_64, as the inlinable function takes over. Signed-off-by: Janne Grunau <janne-libav@jannau.net>