mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

This reverts commit3f87250a4f
. Reason for revert: Downstream is fixed Original change's description: > Revert "Remove RTC_DISALLOW_COPY_AND_ASSIGN usages completely" > > This reverts commit5f0eb93d2a
. > > Reason for revert: Breaks downstream project. I'm going to fix that one and create a reland of this CL after. > > Original change's description: > > Remove RTC_DISALLOW_COPY_AND_ASSIGN usages completely > > > > Bug: webrtc:13555, webrtc:13082 > > Change-Id: Iff2cda6f516739419e97e975e03f77a98f74be03 > > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/249260 > > Reviewed-by: Harald Alvestrand <hta@webrtc.org> > > Reviewed-by: Artem Titov <titovartem@webrtc.org> > > Commit-Queue: (Daniel.L) Byoungchan Lee <daniel.l@hpcnt.com> > > Cr-Commit-Position: refs/heads/main@{#35805} > > TBR=hta@webrtc.org,titovartem@webrtc.org,daniel.l@hpcnt.com,webrtc-scoped@luci-project-accounts.iam.gserviceaccount.com > > Change-Id: I33d497f1132adfe6d151023195a388d9b7d548f9 > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Bug: webrtc:13555, webrtc:13082 > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/249364 > Reviewed-by: Artem Titov <titovartem@webrtc.org> > Owners-Override: Artem Titov <titovartem@webrtc.org> > Reviewed-by: Andrey Logvin <landrey@webrtc.org> > Reviewed-by: Björn Terelius <terelius@webrtc.org> > Commit-Queue: Artem Titov <titovartem@webrtc.org> > Cr-Commit-Position: refs/heads/main@{#35807} # Not skipping CQ checks because this is a reland. Bug: webrtc:13555, webrtc:13082 Change-Id: I7ef1ef3b6e3c41b1a96014aa75f003c0fcf33949 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/249365 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/main@{#35814}
81 lines
3 KiB
C++
81 lines
3 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 COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
|
|
#define COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
|
|
#include "common_audio/resampler/sinc_resampler.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// A thin wrapper over SincResampler to provide a push-based interface as
|
|
// required by WebRTC. SincResampler uses a pull-based interface, and will
|
|
// use SincResamplerCallback::Run() to request data upon a call to Resample().
|
|
// These Run() calls will happen on the same thread Resample() is called on.
|
|
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(size_t source_frames, size_t destination_frames);
|
|
~PushSincResampler() override;
|
|
|
|
PushSincResampler(const PushSincResampler&) = delete;
|
|
PushSincResampler& operator=(const PushSincResampler&) = delete;
|
|
|
|
// 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`).
|
|
size_t Resample(const int16_t* source,
|
|
size_t source_frames,
|
|
int16_t* destination,
|
|
size_t destination_capacity);
|
|
size_t Resample(const float* source,
|
|
size_t source_frames,
|
|
float* destination,
|
|
size_t destination_capacity);
|
|
|
|
// Delay due to the filter kernel. Essentially, the time after which an input
|
|
// sample will appear in the resampled output.
|
|
static float AlgorithmicDelaySeconds(int source_rate_hz) {
|
|
return 1.f / source_rate_hz * SincResampler::kKernelSize / 2;
|
|
}
|
|
|
|
protected:
|
|
// Implements SincResamplerCallback.
|
|
void Run(size_t frames, float* destination) override;
|
|
|
|
private:
|
|
friend class PushSincResamplerTest;
|
|
SincResampler* get_resampler_for_testing() { return resampler_.get(); }
|
|
|
|
std::unique_ptr<SincResampler> resampler_;
|
|
std::unique_ptr<float[]> float_buffer_;
|
|
const float* source_ptr_;
|
|
const int16_t* source_ptr_int_;
|
|
const size_t 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.
|
|
size_t source_available_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // COMMON_AUDIO_RESAMPLER_PUSH_SINC_RESAMPLER_H_
|