diff options
author | Diego Biurrun | 2014-01-10 14:57:59 +0100 |
---|---|---|
committer | Diego Biurrun | 2014-03-26 04:31:27 -0700 |
commit | 8011ac911b3f282b9fb64a0fc15404f8bfc7b7ed (patch) | |
tree | ad757387e43051a3a44c40c5a34549058c750005 /libavcodec/hpeldsp.c | |
parent | 2c01ad8b206d326700974438f7193f22be416eb1 (diff) |
hpeldsp_template: Detemplatize the code
The indirection makes no sense without multiple instantiation.
Diffstat (limited to 'libavcodec/hpeldsp.c')
-rw-r--r-- | libavcodec/hpeldsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hpeldsp.c b/libavcodec/hpeldsp.c index 9fee199869..aa4e23604d 100644 --- a/libavcodec/hpeldsp.c +++ b/libavcodec/hpeldsp.c @@ -32,6 +32,8 @@ #include "hpeldsp.h" #define BIT_DEPTH 8 +#include "hpel_template.c" +#include "tpel_template.c" #include "hpeldsp_template.c" av_cold void ff_hpeldsp_init(HpelDSPContext *c, int flags) |