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

  /external/webrtc/src/modules/audio_processing/
audio_buffer.h 44 void set_activity(AudioFrame::VADActivity activity);
45 AudioFrame::VADActivity activity() const;
49 void DeinterleaveFrom(AudioFrame* audioFrame);
50 void InterleaveTo(AudioFrame* audioFrame) const;
53 void InterleaveTo(AudioFrame* frame, bool data_changed) const;
69 AudioFrame::VADActivity activity_;
audio_processing_impl.h 68 virtual int ProcessStream(AudioFrame* frame);
69 virtual int AnalyzeReverseStream(AudioFrame* frame);
audio_buffer.cc 74 activity_(AudioFrame::kVadUnknown),
165 void AudioBuffer::set_activity(AudioFrame::VADActivity activity) {
169 AudioFrame::VADActivity AudioBuffer::activity() const {
190 void AudioBuffer::DeinterleaveFrom(AudioFrame* frame) {
222 void AudioBuffer::InterleaveTo(AudioFrame* frame, bool data_changed) const {
voice_detection_impl.cc 83 audio->set_activity(AudioFrame::kVadPassive);
86 audio->set_activity(AudioFrame::kVadActive);
audio_processing_impl.cc 256 int AudioProcessingImpl::ProcessStream(AudioFrame* frame) {
387 int AudioProcessingImpl::AnalyzeReverseStream(AudioFrame* frame) {
  /external/webrtc/src/modules/interface/
module_common_types.h 687 * AudioFrame class
689 * The AudioFrame class holds up to 60 ms wideband
710 class AudioFrame
730 AudioFrame();
731 virtual ~AudioFrame();
745 AudioFrame& Append(const AudioFrame& rhs);
749 AudioFrame& operator=(const AudioFrame& rhs);
750 AudioFrame& operator>>=(const WebRtc_Word32 rhs)
    [all...]
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 21 class AudioFrame;
156 virtual int ProcessStream(AudioFrame* frame) = 0;
172 virtual int AnalyzeReverseStream(AudioFrame* frame) = 0;
551 // |AudioFrame| passed to |ProcessStream()|. The |_vadActivity| member will be
  /external/webrtc/src/modules/audio_processing/test/
unit_test.cc 30 using webrtc::AudioFrame;
68 webrtc::AudioFrame* frame_;
69 webrtc::AudioFrame* revframe_;
92 frame_ = new AudioFrame();
93 revframe_ = new AudioFrame();
163 void SetFrameTo(AudioFrame* frame, int16_t value) {
170 int16_t MaxAudioFrame(const AudioFrame& frame) {
180 bool FrameDataAreEqual(const AudioFrame& frame1, const AudioFrame& frame2) {
265 AudioFrame primary_frame
    [all...]
process_test.cc 30 using webrtc::AudioFrame;
500 AudioFrame far_frame;
501 AudioFrame near_frame;
    [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 115 webrtc::AudioFrame *procFrame; // audio frame passed to webRTC AMP ProcessStream()
129 webrtc::AudioFrame *revFrame; // audio frame passed to webRTC AMP AnalyzeReverseStream()
786 session->procFrame = new webrtc::AudioFrame();
791 session->revFrame = new webrtc::AudioFrame();
    [all...]

Completed in 109 milliseconds