mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
bluetooth: update SBC from upstream
This commit is contained in:
parent
0b8a6c66dc
commit
b51e6135e8
6 changed files with 21 additions and 2 deletions
|
|
@ -985,7 +985,7 @@ int sbc_decode(sbc_t *sbc, void *input, int input_len, void *output,
|
|||
char *ptr;
|
||||
int i, ch, framelen, samples;
|
||||
|
||||
if (!sbc && !input)
|
||||
if (!sbc || !input)
|
||||
return -EIO;
|
||||
|
||||
priv = sbc->priv;
|
||||
|
|
@ -1053,7 +1053,7 @@ int sbc_encode(sbc_t *sbc, void *input, int input_len, void *output,
|
|||
const uint8_t *pcm, int16_t X[2][SBC_X_BUFFER_SIZE],
|
||||
int nsamples, int nchannels);
|
||||
|
||||
if (!sbc && !input)
|
||||
if (!sbc || !input)
|
||||
return -EIO;
|
||||
|
||||
priv = sbc->priv;
|
||||
|
|
@ -1221,6 +1221,20 @@ uint16_t sbc_get_codesize(sbc_t *sbc)
|
|||
return subbands * blocks * channels * 2;
|
||||
}
|
||||
|
||||
const char *sbc_get_implementation_info(sbc_t *sbc)
|
||||
{
|
||||
struct sbc_priv *priv;
|
||||
|
||||
if (!sbc)
|
||||
return NULL;
|
||||
|
||||
priv = sbc->priv;
|
||||
if (!priv)
|
||||
return NULL;
|
||||
|
||||
return priv->enc_state.implementation_info;
|
||||
}
|
||||
|
||||
int sbc_reinit(sbc_t *sbc, unsigned long flags)
|
||||
{
|
||||
struct sbc_priv *priv;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue