diff options
author | Mans Rullgard <mans@mansr.com> | 2012-01-12 00:17:45 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-01-28 14:56:18 +0000 |
commit | aac46e088d67a390489af686b846dea4987d8ffb (patch) | |
tree | 500b708b111678eb47bcf5fba78b0c64015ce150 /libavcodec/Makefile | |
parent | 7181c4edee636beaf520344766ae5bd8a9d9d15a (diff) | |
download | ffmpeg-aac46e088d67a390489af686b846dea4987d8ffb.tar.gz |
aacsbr: move some simdable loops to function pointers
This prepares for assembly optimisations by moving the most
time-consuming loops to functions called through pointers
in a new context.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index ef2aa9626f..27f8546644 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -52,7 +52,8 @@ OBJS-$(CONFIG_VDPAU) += vdpau.o OBJS-$(CONFIG_A64MULTI_ENCODER) += a64multienc.o elbg.o OBJS-$(CONFIG_A64MULTI5_ENCODER) += a64multienc.o elbg.o OBJS-$(CONFIG_AAC_DECODER) += aacdec.o aactab.o aacsbr.o aacps.o \ - aacadtsdec.o mpeg4audio.o kbdwin.o + aacadtsdec.o mpeg4audio.o kbdwin.o \ + sbrdsp.o OBJS-$(CONFIG_AAC_ENCODER) += aacenc.o aaccoder.o \ aacpsy.o aactab.o \ psymodel.o iirfilter.o \ |