/external/chromium_org/media/base/ |
multi_channel_resampler.cc | 45 void MultiChannelResampler::Resample(int frames, AudioBus* audio_bus) { 50 resamplers_[0]->Resample(frames, audio_bus->channel(0)); 57 // only call ProvideInput() once when we resample this way. 63 // Resample each channel. 68 // used in a SincResampler kernel, this call to Resample() will only 73 resamplers_[i]->Resample(
|
multi_channel_resampler.h | 39 void Resample(int frames, AudioBus* audio_bus); 42 // not call while Resample() is in progress. 47 // Resample() is in progress. 69 // the current Resample() call.
|
sinc_resampler.h | 57 // Resample |frames| of data from |read_cb_| into |destination|. 58 void Resample(int frames, float* destination); 60 // The maximum size in frames that guarantees Resample() will only make a 65 // not call while Resample() is in progress. 70 // Resample() is in progress.
|
multi_channel_resampler_unittest.cc | 72 resampler.Resample(1, audio_bus_.get()); 81 resampler.Resample(frames, audio_bus_.get());
|
sinc_resampler_unittest.cc | 68 resampler.Resample(resampler.ChunkSize(), resampled_destination.get()); 74 resampler.Resample(max_chunk_size, resampled_destination.get()); 88 resampler.Resample(resampler.ChunkSize() / 2, resampled_destination.get()); 96 resampler.Resample(resampler.ChunkSize() / 2, resampled_destination.get()); 306 TEST_P(SincResamplerTest, Resample) { 343 resampler.Resample(output_samples, resampled_destination.get());
|
/frameworks/av/services/audioflinger/ |
Android.mk | 77 test-resample.cpp \ 88 LOCAL_MODULE:= test-resample
|
test-resample.cpp | 223 resampler->resample((int*) output_vaddr, out_frames, &provider); 224 resampler->resample((int*) output_vaddr, out_frames, &provider); 225 resampler->resample((int*) output_vaddr, out_frames, &provider); 226 resampler->resample((int*) output_vaddr, out_frames, &provider); 243 resampler->resample((int*) output_vaddr, out_frames, &provider);
|
AudioResamplerSinc.h | 42 virtual void resample(int32_t* out, size_t outFrameCount, 50 void resample(int32_t* out, size_t outFrameCount,
|
AudioResampler.h | 59 // Resample int16_t samples from provider and accumulate into 'out'. 67 virtual void resample(int32_t* out, size_t outFrameCount,
|
AudioResamplerCubic.h | 34 virtual void resample(int32_t* out, size_t outFrameCount,
|
/system/media/audio_utils/include/audio_utils/ |
resampler.h | 68 * resample input from buffer provider and output at most *outFrameCount to out buffer. 75 * resample at most *inFrameCount frames from in buffer and output at most
|
/external/speex/ |
Android.mk | 46 libspeex/resample.c
|
/external/webrtc/src/common_audio/signal_processing/ |
resample_by_2_internal.h | 24 * Functions for internal use in the other resample functions
|
signal_processing.gypi | 46 'resample.c',
|
Android.mk | 41 resample.c \
|
/external/chromium_org/remoting/codec/ |
audio_encoder_opus.cc | 27 // Opus doesn't support 44100 sampling rate so we always resample to 48kHz. 181 // Resample data if necessary. 187 resampler_->Resample(kFrameSamples, resampler_bus_.get());
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/ |
NativeImageSkia.cpp | 61 // The percent change below which we will not resample. This usually means 75 // Figure out if we should resample this image. We try to prune out some 82 // We don't need to resample if the source and destination are the same. 92 // Resample in the case where the new size would be non-integral. 99 // Otherwise, don't resample small images. These are often used for 107 // Don't resample if it is being stretched a lot in only one direction. 129 // us to have to resample the whole thing every time. 215 // This does a lot of computation to resample only the portion of the bitmap 367 // Resample the image and then draw the result to canvas with bilinear 444 // No need to resample before drawing [all...] |
/external/speex/include/speex/ |
speex_resampler.h | 155 /** Resample a float array. The input and output buffers must *not* overlap. 172 /** Resample an int array. The input and output buffers must *not* overlap. 189 /** Resample an interleaved float array. The input and output buffers must *not* overlap. 204 /** Resample an interleaved int array. The input and output buffers must *not* overlap.
|
/external/webrtc/src/modules/audio_processing/aec/ |
echo_cancellation.c | 87 int resample; // if the skew is small enough we don't resample member in struct:__anon30471 265 aecpc->resample = kAecFalse; 327 if (aecpc->skewMode == kAecTrue && aecpc->resample == kAecTrue) { 328 // Resample and get a new number of samples 443 aecpc->resample = kAecFalse; 446 aecpc->resample = kAecTrue; 910 if (aecpc->skewMode == kAecTrue && aecpc->resample == kAecTrue) {
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_blit.c | 41 #define RESAMPLE(NAME, PIXELTYPE, SIZE) \ 97 RESAMPLE(resample_row_1, GLubyte, 1) 98 RESAMPLE(resample_row_2, GLushort, 1) 99 RESAMPLE(resample_row_4, GLuint, 1) 100 RESAMPLE(resample_row_8, GLuint, 2) 101 RESAMPLE(resample_row_16, GLuint, 4) 291 /* get pixel row from source and resample to match dest width */
|
/external/mesa3d/src/mesa/swrast/ |
s_blit.c | 41 #define RESAMPLE(NAME, PIXELTYPE, SIZE) \ 97 RESAMPLE(resample_row_1, GLubyte, 1) 98 RESAMPLE(resample_row_2, GLushort, 1) 99 RESAMPLE(resample_row_4, GLuint, 1) 100 RESAMPLE(resample_row_8, GLuint, 2) 101 RESAMPLE(resample_row_16, GLuint, 4) 291 /* get pixel row from source and resample to match dest width */
|
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/ |
AudioResampler.cpp | 103 // Now that we have the source data, resample each channel into the destination bus.
|
/frameworks/av/libvideoeditor/vss/src/ |
VideoEditorResampler.cpp | 162 context->mResampler->resample((int32_t *)pTmpBuffer,
|
/frameworks/base/media/java/android/media/ |
ResampleInputStream.java | 110 // resample input data
|
/external/chromium_org/chrome/browser/history/ |
select_favicon_frames_unittest.cc | 91 // Should resample from the bigger candidate. 105 // If nothing else is available, should resample form the next smaller
|