From: Luiz Augusto von Dentz <luiz.dentz-von@xxxxxxxxx> --- audio/headset.c | 10 ++++++++++ audio/headset.h | 1 + 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/audio/headset.c b/audio/headset.c index cdb3370..dad0716 100644 --- a/audio/headset.c +++ b/audio/headset.c @@ -2701,6 +2701,16 @@ gboolean headset_get_nrec(struct audio_device *dev) return hs->slc->nrec; } +gboolean headset_get_inband(struct audio_device *dev) +{ + struct headset *hs = dev->headset; + + if (!hs->slc) + return TRUE; + + return hs->slc->inband_ring; +} + gboolean headset_get_sco_hci(struct audio_device *dev) { return sco_hci; diff --git a/audio/headset.h b/audio/headset.h index 8b7c738..29dc02c 100644 --- a/audio/headset.h +++ b/audio/headset.h @@ -90,6 +90,7 @@ int headset_get_channel(struct audio_device *dev); int headset_get_sco_fd(struct audio_device *dev); gboolean headset_get_nrec(struct audio_device *dev); +gboolean headset_get_inband(struct audio_device *dev); gboolean headset_get_sco_hci(struct audio_device *dev); gboolean headset_is_active(struct audio_device *dev); -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html