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

  /external/webrtc/src/modules/interface/
module_common_types.h 649 * AudioFrame class
651 * The AudioFrame class holds up to 60 ms wideband
672 class AudioFrame
692 AudioFrame();
693 virtual ~AudioFrame();
707 AudioFrame& Append(const AudioFrame& rhs);
711 AudioFrame& operator=(const AudioFrame& rhs);
712 AudioFrame& operator>>=(const WebRtc_Word32 rhs)
    [all...]
  /external/webrtc/src/modules/audio_processing/main/source/
audio_buffer.h 21 class AudioFrame;
43 void DeinterleaveFrom(AudioFrame* audioFrame);
44 void InterleaveTo(AudioFrame* audioFrame) const;
audio_processing_impl.h 58 virtual int ProcessStream(AudioFrame* frame);
59 virtual int AnalyzeReverseStream(AudioFrame* frame);
audio_buffer.cc 187 void AudioBuffer::DeinterleaveFrom(AudioFrame* audioFrame) {
188 assert(audioFrame->_audioChannel <= max_num_channels_);
189 assert(audioFrame->_payloadDataLengthInSamples == samples_per_channel_);
191 num_channels_ = audioFrame->_audioChannel;
198 data_ = audioFrame->_payloadData;
204 WebRtc_Word16* interleaved = audioFrame->_payloadData;
213 void AudioBuffer::InterleaveTo(AudioFrame* audioFrame) const {
214 assert(audioFrame->_audioChannel == num_channels_)
    [all...]
audio_processing_impl.cc 248 int AudioProcessingImpl::ProcessStream(AudioFrame* frame) {
378 int AudioProcessingImpl::AnalyzeReverseStream(AudioFrame* frame) {
  /external/webrtc/src/modules/audio_processing/main/interface/
audio_processing.h 19 class AudioFrame;
151 virtual int ProcessStream(AudioFrame* frame) = 0;
167 virtual int AnalyzeReverseStream(AudioFrame* frame) = 0;
  /external/webrtc/src/modules/audio_processing/main/test/unit_test/
unit_test.cc 24 using webrtc::AudioFrame;
60 webrtc::AudioFrame* frame_;
61 webrtc::AudioFrame* revframe_;
78 frame_ = new AudioFrame();
79 revframe_ = new AudioFrame();
188 AudioFrame primary_frame;
189 AudioFrame reverse_frame;
  /external/webrtc/src/modules/audio_processing/main/test/process_test/
process_test.cc 25 using webrtc::AudioFrame;
377 AudioFrame far_frame;
380 AudioFrame near_frame;
  /frameworks/base/media/libeffects/preprocessing/
PreProcessing.cpp 109 webrtc::AudioFrame *procFrame; // audio frame passed to webRTC AMP ProcessStream()
123 webrtc::AudioFrame *revFrame; // audio frame passed to webRTC AMP AnalyzeReverseStream()
739 session->procFrame = new webrtc::AudioFrame();
744 session->revFrame = new webrtc::AudioFrame();
    [all...]

Completed in 479 milliseconds