Home
last modified time | relevance | path

Searched refs:reorder_pixels (Results 1 – 7 of 7) sorted by relevance

/third_party/ffmpeg/libavcodec/x86/
Dexrdsp_init.c40 dsp->reorder_pixels = ff_reorder_pixels_sse2; in ff_exrdsp_init_x86()
49 dsp->reorder_pixels = ff_reorder_pixels_avx2; in ff_exrdsp_init_x86()
Dexrdsp.asm5 ;* reorder_pixels, predictor based on patch by John Loy
39 cglobal reorder_pixels, 3,4,3, dst, src1, size, src2
/third_party/ffmpeg/libavcodec/
Dexrdsp.h26 void (*reorder_pixels)(uint8_t *dst, const uint8_t *src, ptrdiff_t size); member
Dexrdsp.c51 c->reorder_pixels = reorder_pixels_scalar; in ff_exrdsp_init()
Dexrenc.c151 static void reorder_pixels(uint8_t *dst, const uint8_t *src, ptrdiff_t size) in reorder_pixels() function
256 reorder_pixels(scanline->tmp, scanline->uncompressed_data, tmp_size); in encode_scanline_rle()
325 reorder_pixels(scanline->tmp, scanline->uncompressed_data, tmp_size); in encode_scanline_zip()
Dexr.c210 s->dsp.reorder_pixels(td->uncompressed_data, td->tmp, uncompressed_size); in zip_uncompress()
265 ctx->dsp.reorder_pixels(td->uncompressed_data, td->tmp, uncompressed_size); in rle_uncompress()
1084 s->dsp.reorder_pixels(td->dc_data, td->dc_data + FFALIGN(dest_len, 64), dest_len); in dwa_uncompress()
/third_party/ffmpeg/tests/checkasm/
Dexrdsp.c83 if (check_func(h.reorder_pixels, "reorder_pixels")) in checkasm_check_exrdsp()