Home
last modified time | relevance | path

Searched refs:apply_window (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/ppc/
Dmpegaudiodsp_altivec.c48 static void apply_window(const float *buf, const float *win1, in apply_window() function
108 apply_window(in + 16, win , win + 512, suma, sumc, 16); in apply_window_mp3()
109 apply_window(in + 32, win + 48, win + 640, sumb, sumd, 16); in apply_window_mp3()
/third_party/ffmpeg/libavcodec/x86/
Dmpegaudiodsp.c68 static void apply_window(const float *buf, const float *win1, in apply_window() function
144 apply_window(in + 16, win , win + 512, suma, sumc, 16); in apply_window_mp3()
145 apply_window(in + 32, win + 48, win + 640, sumb, sumd, 16); in apply_window_mp3()
/third_party/ffmpeg/libavcodec/aarch64/
Dmpegaudiodsp_neon.S34 .macro apply_window type, st macro
209 apply_window fixed, h
225 apply_window float, s
/third_party/ffmpeg/libavcodec/
Daacenc.c189 static void (*const apply_window[4])(AVFloatDSPContext *fdsp, variable
204 apply_window[sce->ics.window_sequence[0]](s->fdsp, sce, audio); in apply_window_and_mdct()
665 apply_window[sce->ics.window_sequence[0]](s->fdsp, sce, &sce->ltp_state[0]); in aac_encode_frame()
Dmpegaudiodsp_template.c192 s->RENAME(apply_window)(synth_buf, window, dither_state, samples, incr); in RENAME()