diff options
author | James Almer <jamrial@gmail.com> | 2016-08-02 14:54:06 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-08-02 15:48:04 -0300 |
commit | efc9d5c4bc40ca76063ba09017aeb86f4bad461e (patch) | |
tree | 5c7aa6ea8e701222d96e8d2dafffe6b2af6ff9cb /libavcodec/ttaencdsp.c | |
parent | 7a9a8afc8253f495c090d8aaf867549435cf6029 (diff) | |
download | ffmpeg-efc9d5c4bc40ca76063ba09017aeb86f4bad461e.tar.gz |
x86/ttaenc: add ff_ttaenc_filter_process_{ssse3,sse4}
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/ttaencdsp.c')
-rw-r--r-- | libavcodec/ttaencdsp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/ttaencdsp.c b/libavcodec/ttaencdsp.c index f407e78dd1..6ba594e9fa 100644 --- a/libavcodec/ttaencdsp.c +++ b/libavcodec/ttaencdsp.c @@ -18,6 +18,7 @@ #include "libavutil/attributes.h" #include "ttaencdsp.h" +#include "config.h" static void ttaenc_filter_process_c(int32_t *qm, int32_t *dx, int32_t *dl, int32_t *error, int32_t *in, int32_t shift, @@ -52,4 +53,7 @@ static void ttaenc_filter_process_c(int32_t *qm, int32_t *dx, int32_t *dl, av_cold void ff_ttaencdsp_init(TTAEncDSPContext *c) { c->filter_process = ttaenc_filter_process_c; + + if (ARCH_X86) + ff_ttaencdsp_init_x86(c); } |