Ignore:
Timestamp:
Jul 29, 2009 12:14:21 PM (15 years ago)
Author:
bennylp
Message:

Ticket #923: New API to retrieve current jitter buffer state from a stream/session

  • added pjmedia_session_get_stream_stat_jbuf() and pjmedia_session_get_stream_stat_jbuf()
  • fixed const correctness in pjmedia_jbuf_get_state(), jb_framelist_size(), and pj_math_stat_get_stddev(),
  • modify the jitter buffer statistic log message printed by stream (it contains newlines)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/math.h

    r2577 r2844  
    169169 * @return          The standard deviation. 
    170170 */ 
    171 PJ_INLINE(unsigned) pj_math_stat_get_stddev(pj_math_stat *stat) 
     171PJ_INLINE(unsigned) pj_math_stat_get_stddev(const pj_math_stat *stat) 
    172172{ 
    173173    if (stat->n == 0) return 0; 
Note: See TracChangeset for help on using the changeset viewer.