1 /*
2  * Copyright (C) 2015-2020 Alibaba Group Holding Limited
3  */
4 #ifndef __G726_H
5 #define __G726_H
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 unsigned long g726_Encode(unsigned char *speech,char *bitstream, uint32_t sampleCount, uint8_t isReset);
12 unsigned long g726_Decode(char *bitstream,unsigned char *speech, uint32_t sampleCount, uint8_t isReset);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif
19 
20