#include "webrtc/voice_engine/utility.h"
#include "webrtc/audio/utility/audio_frame_operations.h"
#include "webrtc/base/checks.h"
#include "webrtc/base/logging.h"
#include "webrtc/common_audio/resampler/include/push_resampler.h"
#include "webrtc/common_audio/signal_processing/include/signal_processing_library.h"
#include "webrtc/common_types.h"
#include "webrtc/modules/include/module_common_types.h"
#include "webrtc/voice_engine/voice_engine_defines.h"
|
void | webrtc::voe::RemixAndResample (const AudioFrame &src_frame, PushResampler< int16_t > *resampler, AudioFrame *dst_frame) |
|
void | webrtc::voe::RemixAndResample (const int16_t *src_data, size_t samples_per_channel, size_t num_channels, int sample_rate_hz, PushResampler< int16_t > *resampler, AudioFrame *dst_frame) |
|
void | webrtc::voe::MixWithSat (int16_t target[], size_t target_channel, const int16_t source[], size_t source_channel, size_t source_len) |
|