summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/jbuf.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/pjmedia/include/pjmedia/jbuf.h b/pjmedia/include/pjmedia/jbuf.h
index 3d718039..db004c65 100644
--- a/pjmedia/include/pjmedia/jbuf.h
+++ b/pjmedia/include/pjmedia/jbuf.h
@@ -149,14 +149,16 @@ PJ_DECL(pj_status_t) pjmedia_jbuf_set_fixed( pjmedia_jbuf *jb,
* Set the jitter buffer to adaptive mode.
*
* @param jb The jitter buffer.
- * @param prefetch The prefetch value to be applied to the jitter
- * buffer.
+ * @param prefetch The initial prefetch value to be applied to the
+ * jitter buffer. Setting this to other than 0 will
+ * activate prefetch buffering, a jitter buffer feature
+ * that each time it gets empty, it won't return a
+ * normal frame until its size reaches the number
+ * specified here.
* @param min_prefetch The minimum delay that must be applied to each
- * incoming packets, in number of frames. The
- * default value is zero.
+ * incoming packets, in number of frames.
* @param max_prefetch The maximum allowable value for prefetch delay,
- * in number of frames. The default value is equal
- * to the size of the jitter buffer.
+ * in number of frames.
*
* @return PJ_SUCCESS on success.
*/