mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
ftmod_misdn: Discard incoming audio data if b-channel is not active
Silences the "Device or resource busy" error messages caused by the RX pipe filling up. Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
This commit is contained in:
parent
e561709f5a
commit
bc414df510
@ -2265,6 +2265,8 @@ static ftdm_status_t handle_b_channel_event(ftdm_channel_t *chan)
|
||||
int datalen = retval - MISDN_HEADER_LEN;
|
||||
char *data = buf + MISDN_HEADER_LEN;
|
||||
|
||||
/* Discard incoming audio if not active */
|
||||
if (!priv->active) {
|
||||
/* Convert audio data */
|
||||
misdn_convert_audio_bits(data, datalen);
|
||||
|
||||
@ -2278,6 +2280,7 @@ static ftdm_status_t handle_b_channel_event(ftdm_channel_t *chan)
|
||||
retval, datalen);
|
||||
return FTDM_FAIL;
|
||||
}
|
||||
}
|
||||
|
||||
/* Get receive buffer usage */
|
||||
if (ioctl(priv->tx_audio_pipe_out, FIONREAD, &retval) < 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user