diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-01 12:51:30 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-07-02 01:16:37 +0100 |
commit | 2f0accf1038350a01a7b52f3cbe75a554f7438a3 (patch) | |
tree | 5ab9d3bc501e38121a3d5db2b6d8ccae77e41c45 /libavfilter/gradfun.h | |
parent | fc31508e3a7894efd8d084e3bc483f958dfdd726 (diff) | |
download | ffmpeg-2f0accf1038350a01a7b52f3cbe75a554f7438a3.tar.gz |
vf_gradfun: move x86 init code to x86/gradfun.c
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavfilter/gradfun.h')
-rw-r--r-- | libavfilter/gradfun.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libavfilter/gradfun.h b/libavfilter/gradfun.h index 6b192a3113..5d011309c6 100644 --- a/libavfilter/gradfun.h +++ b/libavfilter/gradfun.h @@ -37,12 +37,9 @@ typedef struct { void (*blur_line) (uint16_t *dc, uint16_t *buf, uint16_t *buf1, uint8_t *src, int src_linesize, int width); } GradFunContext; +void ff_gradfun_init_x86(GradFunContext *gf); + void ff_gradfun_filter_line_c(uint8_t *dst, uint8_t *src, uint16_t *dc, int width, int thresh, const uint16_t *dithers); void ff_gradfun_blur_line_c(uint16_t *dc, uint16_t *buf, uint16_t *buf1, uint8_t *src, int src_linesize, int width); -void ff_gradfun_filter_line_mmx2(uint8_t *dst, uint8_t *src, uint16_t *dc, int width, int thresh, const uint16_t *dithers); -void ff_gradfun_filter_line_ssse3(uint8_t *dst, uint8_t *src, uint16_t *dc, int width, int thresh, const uint16_t *dithers); - -void ff_gradfun_blur_line_sse2(uint16_t *dc, uint16_t *buf, uint16_t *buf1, uint8_t *src, int src_linesize, int width); - #endif /* AVFILTER_GRADFUN_H */ |