diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-29 12:49:24 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:31:27 -0700 |
commit | efc7290eb668ce77ef28d0ab9958024d0a35fbe8 (patch) | |
tree | b450ea6566d6055ccdab82f27d9f27df870ffc5f /libavcodec/x86/hpeldsp_init.c | |
parent | 55d7f26e7bcf1dfb69ee986aa9fc21c62e0b3ae6 (diff) | |
download | ffmpeg-efc7290eb668ce77ef28d0ab9958024d0a35fbe8.tar.gz |
x86: hpeldsp: Keep all rnd_template instantiations in hpeldsp_init
There is no point in having a separate file just for the instantiation
that provides the public functions.
Diffstat (limited to 'libavcodec/x86/hpeldsp_init.c')
-rw-r--r-- | libavcodec/x86/hpeldsp_init.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/x86/hpeldsp_init.c b/libavcodec/x86/hpeldsp_init.c index 86e41bcb9b..1cc3bacd15 100644 --- a/libavcodec/x86/hpeldsp_init.c +++ b/libavcodec/x86/hpeldsp_init.c @@ -128,6 +128,12 @@ CALL_2X_PIXELS(put_no_rnd_pixels16_xy2_mmx, put_no_rnd_pixels8_xy2_mmx, 8) #include "hpeldsp_rnd_template.c" #undef DEF +#define DEF(x, y) ff_ ## x ## _ ## y ## _mmx +#define STATIC + +#include "rnd_template.c" + +#undef DEF #undef SET_RND #undef PAVGBP #undef PAVGB @@ -135,6 +141,9 @@ CALL_2X_PIXELS(put_no_rnd_pixels16_xy2_mmx, put_no_rnd_pixels8_xy2_mmx, 8) CALL_2X_PIXELS(avg_pixels16_y2_mmx, avg_pixels8_y2_mmx, 8) CALL_2X_PIXELS(put_pixels16_y2_mmx, put_pixels8_y2_mmx, 8) +CALL_2X_PIXELS_EXPORT(ff_avg_pixels16_xy2_mmx, ff_avg_pixels8_xy2_mmx, 8) +CALL_2X_PIXELS_EXPORT(ff_put_pixels16_xy2_mmx, ff_put_pixels8_xy2_mmx, 8) + #endif /* HAVE_INLINE_ASM */ |