summaryrefslogtreecommitdiffstats
path: root/audio/a2dp.c
diff options
context:
space:
mode:
Diffstat (limited to 'audio/a2dp.c')
-rw-r--r--audio/a2dp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/audio/a2dp.c b/audio/a2dp.c
index aea7224a..45a1bfe0 100644
--- a/audio/a2dp.c
+++ b/audio/a2dp.c
@@ -315,11 +315,7 @@ static void discovery_complete(struct avdtp *session, GSList *seps, int err,
if (err < 0) {
error("avdtp_set_configuration: %s", strerror(-err));
finalize_stream_setup(setup);
- return;
}
-
- /* Notify sink.c of the new stream */
- sink_new_stream(setup->dev, session, setup->stream);
}
static gboolean setconf_ind(struct avdtp *session,
@@ -434,6 +430,9 @@ static void setconf_cfm(struct avdtp *session, struct avdtp_local_sep *sep,
if (!setup)
return;
+ /* Notify sink.c of the new stream */
+ sink_new_stream(setup->dev, session, setup->stream);
+
ret = avdtp_open(session, stream);
if (ret < 0) {
error("Error on avdtp_open %s (%d)", strerror(-ret),