Searched refs:fft_ctx (Results 1 – 10 of 10) sorted by relevance
/third_party/gstreamer/gstplugins_bad/gst/audiovisualizers/ |
D | gstspectrascope.c | 117 if (scope->fft_ctx) { in gst_spectra_scope_finalize() 118 gst_fft_s16_free (scope->fft_ctx); in gst_spectra_scope_finalize() 119 scope->fft_ctx = NULL; in gst_spectra_scope_finalize() 135 if (scope->fft_ctx) in gst_spectra_scope_setup() 136 gst_fft_s16_free (scope->fft_ctx); in gst_spectra_scope_setup() 141 scope->fft_ctx = gst_fft_s16_new (bscope->req_spf, FALSE); in gst_spectra_scope_setup() 209 gst_fft_s16_window (scope->fft_ctx, mono_adata, GST_FFT_WINDOW_HAMMING); in gst_spectra_scope_render() 210 gst_fft_s16_fft (scope->fft_ctx, mono_adata, fdata); in gst_spectra_scope_render()
|
D | gstsynaescope.c | 134 if (scope->fft_ctx) { in gst_synae_scope_finalize() 135 gst_fft_s16_free (scope->fft_ctx); in gst_synae_scope_finalize() 136 scope->fft_ctx = NULL; in gst_synae_scope_finalize() 164 if (scope->fft_ctx) in gst_synae_scope_setup() 165 gst_fft_s16_free (scope->fft_ctx); in gst_synae_scope_setup() 175 scope->fft_ctx = gst_fft_s16_new (bscope->req_spf, FALSE); in gst_synae_scope_setup() 252 gst_fft_s16_fft (scope->fft_ctx, adata_l, fdata_l); in gst_synae_scope_render() 254 gst_fft_s16_fft (scope->fft_ctx, adata_r, fdata_r); in gst_synae_scope_render()
|
D | gstspectrascope.h | 41 GstFFTS16 *fft_ctx; member
|
D | gstsynaescope.h | 41 GstFFTS16 *fft_ctx; member
|
/third_party/ffmpeg/libavcodec/ |
D | qdmc.c | 70 FFTContext fft_ctx; member 294 ret = ff_fft_init(&s->fft_ctx, fft_order, 1); in qdmc_decode_init() 314 ff_fft_end(&s->fft_ctx); in qdmc_decode_close() 652 s->fft_ctx.fft_permute(&s->fft_ctx, s->cmplx[ch]); in decode_frame() 653 s->fft_ctx.fft_calc(&s->fft_ctx, s->cmplx[ch]); in decode_frame()
|
/third_party/gstreamer/gstplugins_good/gst/spectrum/ |
D | gstspectrum.c | 224 cd->fft_ctx = gst_fft_f32_new (nfft, FALSE); in gst_spectrum_alloc_channel_data() 245 if (cd->fft_ctx) in gst_spectrum_free_channel_data() 246 gst_fft_f32_free (cd->fft_ctx); in gst_spectrum_free_channel_data() 728 GstFFTF32 *fft_ctx = cd->fft_ctx; in gst_spectrum_run_fft() local 733 gst_fft_f32_window (fft_ctx, input_tmp, GST_FFT_WINDOW_HAMMING); in gst_spectrum_run_fft() 735 gst_fft_f32_fft (fft_ctx, input_tmp, freqdata); in gst_spectrum_run_fft()
|
D | gstspectrum.h | 50 GstFFTF32 *fft_ctx; member
|
/third_party/ffmpeg/libavfilter/ |
D | af_firequalizer.c | 72 FFTContext *fft_ctx; member 156 av_fft_end(s->fft_ctx); in common_uninit() 160 s->fft_ctx = NULL; in common_uninit() 306 av_fft_permute(s->fft_ctx, buf); in fast_convolute2() 307 av_fft_calc(s->fft_ctx, buf); in fast_convolute2() 327 av_fft_permute(s->fft_ctx, buf); in fast_convolute2() 328 av_fft_calc(s->fft_ctx, buf); in fast_convolute2() 786 if (s->fft2 && !s->multi && inlink->channels > 1 && !(s->fft_ctx = av_fft_init(rdft_bits, 0))) in config_input() 851 for (ch = 0; ch + 1 < inlink->channels && s->fft_ctx; ch += 2) { in filter_frame()
|
D | avf_showcqt.h | 61 FFTContext *fft_ctx; member
|
D | avf_showcqt.c | 147 av_fft_end(s->fft_ctx); in common_uninit() 148 s->fft_ctx = NULL; in common_uninit() 1151 av_fft_permute(s->fft_ctx, s->fft_result); in plot_cqt() 1152 av_fft_calc(s->fft_ctx, s->fft_result); in plot_cqt() 1383 s->fft_ctx = av_fft_init(s->fft_bits, 0); in config_output() 1387 if (!s->fft_ctx || !s->fft_data || !s->fft_result || !s->cqt_result) in config_output()
|