|
FFmpeg
|
#include "libavutil/attributes.h"#include "libavutil/cpu.h"#include "libavutil/x86/cpu.h"#include "libavfilter/gradfun.h"Go to the source code of this file.
Functions | |
| void | ff_gradfun_filter_line_ssse3 (intptr_t x, uint8_t *dst, const uint8_t *src, const uint16_t *dc, int thresh, const uint16_t *dithers) |
| void | ff_gradfun_blur_line_movdqa_sse2 (intptr_t x, uint16_t *buf, const uint16_t *buf1, uint16_t *dc, const uint8_t *src1, const uint8_t *src2) |
| void | ff_gradfun_blur_line_movdqu_sse2 (intptr_t x, uint16_t *buf, const uint16_t *buf1, uint16_t *dc, const uint8_t *src1, const uint8_t *src2) |
| static void | gradfun_filter_line_ssse3 (uint8_t *dst, const uint8_t *src, const uint16_t *dc, int width, int thresh, const uint16_t *dithers) |
| static void | gradfun_blur_line_sse2 (uint16_t *dc, uint16_t *buf, const uint16_t *buf1, const uint8_t *src, int src_linesize, int width) |
| av_cold void | ff_gradfun_init_x86 (GradFunContext *gf) |
| void ff_gradfun_filter_line_ssse3 | ( | intptr_t | x, |
| uint8_t * | dst, | ||
| const uint8_t * | src, | ||
| const uint16_t * | dc, | ||
| int | thresh, | ||
| const uint16_t * | dithers | ||
| ) |
Referenced by gradfun_filter_line_ssse3().
| void ff_gradfun_blur_line_movdqa_sse2 | ( | intptr_t | x, |
| uint16_t * | buf, | ||
| const uint16_t * | buf1, | ||
| uint16_t * | dc, | ||
| const uint8_t * | src1, | ||
| const uint8_t * | src2 | ||
| ) |
Referenced by gradfun_blur_line_sse2().
| void ff_gradfun_blur_line_movdqu_sse2 | ( | intptr_t | x, |
| uint16_t * | buf, | ||
| const uint16_t * | buf1, | ||
| uint16_t * | dc, | ||
| const uint8_t * | src1, | ||
| const uint8_t * | src2 | ||
| ) |
Referenced by gradfun_blur_line_sse2().
|
static |
Definition at line 37 of file vf_gradfun_init.c.
Referenced by ff_gradfun_init_x86().
|
static |
Definition at line 54 of file vf_gradfun_init.c.
Referenced by ff_gradfun_init_x86().
| av_cold void ff_gradfun_init_x86 | ( | GradFunContext * | gf | ) |
Definition at line 68 of file vf_gradfun_init.c.
Referenced by init().
1.8.17