HomeSort by relevance Sort by last modified time
    Searched full:tempval (Results 1 - 5 of 5) 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/modules/rtp_rtcp/source/H264/
bitstream_parser.cc 164 uint64_t tempVal = _data[_byteOffset];
165 tempVal <<= 8;
166 tempVal += _data[_byteOffset+1];
167 tempVal <<= 8;
168 tempVal += _data[_byteOffset+2];
169 tempVal <<= 8;
170 tempVal += _data[_byteOffset+3];
171 tempVal <<= 8;
172 tempVal += _data[_byteOffset+4];
173 tempVal >>= (8-_bitOffset)
    [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);
  /hardware/ti/omap4-aah/camera/
Encoder_libjpeg.cpp 271 char * tempVal = NULL;
275 tempVal = (char*) malloc( sizeof(char) * (len + 1));
278 if (tempVal != NULL) {
286 memset(tempVal, '\0', len + 1);
287 strncpy(tempVal, str, len);
288 temp = strtok_r(tempVal, ".", &ctx);
309 free(tempVal);
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 214 char * tempVal = NULL;
218 tempVal = (char*) malloc( sizeof(char) * (len + 1));
221 if (tempVal != NULL) {
229 memset(tempVal, '\0', len + 1);
230 strncpy(tempVal, str, len);
231 temp = strtok_r(tempVal, ".", &ctx);
252 free(tempVal);

Completed in 300 milliseconds