OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PushSincResampler
(Results
1 - 10
of
10
) sorted by null
/external/webrtc/webrtc/common_audio/resampler/
push_sinc_resampler.cc
20
PushSincResampler
::
PushSincResampler
(size_t source_frames,
31
PushSincResampler
::~
PushSincResampler
() {
34
size_t
PushSincResampler
::Resample(const int16_t* source,
49
size_t
PushSincResampler
::Resample(const float* source,
81
void
PushSincResampler
::Run(size_t frames, float* destination) {
push_sinc_resampler.h
25
class
PushSincResampler
: public SincResamplerCallback {
30
PushSincResampler
(size_t source_frames, size_t destination_frames);
31
~
PushSincResampler
() override;
71
RTC_DISALLOW_COPY_AND_ASSIGN(
PushSincResampler
);
push_resampler.cc
54
sinc_resampler_.reset(new
PushSincResampler
(src_size_10ms_mono,
61
sinc_resampler_right_.reset(new
PushSincResampler
(src_size_10ms_mono,
push_sinc_resampler_unittest.cc
97
PushSincResampler
resampler(input_samples, output_samples);
117
printf("
PushSincResampler
took %.2f us per frame; which is a %.1f%% overhead "
152
PushSincResampler
resampler(input_block_size, output_block_size);
164
// becomes explicit and is managed by zero-stuffing in
PushSincResampler
. We
172
// With the
PushSincResampler
, we produce the signal block-by-10ms-block
/external/webrtc/webrtc/common_audio/resampler/include/
push_resampler.h
19
class
PushSincResampler
;
21
// Wraps
PushSincResampler
to provide stereo support.
39
rtc::scoped_ptr<
PushSincResampler
> sinc_resampler_;
40
rtc::scoped_ptr<
PushSincResampler
> sinc_resampler_right_;
/external/webrtc/webrtc/modules/audio_processing/
audio_buffer.h
24
class
PushSincResampler
;
157
ScopedVector<
PushSincResampler
> input_resamplers_;
158
ScopedVector<
PushSincResampler
> output_resamplers_;
audio_buffer.cc
79
new
PushSincResampler
(input_num_frames_,
87
new
PushSincResampler
(proc_num_frames_,
/external/webrtc/webrtc/common_audio/
audio_converter.cc
89
resamplers_.push_back(new
PushSincResampler
(src_frames, dst_frames));
101
ScopedVector<
PushSincResampler
> resamplers_;
audio_converter_unittest.cc
129
PushSincResampler
::AlgorithmicDelaySeconds(src_sample_rate_hz) *
/external/webrtc/webrtc/modules/audio_processing/test/
audio_processing_unittest.cc
[
all
...]
Completed in 427 milliseconds