mirror of https://git.ffmpeg.org/ffmpeg.git
aacdec: restore arm32 dequantization optimizations
Unintentionally removed as part of 03cf101645
.
Untested, but its assumed that unlike most of the old ARM code,
this one was still working.
This commit is contained in:
parent
37db0454e4
commit
baf8651d56
|
@ -79,6 +79,11 @@ static const float cce_scale[] = {
|
|||
#include "aacdec_tab.h"
|
||||
#include "libavutil/intfloat.h"
|
||||
|
||||
#include "config.h"
|
||||
#if ARCH_ARM
|
||||
#include "libavcodec/arm/aac.h"
|
||||
#endif
|
||||
|
||||
#ifndef VMUL2
|
||||
static inline float *VMUL2(float *dst, const float *v, unsigned idx,
|
||||
const float *scale)
|
||||
|
|
Loading…
Reference in New Issue