summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-05-14 18:23:34 +0000
committerBenny Prijono <bennylp@teluu.com>2006-05-14 18:23:34 +0000
commit612d2349e4664dd90bdf00850f22d2c4f5ee8c16 (patch)
tree0ec2c27cfa237bf089a496dd7dc043b2223b6709 /pjmedia/include
parent4737bd521fcd7722fa27a570be5c610b0f08a1d3 (diff)
Fixed more bugs with multiple frame handling
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@442 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/jbuf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/pjmedia/include/pjmedia/jbuf.h b/pjmedia/include/pjmedia/jbuf.h
index 9bb1a995..013f61aa 100644
--- a/pjmedia/include/pjmedia/jbuf.h
+++ b/pjmedia/include/pjmedia/jbuf.h
@@ -111,6 +111,8 @@ typedef struct pjmedia_jbuf pjmedia_jbuf;
* jitter buffer. This effectively means the maximum
* delay that may be introduced by this jitter
* buffer.
+ * @param ptime Indication of frame duration, used to calculate
+ * the interval between jitter recalculation.
* @param p_jb Pointer to receive jitter buffer instance.
*
* @return PJ_SUCCESS on success.
@@ -118,6 +120,7 @@ typedef struct pjmedia_jbuf pjmedia_jbuf;
PJ_DECL(pj_status_t) pjmedia_jbuf_create(pj_pool_t *pool,
const pj_str_t *name,
unsigned frame_size,
+ unsigned ptime,
unsigned max_count,
pjmedia_jbuf **p_jb);