Ignore:
Timestamp:
Jun 11, 2010 1:38:42 PM (14 years ago)
Author:
nanang
Message:

Close #1072:

  • Added API pjmedia_codec_g722_set_pcm_shift() to enable configurable level-adjusment setting.
  • Also added macro PJMEDIA_G722_DEFAULT_PCM_SHIFT (default value is 2) to accomplish 14-16 bit PCM conversion for G722 input/output.
  • Added a feature in G722 to stop level-adjusment/PCM-shifting when clipping occured, compile-time configurable via PJMEDIA_G722_STOP_PCM_SHIFT_ON_CLIPPING macro.
File:
1 edited

Legend:

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

    r2760 r3202  
    134134    pj_mutex_t              *mutex; 
    135135    pjmedia_codec            codec_list; 
     136    unsigned                 pcm_shift; 
    136137} g722_codec_factory; 
    137138 
     
    142143    g722_enc_t           encoder; 
    143144    g722_dec_t           decoder; 
     145    unsigned             pcm_shift; 
     146    pj_int16_t           pcm_clip_mask; 
    144147    pj_bool_t            plc_enabled; 
    145148    pj_bool_t            vad_enabled; 
     
    168171    g722_codec_factory.base.factory_data = NULL; 
    169172    g722_codec_factory.endpt = endpt; 
     173    g722_codec_factory.pcm_shift = PJMEDIA_G722_DEFAULT_PCM_SHIFT; 
    170174 
    171175    g722_codec_factory.pool = pjmedia_endpt_create_pool(endpt, "g722", 1000,  
     
    240244    return status; 
    241245} 
     246 
     247 
     248/* 
     249 * Set level adjustment. 
     250 */ 
     251PJ_DEF(pj_status_t) pjmedia_codec_g722_set_pcm_shift(unsigned val) 
     252{ 
     253    g722_codec_factory.pcm_shift = val; 
     254    return PJ_SUCCESS; 
     255} 
     256 
    242257 
    243258/*  
     
    447462    g722_data->vad_enabled = (attr->setting.vad != 0); 
    448463    g722_data->plc_enabled = (attr->setting.plc != 0); 
     464    g722_data->pcm_shift = g722_codec_factory.pcm_shift; 
     465    g722_data->pcm_clip_mask = (pj_int16_t)(1<<g722_codec_factory.pcm_shift)-1; 
     466    g722_data->pcm_clip_mask <<= (16-g722_codec_factory.pcm_shift); 
    449467 
    450468    TRACE_((THIS_FILE, "G722 codec opened: vad=%d, plc=%d", 
     
    566584    } 
    567585 
     586    /* Adjust input signal level from 16-bit to 14-bit */ 
     587    if (g722_data->pcm_shift) { 
     588        pj_int16_t *p, *end; 
     589 
     590        p = (pj_int16_t*)input->buf; 
     591        end = p + input->size; 
     592        while (p < end) { 
     593            *p++ >>= g722_data->pcm_shift; 
     594        } 
     595    } 
     596 
    568597    /* Encode to temporary buffer */ 
    569598    output->size = output_buf_len; 
     
    624653 
    625654    pj_assert(output->size == SAMPLES_PER_FRAME); 
     655 
     656    /* Adjust input signal level from 14-bit to 16-bit */ 
     657    if (g722_data->pcm_shift) { 
     658        pj_int16_t *p, *end; 
     659 
     660        p = (pj_int16_t*)output->buf; 
     661        end = p + output->size; 
     662        while (p < end) { 
     663#if PJMEDIA_G722_STOP_PCM_SHIFT_ON_CLIPPING 
     664            /* If there is clipping, stop the PCM shifting */ 
     665            if (*p & g722_data->pcm_clip_mask) { 
     666                g722_data->pcm_shift = 0; 
     667                break; 
     668            } 
     669#endif 
     670            *p++ <<= g722_data->pcm_shift; 
     671        } 
     672    } 
     673 
    626674    output->size = SAMPLES_PER_FRAME * 2; 
    627675    output->type = PJMEDIA_FRAME_TYPE_AUDIO; 
Note: See TracChangeset for help on using the changeset viewer.