From 0e5b9bf3ffe5420fc896d85600dcff5f90c47a47 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 15 Mar 2017 17:35:27 +0100 Subject: [PATCH] Added missing doc for linphone_core_set_text_codecs --- include/linphone/core.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/linphone/core.h b/include/linphone/core.h index d998b9877..1edb31a72 100644 --- a/include/linphone/core.h +++ b/include/linphone/core.h @@ -1951,6 +1951,16 @@ LINPHONE_PUBLIC int linphone_core_set_video_codecs(LinphoneCore *lc, bctbx_list_ **/ LINPHONE_PUBLIC const bctbx_list_t *linphone_core_get_text_codecs(const LinphoneCore *lc); +/** + * Sets the list of text codecs. + * @param[in] lc The LinphoneCore object + * @param[in] codecs \bctbx_list{LinphonePayloadType} + * @return 0 + * + * The list is taken by the LinphoneCore thus the application should not free it. + * This list is made of struct PayloadType describing the codec parameters. + * @ingroup media_parameters +**/ LINPHONE_PUBLIC int linphone_core_set_text_codecs(LinphoneCore *lc, bctbx_list_t *codecs); /**