Function ::kfr_dct_execute_f32¶
function kfr_dct_execute_f32(KFR_DCT_PLAN_F32 *, kfr_f32 *, const kfr_f32 *, uint8_t *) capi¶
void kfr_dct_execute_f32(KFR_DCT_PLAN_F32* plan, kfr_f32* out, const kfr_f32* in, uint8_t* temp)
| plan | Pointer to the DCT plan. |
| out | Pointer to output data. |
| in | Pointer to input data. |
| temp | Temporary (scratch) buffer. If NULL , a scratch buffer of size kfr_dct_get_temp_size_f32(plan) will be allocated on the stack or heap. |
Note
No scaling is applied. This function reads \(N\) values from in and writes \(N\) values to out , where \(N\) is the size passed to kfr_dct_create_plan_f32 .
Fully qualified name: kfr_dct_execute_f32(KFR_DCT_PLAN_F32 *, kfr_f32 *, const kfr_f32 *, uint8_t *)
Declared at capi.h:813
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.