Home
last modified time | relevance | path

Searched refs:dither_int_to_float (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavresample/x86/
Ddither_init.c47 ddsp->dither_int_to_float = ff_dither_int_to_float_rectangular_sse2; in ff_dither_init_x86()
50 ddsp->dither_int_to_float = ff_dither_int_to_float_rectangular_avx; in ff_dither_init_x86()
54 ddsp->dither_int_to_float = ff_dither_int_to_float_triangular_sse2; in ff_dither_init_x86()
57 ddsp->dither_int_to_float = ff_dither_int_to_float_triangular_avx; in ff_dither_init_x86()
/third_party/ffmpeg/libavresample/
Ddither.c164 c->ddsp.dither_int_to_float(state->noise_buf, noise_buf_ui, nb_samples); in generate_dither_noise()
337 ddsp->dither_int_to_float = dither_int_to_float_rectangular_c; in dither_init()
339 ddsp->dither_int_to_float = dither_int_to_float_triangular_c; in dither_init()
Ddither.h54 void (*dither_int_to_float)(float *dst, int *src0, int len); member