xref: /btstack/3rd-party/lc3-google/src/mdct.h (revision 6897da5c53aac5b1f90f41b5b15d0bd43d61dfff)
19a19cd78SMatthias Ringwald /******************************************************************************
29a19cd78SMatthias Ringwald  *
34930cef6SMatthias Ringwald  *  Copyright 2022 Google LLC
49a19cd78SMatthias Ringwald  *
59a19cd78SMatthias Ringwald  *  Licensed under the Apache License, Version 2.0 (the "License");
69a19cd78SMatthias Ringwald  *  you may not use this file except in compliance with the License.
79a19cd78SMatthias Ringwald  *  You may obtain a copy of the License at:
89a19cd78SMatthias Ringwald  *
99a19cd78SMatthias Ringwald  *  http://www.apache.org/licenses/LICENSE-2.0
109a19cd78SMatthias Ringwald  *
119a19cd78SMatthias Ringwald  *  Unless required by applicable law or agreed to in writing, software
129a19cd78SMatthias Ringwald  *  distributed under the License is distributed on an "AS IS" BASIS,
139a19cd78SMatthias Ringwald  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
149a19cd78SMatthias Ringwald  *  See the License for the specific language governing permissions and
159a19cd78SMatthias Ringwald  *  limitations under the License.
169a19cd78SMatthias Ringwald  *
179a19cd78SMatthias Ringwald  ******************************************************************************/
189a19cd78SMatthias Ringwald 
199a19cd78SMatthias Ringwald #ifndef __LC3_MDCT_H
209a19cd78SMatthias Ringwald #define __LC3_MDCT_H
219a19cd78SMatthias Ringwald 
229a19cd78SMatthias Ringwald #include "common.h"
239a19cd78SMatthias Ringwald 
249a19cd78SMatthias Ringwald 
259a19cd78SMatthias Ringwald /**
269a19cd78SMatthias Ringwald  * Forward MDCT transformation
279a19cd78SMatthias Ringwald  * dt, sr          Duration and samplerate (size of the transform)
289a19cd78SMatthias Ringwald  * sr_dst          Samplerate destination, scale transforam accordingly
294930cef6SMatthias Ringwald  * x, d            Temporal samples and delayed buffer
304930cef6SMatthias Ringwald  * y, d            Output `ns` coefficients and `nd` delayed samples
319a19cd78SMatthias Ringwald  *
324930cef6SMatthias Ringwald  * `x` and `y` can be the same buffer
339a19cd78SMatthias Ringwald  */
34*6897da5cSDirk Helbig void lc3_mdct_forward(
35*6897da5cSDirk Helbig     enum lc3_dt dt, enum lc3_srate sr, enum lc3_srate sr_dst,
36*6897da5cSDirk Helbig     const float *x, float *d, float *y);
379a19cd78SMatthias Ringwald 
389a19cd78SMatthias Ringwald /**
399a19cd78SMatthias Ringwald  * Inverse MDCT transformation
409a19cd78SMatthias Ringwald  * dt, sr          Duration and samplerate (size of the transform)
419a19cd78SMatthias Ringwald  * sr_src          Samplerate source, scale transforam accordingly
429a19cd78SMatthias Ringwald  * x, d            Frequency coefficients and delayed buffer
439a19cd78SMatthias Ringwald  * y, d            Output `ns` samples and `nd` delayed ones
449a19cd78SMatthias Ringwald  *
459a19cd78SMatthias Ringwald  * `x` and `y` can be the same buffer
469a19cd78SMatthias Ringwald  */
47*6897da5cSDirk Helbig void lc3_mdct_inverse(
48*6897da5cSDirk Helbig     enum lc3_dt dt, enum lc3_srate sr, enum lc3_srate sr_src,
49*6897da5cSDirk Helbig     const float *x, float *d, float *y);
509a19cd78SMatthias Ringwald 
519a19cd78SMatthias Ringwald 
529a19cd78SMatthias Ringwald #endif /* __LC3_MDCT_H */
53