chromium/third_party/blink/renderer/platform/audio/simple_fft_convolver.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif

#include "third_party/blink/renderer/platform/audio/simple_fft_convolver.h"

#include "third_party/blink/renderer/platform/audio/vector_math.h"

namespace blink {

SimpleFFTConvolver::SimpleFFTConvolver(
    unsigned input_block_size,
    const std::unique_ptr<AudioFloatArray>& convolution_kernel)
    :{}

void SimpleFFTConvolver::Process(const float* source_p,
                                 float* dest_p,
                                 uint32_t frames_to_process) {}

void SimpleFFTConvolver::Reset() {}

}  // namespace blink