-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsp_enc.h
77 lines (69 loc) · 1.36 KB
/
sp_enc.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* ===================================================================
* TS 26.104
* REL-5 V5.4.0 2004-03
* REL-6 V6.1.0 2004-03
* REL-15 V15.1.0 2018-07
* 3GPP AMR Floating-point Speech Codec
* ===================================================================
*
*/
/*
* sp_enc.h
*
*
* Project:
* AMR Floating-Point Codec
*
* Contains:
* Defines interface to AMR encoder
*
*/
#ifndef _SP_ENC_H
#define _SP_ENC_H
/*
* include files
*/
#include "typedef.h"
/*
* definition of modes for encoder
*/
enum Mode
{
MR475 = 0,
MR515,
MR59,
MR67,
MR74,
MR795,
MR102,
MR122,
MRDTX
};
/*
* Function prototypes
*/
/*
* initialize one instance of the speech encoder
* Stores pointer to filter status struct in *st. This pointer has to
* be passed to Speech_Encode_Frame in each call.
* returns 0 on success
*/
void *Speech_Encode_Frame_init(int dtx);
/*
* reset speech encoder (i.e. set state memory to zero)
* returns 0 on success
*/
int Speech_Encode_Frame_reset(void *st, int dtx);
/*
* de-initialize speech encoder (i.e. free status struct)
* stores NULL in *st
*/
void Speech_Encode_Frame_exit(void **st);
/*
* Encodes one speech frame
* Returns analysis parameters
*/
void Speech_Encode_Frame(void *st, enum Mode mode, short *newSpeech,
short *prm, enum Mode *usedMode);
#endif