diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-05 22:47:41 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-09-15 23:54:21 +0100 |
commit | 7689eea49ae70591fa9cf26b09b315821d25b9bf (patch) | |
tree | af53f7c08b15e7f455e4b2bb9fbb710d8f622492 /libavcodec/flacdsp.c | |
parent | c1c8fdab46414e3518400d6ee18916d2444a06d7 (diff) | |
download | ffmpeg-7689eea49ae70591fa9cf26b09b315821d25b9bf.tar.gz |
flacdsp: arm optimised lpc filter
Diffstat (limited to 'libavcodec/flacdsp.c')
-rw-r--r-- | libavcodec/flacdsp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/flacdsp.c b/libavcodec/flacdsp.c index 88d689d3eb..3f4f71076c 100644 --- a/libavcodec/flacdsp.c +++ b/libavcodec/flacdsp.c @@ -21,6 +21,7 @@ #include "libavutil/attributes.h" #include "libavutil/samplefmt.h" #include "flacdsp.h" +#include "config.h" #define SAMPLE_SIZE 16 #define PLANAR 0 @@ -119,4 +120,7 @@ av_cold void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt, c->decorrelate[3] = flac_decorrelate_ms_c_16p; break; } + + if (ARCH_ARM) + ff_flacdsp_init_arm(c, fmt, bps); } |