diff options
author | Diego Biurrun <diego@biurrun.de> | 2016-01-11 15:53:41 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-07-20 18:33:25 +0200 |
commit | 1dfc3cf89d0eb026af28be46294b85d79499ffb5 (patch) | |
tree | e44e700d395f7b4c8d327ef47191c1efb541b6f7 /libavcodec/x86/hpeldsp.h | |
parent | 9833a406d3d743d238e4cbee08ffcaa12e067dd2 (diff) | |
download | ffmpeg-1dfc3cf89d0eb026af28be46294b85d79499ffb5.tar.gz |
x86: hpeldsp: Split off VP3-specific bits into a separate file
Diffstat (limited to 'libavcodec/x86/hpeldsp.h')
-rw-r--r-- | libavcodec/x86/hpeldsp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/x86/hpeldsp.h b/libavcodec/x86/hpeldsp.h index 47b0b8b825..d624ed9d78 100644 --- a/libavcodec/x86/hpeldsp.h +++ b/libavcodec/x86/hpeldsp.h @@ -22,6 +22,8 @@ #include <stddef.h> #include <stdint.h> +#include "libavcodec/hpeldsp.h" + void ff_avg_pixels8_x2_mmx(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h); @@ -35,4 +37,6 @@ void ff_put_pixels8_xy2_mmx(uint8_t *block, const uint8_t *pixels, void ff_put_pixels16_xy2_mmx(uint8_t *block, const uint8_t *pixels, ptrdiff_t line_size, int h); +void ff_hpeldsp_vp3_init_x86(HpelDSPContext *c, int cpu_flags, int flags); + #endif /* AVCODEC_X86_HPELDSP_H */ |