summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-03-19 00:47:02 +0000
committerBenny Prijono <bennylp@teluu.com>2006-03-19 00:47:02 +0000
commit4d6e1b4cf1cbdec88bd4c4915fb27a16ee89acb4 (patch)
tree3d8f52f42651c7097dc76c0aa9be355f077c2c63 /pjmedia/include
parentaf42396b96e653beab3b6707c12a467c3d397f98 (diff)
Fixed no audio bug in new conference, and add level adjustment in port info
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@333 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/conference.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/pjmedia/include/pjmedia/conference.h b/pjmedia/include/pjmedia/conference.h
index 04ead090..f93e0e58 100644
--- a/pjmedia/include/pjmedia/conference.h
+++ b/pjmedia/include/pjmedia/conference.h
@@ -47,6 +47,8 @@ typedef struct pjmedia_conf_port_info
pj_bool_t *listener; /**< Array of listeners. */
unsigned clock_rate; /**< Clock rate of the port. */
unsigned samples_per_frame; /**< Samples per frame */
+ int tx_adj_level; /**< Tx level adjustment. */
+ int rx_adj_level; /**< Rx level adjustment. */
} pjmedia_conf_port_info;
@@ -168,7 +170,9 @@ PJ_DECL(pjmedia_port*) pjmedia_conf_get_master_port(pjmedia_conf *conf);
* @param conf The conference bridge.
* @param pool Pool to allocate buffers for this port.
* @param strm_port Stream port interface.
- * @param name Port name.
+ * @param name Optional name for the port. If this value is NULL,
+ * the name will be taken from the name in the port
+ * info.
* @param p_slot Pointer to receive the slot index of the port in
* the conference bridge.
*