Ignore:
Timestamp:
May 13, 2006 10:46:23 PM (18 years ago)
Author:
bennylp
Message:

Another major modifications in PJMEDIA:

  • handle multiple frames in one packet
  • split stream creation into two steps to allow customization
  • PLC framework and implementation with G.711 and speex
  • stream returns NO_FRAME correctly.
  • added ptime argument in pjsua
File:
1 edited

Legend:

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

    r424 r438  
    474474                  codec_info[i].clock_rate/1000, 
    475475                  codec_info[i].channel_cnt, 
    476                   good_number(bps, param.avg_bps),  
    477                   param.ptime, 
    478                   (param.vad ? " vad" : ""), 
    479                   (param.cng ? " cng" : ""), 
    480                   (param.concl ? " plc" : ""), 
    481                   (param.penh ? " penh" : ""), 
     476                  good_number(bps, param.info.avg_bps),  
     477                  param.info.frm_ptime * param.setting.frm_per_pkt, 
     478                  (param.setting.vad ? " vad" : ""), 
     479                  (param.setting.cng ? " cng" : ""), 
     480                  (param.setting.plc ? " plc" : ""), 
     481                  (param.setting.penh ? " penh" : ""), 
    482482                  (prio[i]==PJMEDIA_CODEC_PRIO_DISABLED?" disabled":""))); 
    483483    } 
Note: See TracChangeset for help on using the changeset viewer.