Add GSM HR reference codec that is automatically downloaded from 3gpp.org
[lcr.git] / include / gsmhr / gsmhr.h
1 /* HR (GSM 06.20) codec */
2
3 /*
4  * This file is part of gapk (GSM Audio Pocket Knife).
5  *
6  * gapk is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * gapk is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with gapk.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef __GSM_HR_H__
21 #define __GSM_HR_H__
22
23 #include <stdint.h>
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 struct gsmhr;
30
31 struct gsmhr *gsmhr_init(void);
32 void          gsmhr_exit(struct gsmhr *state);
33 int           gsmhr_encode(struct gsmhr *state, int16_t *hr_params, const int16_t *pcm);
34 int           gsmhr_decode(struct gsmhr *state, int16_t *pcm, const int16_t *hr_params);
35
36 #ifdef __cplusplus
37 }
38 #endif
39
40 #endif /* __GSM_HR_H__ */