From 7c14b823cc2626dde442daddebb98469443aa5a0 Mon Sep 17 00:00:00 2001 From: Mikel Astiz Date: Fri, 7 Sep 2012 17:20:26 +0200 Subject: [PATCH] media: Add a2dp_sep_is_playing() to internal API Add this function to expose whether the local SEP is streaming or not. --- audio/a2dp.c | 8 ++++++++ audio/a2dp.h | 1 + 2 files changed, 9 insertions(+) diff --git a/audio/a2dp.c b/audio/a2dp.c index a9546b731..64b37e7cf 100644 --- a/audio/a2dp.c +++ b/audio/a2dp.c @@ -1833,6 +1833,14 @@ gboolean a2dp_sep_unlock(struct a2dp_sep *sep, struct avdtp *session) return TRUE; } +gboolean a2dp_sep_is_playing(struct a2dp_sep *sep) +{ + if (avdtp_sep_get_state(sep->lsep) == AVDTP_STATE_STREAMING) + return TRUE; + else + return FALSE; +} + gboolean a2dp_sep_get_lock(struct a2dp_sep *sep) { return sep->locked; diff --git a/audio/a2dp.h b/audio/a2dp.h index 27b4a575a..deab3b8a4 100644 --- a/audio/a2dp.h +++ b/audio/a2dp.h @@ -90,6 +90,7 @@ gboolean a2dp_cancel(struct audio_device *dev, unsigned int id); gboolean a2dp_sep_lock(struct a2dp_sep *sep, struct avdtp *session); gboolean a2dp_sep_unlock(struct a2dp_sep *sep, struct avdtp *session); gboolean a2dp_sep_get_lock(struct a2dp_sep *sep); +gboolean a2dp_sep_is_playing(struct a2dp_sep *sep); struct avdtp_stream *a2dp_sep_get_stream(struct a2dp_sep *sep); struct a2dp_sep *a2dp_get_sep(struct avdtp *session, struct avdtp_stream *stream); -- 2.47.3