summaryrefslogtreecommitdiffstats
path: root/sbc/sbc.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-08-26 13:54:24 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-08-26 13:54:24 +0000
commitd9bccae488ef82fc0e1d927b30db9228bfd91169 (patch)
tree43f3f148665419c18079a82ec7cf92c2e921ce55 /sbc/sbc.c
parent0551d4b78641ad4cc286d3e69c3268a27f5e9647 (diff)
Add simple implementation of sbc_parse()
Diffstat (limited to 'sbc/sbc.c')
-rw-r--r--sbc/sbc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sbc/sbc.c b/sbc/sbc.c
index 240a5d24..7cd267b1 100644
--- a/sbc/sbc.c
+++ b/sbc/sbc.c
@@ -1293,6 +1293,11 @@ int sbc_init(sbc_t *sbc, unsigned long flags)
return 0;
}
+int sbc_parse(sbc_t *sbc, void *data, int count)
+{
+ return sbc_decode(sbc, data, count);
+}
+
int sbc_decode(sbc_t *sbc, void *data, int count)
{
struct sbc_priv *priv;