// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_SINC_RESAMPLER_H_ #define MEDIA_BASE_SINC_RESAMPLER_H_ #include <memory> #include "base/functional/callback.h" #include "base/gtest_prod_util.h" #include "base/memory/aligned_memory.h" #include "base/memory/raw_ptr.h" #include "build/build_config.h" #include "media/base/media_export.h" namespace media { // SincResampler is a high-quality single-channel sample-rate converter. class MEDIA_EXPORT SincResampler { … }; } // namespace media #endif // MEDIA_BASE_SINC_RESAMPLER_H_