diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-29 14:57:10 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-22 06:17:29 -0700 |
commit | 82dd1026cfc1d72b04019185bea4c1c9621ace3f (patch) | |
tree | 50872156bd85c747bb1aa1ad619cbe3cc95de224 /libavcodec/x86/dsputil_x86.h | |
parent | ae116cd3ed908d28b69d5198712217ec743d74f6 (diff) | |
download | ffmpeg-82dd1026cfc1d72b04019185bea4c1c9621ace3f.tar.gz |
x86: dsputil: Move hpeldsp-related declarations to a separate header
Diffstat (limited to 'libavcodec/x86/dsputil_x86.h')
-rw-r--r-- | libavcodec/x86/dsputil_x86.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libavcodec/x86/dsputil_x86.h b/libavcodec/x86/dsputil_x86.h index 9fd34fc606..5f6aca46be 100644 --- a/libavcodec/x86/dsputil_x86.h +++ b/libavcodec/x86/dsputil_x86.h @@ -22,7 +22,6 @@ #ifndef AVCODEC_X86_DSPUTIL_X86_H #define AVCODEC_X86_DSPUTIL_X86_H -#include <stddef.h> #include <stdint.h> #include "libavcodec/avcodec.h" @@ -61,17 +60,4 @@ void ff_gmc_mmx(uint8_t *dst, uint8_t *src, void ff_vector_clipf_sse(float *dst, const float *src, float min, float max, int len); -void ff_avg_pixels8_x2_mmx(uint8_t *block, const uint8_t *pixels, - ptrdiff_t line_size, int h); - -void ff_avg_pixels8_xy2_mmx(uint8_t *block, const uint8_t *pixels, - ptrdiff_t line_size, int h); -void ff_avg_pixels16_xy2_mmx(uint8_t *block, const uint8_t *pixels, - ptrdiff_t line_size, int h); - -void ff_put_pixels8_xy2_mmx(uint8_t *block, const uint8_t *pixels, - ptrdiff_t line_size, int h); -void ff_put_pixels16_xy2_mmx(uint8_t *block, const uint8_t *pixels, - ptrdiff_t line_size, int h); - #endif /* AVCODEC_X86_DSPUTIL_X86_H */ |