diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2014-06-14 14:11:03 -0400 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-14 20:21:39 +0200 |
commit | 7128a35f8c4bdfb8b749b1e453c69cfd15eb9f07 (patch) | |
tree | 700bc35394d23ae6159fe50f6f1c7737ab705a7c /libswresample/Makefile | |
parent | 9236f7b5a23b4907f7b2bf6346ecd88e6d76f1e0 (diff) | |
download | ffmpeg-7128a35f8c4bdfb8b749b1e453c69cfd15eb9f07.tar.gz |
swr: split out DSP functions.
DSP bits of swri_resample go into their own mini-DSP functions; DSP
init goes from a per-call branch in multiple_resample to a proper
DSP init routine; x86 bits go into x86/; swri_resample() moves out of
resample_template.c into resample.c because it's independent of DSP
code or sample type; multiple_resample() is simplified.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/Makefile')
-rw-r--r-- | libswresample/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/Makefile b/libswresample/Makefile index 953c9452a9..ca59d54581 100644 --- a/libswresample/Makefile +++ b/libswresample/Makefile @@ -10,6 +10,7 @@ OBJS = audioconvert.o \ dither.o \ rematrix.o \ resample.o \ + resample_dsp.o \ swresample.o \ OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o |