-
Notifications
You must be signed in to change notification settings - Fork 0
/
g729_if_dec.h
32 lines (28 loc) · 1.05 KB
/
g729_if_dec.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
/*
* ------------------------------------------------------------------
* G729AB encoder decoder library for linephone Copyright (C) 2011 Hu
* Jianling Soochow University, All rights reserved. [email protected]
*
* This program is free software; you can redistribute it and/or modify it
* under the aggrement of Hu Jianling; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* -------------------------------------------------------------------
*/
#ifndef SUDA_G729AB_INTERF_DEC_H
#define SUDA_G729AB_INTERF_DEC_H
#ifdef __cplusplus
extern "C" {
#endif
void *G729_Decoder_Interface_init(void);
void G729_Decoder_Interface_exit(void *state);
void G729_Decoder_Interface_Decode(void *state,
const unsigned char *in,
short *out, int bfi);
#ifdef __cplusplus
}
#endif
#endif