summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2017-10-29 18:43:06 +0100
committerAlfred E. Heggestad <alfred.heggestad@gmail.com>2017-10-29 18:43:06 +0100
commitc9b82b677e939727f9dee299ce6e876191385a5d (patch)
tree057a895a178359aeee354cd64a40d3da5bfae0e0 /include
parentb576ea027970338a418be2adb831c2dcf6484b2b (diff)
add support for EBU-ACIP parameters
add support for EBU-ACIP parameters in the SDP. This can be enabled with the following config item: sdp_ebuacip yes Reference: https://tech.ebu.ch/docs/tech/tech3368.pdf Thanks to Ola Palm from Swedish Radio for the patch
Diffstat (limited to 'include')
-rw-r--r--include/baresip.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/baresip.h b/include/baresip.h
index e394e75..efa047c 100644
--- a/include/baresip.h
+++ b/include/baresip.h
@@ -248,6 +248,11 @@ struct config_bfcp {
};
#endif
+/** SDP */
+struct config_sdp {
+ bool ebuacip; /**< Enable EBU-ACIP parameters */
+};
+
/** Core configuration */
struct config {
@@ -268,6 +273,8 @@ struct config {
#ifdef USE_VIDEO
struct config_bfcp bfcp;
#endif
+
+ struct config_sdp sdp;
};
int config_parse_conf(struct config *cfg, const struct conf *conf);