Hi Andrei, On Mon, Mar 31, 2014 at 3:24 PM, Andrei Emeltchenko <Andrei.Emeltchenko.news@xxxxxxxxx> wrote: > From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> > > Add support for browsing channel > --- > android/avrcp-lib.c | 6 ++++++ > android/avrcp-lib.h | 2 ++ > 2 files changed, 8 insertions(+) > > diff --git a/android/avrcp-lib.c b/android/avrcp-lib.c > index 1a2fa2a..393ab54 100644 > --- a/android/avrcp-lib.c > +++ b/android/avrcp-lib.c > @@ -293,6 +293,12 @@ struct avrcp *avrcp_new(int fd, size_t imtu, size_t omtu, uint16_t version) > return session; > } > > +int avrcp_connect_browsing(struct avrcp *session, int fd, size_t imtu, > + size_t omtu) > +{ > + return avctp_connect_browsing(session->conn, fd, imtu, omtu); > +} > + > void avrcp_set_destroy_cb(struct avrcp *session, avrcp_destroy_cb_t cb, > void *user_data) > { > diff --git a/android/avrcp-lib.h b/android/avrcp-lib.h > index 0b867aa..ca7a57f 100644 > --- a/android/avrcp-lib.h > +++ b/android/avrcp-lib.h > @@ -207,6 +207,8 @@ struct avrcp *avrcp_new(int fd, size_t imtu, size_t omtu, uint16_t version); > void avrcp_shutdown(struct avrcp *session); > void avrcp_set_destroy_cb(struct avrcp *session, avrcp_destroy_cb_t cb, > void *user_data); > +int avrcp_connect_browsing(struct avrcp *session, int fd, size_t imtu, > + size_t omtu); > > void avrcp_register_player(struct avrcp *session, > const struct avrcp_control_ind *ind, > -- > 1.8.3.2 This patch-set is now upstream, Ive end up redoing much of the API though since it was not using the callback mechanism. -- Luiz Augusto von Dentz -- 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