summaryrefslogtreecommitdiff
path: root/modules/opus/opus.h
blob: 70fa0e394d89883f58c787a703b63b5777ced276 (plain)
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
/**
 * @file opus.h Private Opus Interface
 *
 * Copyright (C) 2010 Creytiv.com
 */


struct opus_param {
	opus_int32 srate;
	opus_int32 bitrate;
	opus_int32 stereo;
	opus_int32 cbr;
	opus_int32 inband_fec;
	opus_int32 dtx;
};


/* Encode */
int opus_encode_update(struct auenc_state **aesp, const struct aucodec *ac,
		       struct auenc_param *prm, const char *fmtp);
int opus_encode_frm(struct auenc_state *aes, uint8_t *buf, size_t *len,
		    int fmt, const void *sampv, size_t sampc);


/* Decode */
int opus_decode_update(struct audec_state **adsp, const struct aucodec *ac,
		       const char *fmtp);
int opus_decode_frm(struct audec_state *ads,
		    int fmt, void *sampv, size_t *sampc,
		    const uint8_t *buf, size_t len);
int opus_decode_pkloss(struct audec_state *st,
		       int fmt, void *sampv, size_t *sampc);


/* SDP */
void opus_decode_fmtp(struct opus_param *prm, const char *fmtp);


void opus_mirror_params(const char *fmtp);