mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
fix prototypes of remaining sbc.[ch] API regarding size_t/const
This commit is contained in:
parent
99dae9b1af
commit
d2bee57ee5
2 changed files with 13 additions and 7 deletions
|
|
@ -82,9 +82,13 @@ typedef struct sbc_struct sbc_t;
|
|||
|
||||
int sbc_init(sbc_t *sbc, unsigned long flags);
|
||||
int sbc_reinit(sbc_t *sbc, unsigned long flags);
|
||||
int sbc_parse(sbc_t *sbc, void *input, int input_len);
|
||||
int sbc_decode(sbc_t *sbc, void *input, int input_len, void *output,
|
||||
int output_len, int *len);
|
||||
|
||||
ssize_t sbc_parse(sbc_t *sbc, const void *input, size_t input_len);
|
||||
|
||||
ssize_t sbc_decode(sbc_t *sbc,
|
||||
const void *input, size_t input_len,
|
||||
void *output, size_t output_len,
|
||||
size_t *written);
|
||||
|
||||
/* Encodes ONE input block into ONE output block */
|
||||
ssize_t sbc_encode(sbc_t *sbc,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue