OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:out_right
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_g722.cc
110
uint8_t
out_right
[480];
122
reinterpret_cast<int16_t*>(
out_right
));
127
bitstream[i] = (out_left[j] & 0xF0) + (
out_right
[j] >> 4);
128
bitstream[i + 1] = ((out_left[j] & 0x0F) << 4) + (
out_right
[j] & 0x0F);
/external/chromium_org/third_party/webrtc/common_audio/resampler/
resampler.cc
449
int16_t*
out_right
=
local
465
res |= slave_right_->Push(right, lengthIn,
out_right
, maxLen / 2, actualOutLen_right);
471
free(
out_right
);
479
samplesOut[i * 2 + 1] =
out_right
[i];
486
free(
out_right
);
[
all
...]
/external/webrtc/src/common_audio/resampler/
resampler.cc
449
WebRtc_Word16*
out_right
=
local
465
res |= slave_right_->Push(right, lengthIn,
out_right
, maxLen / 2, actualOutLen_right);
471
free(
out_right
);
479
samplesOut[i * 2 + 1] =
out_right
[i];
486
free(
out_right
);
[
all
...]
Completed in 333 milliseconds