HomeSort by relevance Sort by last modified time
    Searched refs:tempVal (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/
g711_interface.c 20 uint16_t tempVal, tempVal2;
32 tempVal = (uint16_t) linear_to_alaw(speechIn[n]);
36 encoded[n >> 1] |= ((uint16_t) tempVal);
38 encoded[n >> 1] = ((uint16_t) tempVal) << 8;
42 tempVal2 |= ((uint16_t) tempVal) << 8;
43 encoded[n >> 1] |= ((uint16_t) tempVal) << 8;
45 tempVal2 = ((uint16_t) tempVal);
46 encoded[n >> 1] = ((uint16_t) tempVal);
58 uint16_t tempVal;
70 tempVal = (uint16_t) linear_to_ulaw(speechIn[n])
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
dtmf_inband.cc 362 int32_t tempVal;
377 tempVal = (int32_t)(kDtmfAmpLow * tempValLow) +
381 tempVal=(tempVal+16384)>>15;
384 signal[i]=(int16_t)((tempVal*Dtmf_dBm0kHz[volume]+8192)>>14);

Completed in 1993 milliseconds