summaryrefslogtreecommitdiffstats
path: root/src/modules/bluetooth/sbc.h
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2009-01-08 19:13:49 +0200
committerMarc-André Lureau <marcandre.lureau@gmail.com>2009-01-08 19:17:37 +0200
commit7e6309c77cefee8c447266df4bab25e544000011 (patch)
tree54e50cca2bc86a30c367ce8c45cc1eb36984ab92 /src/modules/bluetooth/sbc.h
parentd096ad78d35156cb61f5c2aee4bb3f58a055da56 (diff)
bluetooth: Update sbc from git upstream.
It contains encoding fixes, pass the conformance tests, and is now vectorizable. Next update might include SSE and/or Neon code.
Diffstat (limited to 'src/modules/bluetooth/sbc.h')
-rw-r--r--src/modules/bluetooth/sbc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/bluetooth/sbc.h b/src/modules/bluetooth/sbc.h
index ab47e329..8ac59309 100644
--- a/src/modules/bluetooth/sbc.h
+++ b/src/modules/bluetooth/sbc.h
@@ -2,7 +2,7 @@
*
* Bluetooth low-complexity, subband codec (SBC) library
*
- * Copyright (C) 2004-2008 Marcel Holtmann <marcel@holtmann.org>
+ * Copyright (C) 2004-2009 Marcel Holtmann <marcel@holtmann.org>
* Copyright (C) 2004-2005 Henryk Ploetz <henryk@ploetzli.ch>
* Copyright (C) 2005-2006 Brad Midgley <bmidgley@xmission.com>
*
@@ -87,7 +87,7 @@ int sbc_encode(sbc_t *sbc, void *input, int input_len, void *output,
int output_len, int *written);
int sbc_get_frame_length(sbc_t *sbc);
int sbc_get_frame_duration(sbc_t *sbc);
-int sbc_get_codesize(sbc_t *sbc);
+uint16_t sbc_get_codesize(sbc_t *sbc);
void sbc_finish(sbc_t *sbc);
#ifdef __cplusplus