Searched refs:work_pixel (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | vf_w3fdif.c | 166 static void filter_scale(uint8_t *out_pixel, const int32_t *work_pixel, int linesize, int max) in filter_scale() argument 170 for (j = 0; j < linesize; j++, out_pixel++, work_pixel++) in filter_scale() 171 *out_pixel = av_clip(*work_pixel, 0, 255 * 256 * 128) >> 15; in filter_scale() 263 static void filter16_scale(uint8_t *out_pixel8, const int32_t *work_pixel, int linesize, int max) in filter16_scale() argument 269 for (j = 0; j < linesize; j++, out_pixel++, work_pixel++) in filter16_scale() 270 *out_pixel = av_clip(*work_pixel, 0, max) >> 15; in filter16_scale() 370 int32_t *work_line, *work_pixel; in deinterlace_plane_slice() local 454 work_pixel = s->work_line[jobnr]; in deinterlace_plane_slice() 457 s->dsp.filter_scale(out_pixel, work_pixel, linesize, max); in deinterlace_plane_slice()
|
H A D | w3fdif.h | 42 void (*filter_scale)(uint8_t *out_pixel, const int32_t *work_pixel,
|
/third_party/ffmpeg/libavfilter/x86/ |
H A D | vf_w3fdif_init.c | 45 void ff_w3fdif_scale_sse2(uint8_t *out_pixel, const int32_t *work_pixel,
|
H A D | vf_w3fdif.asm | 28 cglobal w3fdif_scale, 3, 3, 2, 0, out_pixel, work_pixel, linesize
|
Completed in 3 milliseconds