aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/flacdsp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-09-16 14:48:45 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-16 14:55:00 +0200
commite80cbdbc57292a4687339f6a7d30e0dcff42f9e8 (patch)
treec71ab556c3aa7a3307a39e24f7250d9645958aa8 /libavcodec/flacdsp.c
parent744e4429cf9a2ac5c7c1e4ed8bfbb6f9f09a882a (diff)
parent2568646abb6568b1d329f800a046832adc48acd4 (diff)
downloadandroid_external_ffmpeg-e80cbdbc57292a4687339f6a7d30e0dcff42f9e8.tar.gz
android_external_ffmpeg-e80cbdbc57292a4687339f6a7d30e0dcff42f9e8.tar.bz2
android_external_ffmpeg-e80cbdbc57292a4687339f6a7d30e0dcff42f9e8.zip
Merge remote-tracking branch 'qatar/master'
* qatar/master: mpegvideo: drop unnecessary arguments to hpel_motion() mpegvideo: drop 'inline' from some functions nellymoserdec: drop support for s16 output. bmpdec: only initialize palette for pal8. build: Properly remove object files while cleaning flacdsp: arm optimised lpc filter compat/vsnprintf: return number of bytes required on truncation. Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/flacdsp.c')
-rw-r--r--libavcodec/flacdsp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/flacdsp.c b/libavcodec/flacdsp.c
index 6c2458fc10..e51a91a07c 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);
}