Same as https://webrtc-codereview.appspot.com/19519004. The issue in http://chromegw.corp.google.com/i/internal.chromium.webrtc.fyi/builders/Linux... is solved by this change http://src.chromium.org/viewvc/chrome/trunk/src/third_party/libjingle/libjing... (tested locally). BUG=3380 R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17619005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6218 4adac7df-926f-26a2-2b94-8c16560cd09d
70 lines
2.6 KiB
C++
70 lines
2.6 KiB
C++
/*
|
|
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef WEBRTC_COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
|
|
#define WEBRTC_COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
|
|
|
|
#include "webrtc/base/constructormagic.h"
|
|
#include "webrtc/common_audio/resampler/sinc_resampler.h"
|
|
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
|
|
#include "webrtc/typedefs.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// A thin wrapper over SincResampler to provide a push-based interface as
|
|
// required by WebRTC.
|
|
class PushSincResampler : public SincResamplerCallback {
|
|
public:
|
|
// Provide the size of the source and destination blocks in samples. These
|
|
// must correspond to the same time duration (typically 10 ms) as the sample
|
|
// ratio is inferred from them.
|
|
PushSincResampler(int source_frames, int destination_frames);
|
|
virtual ~PushSincResampler();
|
|
|
|
// Perform the resampling. |source_frames| must always equal the
|
|
// |source_frames| provided at construction. |destination_capacity| must be
|
|
// at least as large as |destination_frames|. Returns the number of samples
|
|
// provided in destination (for convenience, since this will always be equal
|
|
// to |destination_frames|).
|
|
int Resample(const int16_t* source, int source_frames,
|
|
int16_t* destination, int destination_capacity);
|
|
int Resample(const float* source,
|
|
int source_frames,
|
|
float* destination,
|
|
int destination_capacity);
|
|
|
|
// Implements SincResamplerCallback.
|
|
virtual void Run(int frames, float* destination) OVERRIDE;
|
|
|
|
SincResampler* get_resampler_for_testing() { return resampler_.get(); }
|
|
static float AlgorithmicDelaySeconds(int source_rate_hz) {
|
|
return 1.f / source_rate_hz * SincResampler::kKernelSize / 2;
|
|
}
|
|
|
|
private:
|
|
scoped_ptr<SincResampler> resampler_;
|
|
scoped_ptr<float[]> float_buffer_;
|
|
const float* source_ptr_;
|
|
const int16_t* source_ptr_int_;
|
|
const int destination_frames_;
|
|
|
|
// True on the first call to Resample(), to prime the SincResampler buffer.
|
|
bool first_pass_;
|
|
|
|
// Used to assert we are only requested for as much data as is available.
|
|
int source_available_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(PushSincResampler);
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
|