diff options
author | Johan Hedberg <johan.hedberg@nokia.com> | 2007-08-12 21:34:50 +0000 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2007-08-12 21:34:50 +0000 |
commit | f817fefff69cc44d5a2e1ba7d8ed9976fe3b4235 (patch) | |
tree | ea7d54290d6a8cd20708cd094473947086f4111a /audio/sink.h | |
parent | fb58bd1b24d257ea884aa5d67f8e5a6362aafa94 (diff) |
Implement proper acceptor side functionality
Diffstat (limited to 'audio/sink.h')
-rw-r--r-- | audio/sink.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/sink.h b/audio/sink.h index b14a29a7..45745a19 100644 --- a/audio/sink.h +++ b/audio/sink.h @@ -29,10 +29,11 @@ struct sink; struct sink *sink_init(void *device); -void sink_new_stream(void *device, void *lsep); void sink_free(void *device); int sink_get_config(void *device, int sock, struct ipc_packet *req, int pkt_len, struct ipc_data_cfg **rsp, int *fd); gboolean sink_is_active(void *device); void sink_set_state(void *device, avdtp_state_t state); avdtp_state_t sink_get_state(void *device); +gboolean sink_new_stream(struct avdtp *session, struct avdtp_stream *stream, + void *dev); |