Searched refs:ddsp (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/x86/
H A Ddither_init.c34 av_cold void ff_dither_init_x86(DitherDSPContext *ddsp, argument
40 ddsp->quantize = ff_quantize_sse2;
41 ddsp->ptr_align = 16;
42 ddsp->samples_align = 8;
47 ddsp->dither_int_to_float = ff_dither_int_to_float_rectangular_sse2;
50 ddsp->dither_int_to_float = ff_dither_int_to_float_rectangular_avx;
54 ddsp->dither_int_to_float = ff_dither_int_to_float_triangular_sse2;
57 ddsp->dither_int_to_float = ff_dither_int_to_float_triangular_avx;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/
H A Ddither.h90 void ff_dither_init_x86(DitherDSPContext *ddsp,
H A Ddither.c55 DitherDSPContext ddsp; member in struct:DitherContext
164 c->ddsp.dither_int_to_float(state->noise_buf, noise_buf_ui, nb_samples);
282 int aligned_len = FFALIGN(src->nb_samples, c->ddsp.samples_align);
284 if (!(ptr_align % c->ddsp.ptr_align) && samples_align >= aligned_len) {
285 c->quantize = c->ddsp.quantize;
286 c->samples_align = c->ddsp.samples_align;
329 static av_cold void dither_init(DitherDSPContext *ddsp, argument
332 ddsp->quantize = quantize_c;
333 ddsp->ptr_align = 1;
334 ddsp
[all...]

Completed in 68 milliseconds