From 489c2e0dbd76d9cecec62d19fafd9e7baddb72e7 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 23 Jan 2008 13:16:02 +0000 Subject: Add mpeg12 sep registration. --- audio/avdtp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'audio/avdtp.c') diff --git a/audio/avdtp.c b/audio/avdtp.c index d5433452..97868a07 100644 --- a/audio/avdtp.c +++ b/audio/avdtp.c @@ -2696,6 +2696,7 @@ int avdtp_abort(struct avdtp *session, struct avdtp_stream *stream) } struct avdtp_local_sep *avdtp_register_sep(uint8_t type, uint8_t media_type, + uint8_t codec_type, struct avdtp_sep_ind *ind, struct avdtp_sep_cfm *cfm, void *user_data) @@ -2711,6 +2712,7 @@ struct avdtp_local_sep *avdtp_register_sep(uint8_t type, uint8_t media_type, sep->info.seid = free_seid++; sep->info.type = type; sep->info.media_type = media_type; + sep->codec = codec_type; sep->ind = ind; sep->cfm = cfm; sep->user_data = user_data; -- cgit