Ignore:
Timestamp:
Oct 23, 2011 5:23:55 AM (12 years ago)
Author:
bennylp
Message:

Fixed #1392: Immediately decode incoming frames to avoid loosing key frames when the jbuf is full and improve latency

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/jbuf.c

    r3664 r3835  
    636636} 
    637637 
     638PJ_DEF(pj_bool_t) pjmedia_jbuf_is_full(const pjmedia_jbuf *jb) 
     639{ 
     640    return jb->jb_framelist.size == jb->jb_framelist.max_count; 
     641} 
    638642 
    639643static void jbuf_calculate_jitter(pjmedia_jbuf *jb) 
Note: See TracChangeset for help on using the changeset viewer.