summaryrefslogtreecommitdiff
path: root/audio_codec/libamr/dec_acelp.h (plain)
blob: ac39c57d1dd768e5da034df456f9e9fa4ebe6c67
1/*
2 *===================================================================
3 * 3GPP AMR Wideband Floating-point Speech Codec
4 *===================================================================
5 */
6#ifndef DEC_ACELP_H
7#define DEC_ACELP_H
8
9#include "typedef.h"
10
11void D_ACELP_decode_2t(Word16 index, Word16 code[]);
12void D_ACELP_decode_4t(Word16 index[], Word16 nbbits, Word16 code[]);
13void D_ACELP_phase_dispersion(Word16 gain_code, Word16 gain_pit, Word16 code[],
14 Word16 mode, Word16 disp_mem[]);
15
16#endif
17
18