Ignore:
Timestamp:
Jun 5, 2008 10:50:40 AM (16 years ago)
Author:
nanang
Message:

Ticket #473:

  • fixed issue on Speex multiple frames (encoding: encoded bits concatenation & decoding: frames parsing)
  • updated pjmedia stream & codecs on encoding multiple frames
  • introduced bit_info in pjmedia_frame and jitter buffer
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-codec/l16.c

    r1266 r1983  
    565565    while (samp!=samp_end) 
    566566        *samp_out++ = pj_htons(*samp++); 
     567#else 
     568    pjmedia_copy_samples(samp_out, samp, input->size >> 1); 
    567569#endif 
    568570 
     
    597599    while (samp!=samp_end) 
    598600        *samp_out++ = pj_htons(*samp++); 
     601#else 
     602    pjmedia_copy_samples(samp_out, samp, input->size >> 1); 
    599603#endif 
    600604 
Note: See TracChangeset for help on using the changeset viewer.