summaryrefslogtreecommitdiff
path: root/modules/mpa/mpa.h
diff options
context:
space:
mode:
Diffstat (limited to 'modules/mpa/mpa.h')
-rw-r--r--modules/mpa/mpa.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/mpa/mpa.h b/modules/mpa/mpa.h
index f9c2934..35055b6 100644
--- a/modules/mpa/mpa.h
+++ b/modules/mpa/mpa.h
@@ -4,12 +4,17 @@
* Copyright (C) 2016 Symonics GmbH
*/
+#define MPA_FRAMESIZE 1152
+#define BARESIP_FRAMESIZE (48000/50*2)
+
+#undef DEBUG
struct mpa_param {
unsigned samplerate;
unsigned bitrate;
unsigned layer;
- enum { AUTO=0, STEREO, JOINT_STEREO, SINGLE_CHANNEL, DUAL_CHANNEL } mode;
+ enum { AUTO=0, STEREO, JOINT_STEREO, SINGLE_CHANNEL, DUAL_CHANNEL }
+ mode;
};
@@ -25,8 +30,6 @@ int mpa_decode_update(struct audec_state **adsp, const struct aucodec *ac,
const char *fmtp);
int mpa_decode_frm(struct audec_state *ads, int16_t *sampv, size_t *sampc,
const uint8_t *buf, size_t len);
-int mpa_decode_pkloss(struct audec_state *st, int16_t *sampv, size_t *sampc);
-
/* SDP */
void mpa_decode_fmtp(struct mpa_param *prm, const char *fmtp);