/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/ |
audio_frame_manipulator.h | 15 class AudioFrame; 17 // Updates the audioFrame's energy (based on its samples). 18 void CalculateEnergy(AudioFrame& audioFrame); 20 // Apply linear step function that ramps in/out the audio samples in audioFrame 21 void RampIn(AudioFrame& audioFrame); 22 void RampOut(AudioFrame& audioFrame);
|
audio_conference_mixer_impl.h | 29 typedef std::list<AudioFrame*> AudioFrameList; 102 // should be ramped out over this AudioFrame to avoid audio discontinuities. 147 AudioFrame& mixedAudio, 152 int32_t MixAnonomouslyFromList(AudioFrame& mixedAudio, 155 bool LimitMixedAudio(AudioFrame& mixedAudio); 187 MemoryPool<AudioFrame>* _audioFramePool;
|
/external/chromium_org/third_party/webrtc/modules/utility/interface/ |
audio_frame_operations.h | 18 class AudioFrame; 33 static int MonoToStereo(AudioFrame* frame); 42 static int StereoToMono(AudioFrame* frame); 46 static void SwapStereoChannels(AudioFrame* frame); 49 static void Mute(AudioFrame& frame); 51 static int Scale(float left, float right, AudioFrame& frame); 53 static int ScaleWithSat(float scale, AudioFrame& frame);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/ |
call_statistics.cc | 19 void CallStatistics::DecodedByNetEq(AudioFrame::SpeechType speech_type) { 22 case AudioFrame::kNormalSpeech: { 26 case AudioFrame::kPLC: { 30 case AudioFrame::kCNG: { 34 case AudioFrame::kPLCCNG: { 38 case AudioFrame::kUndefined: {
|
call_statistics.h | 41 void DecodedByNetEq(AudioFrame::SpeechType speech_type);
|
call_statistics_unittest.cc | 36 call_stats.DecodedByNetEq(AudioFrame::kNormalSpeech); 37 call_stats.DecodedByNetEq(AudioFrame::kPLC); 38 call_stats.DecodedByNetEq(AudioFrame::kPLCCNG); 39 call_stats.DecodedByNetEq(AudioFrame::kCNG);
|
acm_receiver.cc | 44 AudioFrame* audio_frame) { 48 audio_frame->vad_activity_ = AudioFrame::kVadActive; 49 audio_frame->speech_type_ = AudioFrame::kNormalSpeech; 53 audio_frame->vad_activity_ = AudioFrame::kVadPassive; 54 audio_frame->speech_type_ = AudioFrame::kNormalSpeech; 58 audio_frame->vad_activity_ = AudioFrame::kVadPassive; 59 audio_frame->speech_type_ = AudioFrame::kCNG; 65 audio_frame->speech_type_ = AudioFrame::kPLC; 69 audio_frame->vad_activity_ = AudioFrame::kVadPassive; 70 audio_frame->speech_type_ = AudioFrame::kPLCCNG [all...] |
/external/chromium_org/third_party/webrtc/voice_engine/ |
utility.h | 23 class AudioFrame; 31 void RemixAndResample(const AudioFrame& src_frame, 33 AudioFrame* dst_frame); 52 AudioFrame* dst_af);
|
level_indicator.h | 19 class AudioFrame; 38 void ComputeLevel(const AudioFrame& audioFrame);
|
voe_external_media_impl.h | 34 AudioFrame* frame);
|
utility_unittest.cc | 43 AudioFrame src_frame_; 44 AudioFrame dst_frame_; 45 AudioFrame golden_frame_; 51 void SetMonoFrame(AudioFrame* frame, float data, int sample_rate_hz) { 62 void SetMonoFrame(AudioFrame* frame, float data) { 68 void SetStereoFrame(AudioFrame* frame, float left, float right, 81 void SetStereoFrame(AudioFrame* frame, float left, float right) { 85 void VerifyParams(const AudioFrame& ref_frame, const AudioFrame& test_frame) { 94 float ComputeSNR(const AudioFrame& ref_frame, const AudioFrame& test_frame [all...] |
output_mixer.h | 68 AudioFrame* audioFrame); 92 const AudioFrame& generalAudioFrame, 93 const AudioFrame** uniqueAudioFrames, 131 AudioFrame _audioFrame;
|
utility.cc | 27 void RemixAndResample(const AudioFrame& src_frame, 29 AudioFrame* dst_frame) { 32 int16_t mono_audio[AudioFrame::kMaxDataSizeSamples]; 54 AudioFrame::kMaxDataSizeSamples); 82 AudioFrame* dst_af) { 113 src_data, in_length, dst_af->data_, AudioFrame::kMaxDataSizeSamples);
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
audioframe.h | 33 class AudioFrame { 35 AudioFrame() 41 AudioFrame(int16* audio, size_t audio_length, int sample_freq, bool stereo)
|
fakemediaprocessor.h | 36 class AudioFrame; 50 AudioFrame* frame) {
|
voiceprocessor.h | 31 #include "talk/media/base/audioframe.h" 52 AudioFrame* frame) = 0;
|
/external/chromium_org/third_party/webrtc/modules/utility/source/ |
coder.h | 20 class AudioFrame; 36 int32_t Decode(AudioFrame& decodedAudio, uint32_t sampFreqHz, 39 int32_t PlayoutData(AudioFrame& decodedAudio, uint16_t& sampFreqHz); 41 int32_t Encode(const AudioFrame& audio, int8_t* encodedData,
|
audio_frame_operations.cc | 25 int AudioFrameOperations::MonoToStereo(AudioFrame* frame) { 29 if ((frame->samples_per_channel_ * 2) >= AudioFrame::kMaxDataSizeSamples) { 34 int16_t data_copy[AudioFrame::kMaxDataSizeSamples]; 51 int AudioFrameOperations::StereoToMono(AudioFrame* frame) { 62 void AudioFrameOperations::SwapStereoChannels(AudioFrame* frame) { 72 void AudioFrameOperations::Mute(AudioFrame& frame) { 77 int AudioFrameOperations::Scale(float left, float right, AudioFrame& frame) { 91 int AudioFrameOperations::ScaleWithSat(float scale, AudioFrame& frame) {
|
audio_frame_operations_unittest.cc | 27 AudioFrame frame_; 30 void SetFrameData(AudioFrame* frame, int16_t left, int16_t right) { 37 void SetFrameData(AudioFrame* frame, int16_t data) { 43 void VerifyFramesAreEqual(const AudioFrame& frame1, const AudioFrame& frame2) { 57 frame_.samples_per_channel_ = AudioFrame::kMaxDataSizeSamples; 65 AudioFrame temp_frame; 69 AudioFrame stereo_frame; 90 AudioFrame temp_frame; 94 AudioFrame mono_frame [all...] |
coder.cc | 54 int32_t AudioCoder::Decode(AudioFrame& decodedAudio, 74 int32_t AudioCoder::PlayoutData(AudioFrame& decodedAudio, 80 int32_t AudioCoder::Encode(const AudioFrame& audio, 86 AudioFrame audioFrame; 87 audioFrame.CopyFrom(audio); 88 audioFrame.timestamp_ = _encodeTimestamp; 89 _encodeTimestamp += audioFrame.samples_per_channel_; 94 if(_acm->Add10MsData((AudioFrame&)audioFrame) == -1 [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/interface/ |
audio_conference_mixer_defines.h | 24 // The implementation of this function should update audioFrame with new 28 virtual int32_t GetAudioFrame(const int32_t id, AudioFrame& audioFrame) = 0; 33 // This function specifies the sampling frequency needed for the AudioFrame 79 // Note that uniqueAudioFrames is an array of AudioFrame pointers with the 82 const AudioFrame& generalAudioFrame, 83 const AudioFrame** uniqueAudioFrames,
|
/external/chromium_org/third_party/webrtc/modules/audio_processing/ |
audio_buffer.h | 85 void set_activity(AudioFrame::VADActivity activity); 86 AudioFrame::VADActivity activity() const; 89 void DeinterleaveFrom(AudioFrame* audioFrame); 92 void InterleaveTo(AudioFrame* frame, bool data_changed) const; 115 AudioFrame::VADActivity activity_;
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/ |
PCMFile.h | 37 int32_t Read10MsData(AudioFrame& audio_frame); 40 void Write10MsData(AudioFrame& audio_frame);
|
/external/chromium_org/third_party/webrtc/voice_engine/include/ |
voe_external_media.h | 18 class AudioFrame; 69 AudioFrame* frame) = 0;
|
/external/chromium_org/third_party/webrtc/modules/interface/ |
module_common_types.h | 641 class AudioFrame { 659 AudioFrame(); 660 virtual ~AudioFrame() {} 672 AudioFrame& Append(const AudioFrame& rhs); 674 void CopyFrom(const AudioFrame& src); 678 AudioFrame& operator>>=(const int rhs); 679 AudioFrame& operator+=(const AudioFrame& rhs); 680 AudioFrame& operator-=(const AudioFrame& rhs) [all...] |