--- audio/media.c | 16 ++++++++++++++++ audio/media.h | 1 + 2 files changed, 17 insertions(+), 0 deletions(-) diff --git a/audio/media.c b/audio/media.c index c0fd0c3..05019f3 100644 --- a/audio/media.c +++ b/audio/media.c @@ -1782,3 +1782,19 @@ uint8_t media_endpoint_get_codec(struct media_endpoint *endpoint) { return endpoint->codec; } + +struct media_endpoint *media_endpoint_find(const char *path) +{ + GSList *l; + struct media_endpoint *endpoint; + + for (l = adapters; l; l = l->next) { + struct media_adapter *adapter = l->data; + + endpoint = media_adapter_find_endpoint(adapter, + NULL, path, NULL); + if (endpoint) + return endpoint; + } + return NULL; +} diff --git a/audio/media.h b/audio/media.h index 84fc1bc..6747fc2 100644 --- a/audio/media.h +++ b/audio/media.h @@ -33,3 +33,4 @@ void media_unregister(const char *path); struct a2dp_sep *media_endpoint_get_sep(struct media_endpoint *endpoint); const char *media_endpoint_get_uuid(struct media_endpoint *endpoint); uint8_t media_endpoint_get_codec(struct media_endpoint *endpoint); +struct media_endpoint *media_endpoint_find(const char *path); -- 1.7.5.4 -- 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