Ignore:
Timestamp:
Apr 9, 2015 8:15:48 AM (9 years ago)
Author:
nanang
Message:

Re #1794:

  • Updated G7221, the bitrate can also be set via param.info.avg_bps, this is applicable only when param.setting.dec_fmtp doesn't contain bitrate info.
  • Fixed failing codec vector test in pjmedia-test due to wrong G7221 bitrate setting.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/test/codec_vectors.c

    r4712 r5058  
    7474    codec_param.info.avg_bps = bitrate; 
    7575    codec_param.setting.vad = 0; 
     76 
     77    /* For G7221, the bitrate is set via param.setting.dec_fmtp, if it has 
     78     * no info about bitrate, the codec will check info.avg_bps. So, let's 
     79     * just clear the SDP fmtp. 
     80     */ 
     81    if (pj_ansi_strstr(codec_name, "G7221/")) { 
     82        codec_param.setting.dec_fmtp.cnt = 0; 
     83    } 
    7684 
    7785    status = pjmedia_codec_init(codec, pool); 
     
    325333    codec_param.info.avg_bps = bitrate; 
    326334    codec_param.setting.vad = 0; 
     335 
     336    /* For G7221, the bitrate is set via param.setting.dec_fmtp, if it has 
     337     * no info about bitrate, the codec will check info.avg_bps. So, let's 
     338     * just clear the SDP fmtp. 
     339     */ 
     340    if (pj_ansi_strstr(codec_name, "G7221/")) { 
     341        codec_param.setting.dec_fmtp.cnt = 0; 
     342    } 
    327343 
    328344    status = pjmedia_codec_init(codec, pool); 
Note: See TracChangeset for help on using the changeset viewer.