Ignore:
Timestamp:
Mar 23, 2009 1:30:26 PM (15 years ago)
Author:
nanang
Message:

Ticket #745: back-porting ticket #744

Location:
pjproject/branches/1.0
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.0

  • pjproject/branches/1.0/pjmedia/src/pjmedia/jbuf.c

    r2394 r2549  
    268268        } 
    269269    } else { 
     270        // check if frame is not too late, but watch out for sequence restart. 
     271        if (index < framelist->flist_origin &&  
     272            framelist->flist_origin - index < 0x7FFF)  
     273        { 
     274            return PJ_FALSE; 
     275        } 
     276 
    270277        where = framelist->flist_tail; 
    271278        framelist->flist_origin = index; 
Note: See TracChangeset for help on using the changeset viewer.