104 lines
2.8 KiB
C++
104 lines
2.8 KiB
C++
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
// This code is part of the sfizz library and is licensed under a BSD 2-clause
|
|
// license. You should have receive a LICENSE.md file along with the code.
|
|
// If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz
|
|
|
|
#include "Buffer.h"
|
|
#include <benchmark/benchmark.h>
|
|
#include <sndfile.hh>
|
|
#define DR_FLAC_IMPLEMENTATION
|
|
#include "dr_flac.h"
|
|
#include "ghc/fs_std.hpp"
|
|
#include "absl/memory/memory.h"
|
|
#include <memory>
|
|
#ifndef NDEBUG
|
|
#include <iostream>
|
|
#endif
|
|
#if 0
|
|
#include "libnyquist/Decoders.h"
|
|
#endif
|
|
#include <unistd.h> // readlink
|
|
|
|
class FileFixture : public benchmark::Fixture {
|
|
public:
|
|
void SetUp(const ::benchmark::State& /* state */) {
|
|
filePath1 = getPath() / "sample1.flac";
|
|
filePath2 = getPath() / "sample2.flac";
|
|
filePath3 = getPath() / "sample3.flac";
|
|
if ( !fs::exists(filePath1)
|
|
|| !fs::exists(filePath2)
|
|
|| !fs::exists(filePath3) ) {
|
|
#ifndef NDEBUG
|
|
std::cerr << "Can't find path" << '\n';
|
|
#endif
|
|
std::terminate();
|
|
}
|
|
}
|
|
|
|
void TearDown(const ::benchmark::State& /* state */) {
|
|
}
|
|
|
|
fs::path getPath()
|
|
{
|
|
#ifdef __linux__
|
|
char buf[PATH_MAX + 1];
|
|
if (readlink("/proc/self/exe", buf, sizeof(buf) - 1) == -1)
|
|
return {};
|
|
std::string str { buf };
|
|
return str.substr(0, str.rfind('/'));
|
|
#elif _WIN32
|
|
return fs::current_path();
|
|
#endif
|
|
}
|
|
|
|
std::unique_ptr<sfz::Buffer<float>> buffer;
|
|
|
|
fs::path filePath1;
|
|
fs::path filePath2;
|
|
fs::path filePath3;
|
|
};
|
|
|
|
#if defined(SFIZZ_USE_SNDFILE)
|
|
BENCHMARK_DEFINE_F(FileFixture, SndFile)(benchmark::State& state) {
|
|
for (auto _ : state)
|
|
{
|
|
SndfileHandle sndfile(filePath1.c_str());
|
|
buffer = absl::make_unique<sfz::Buffer<float>>(sndfile.channels() * sndfile.frames());
|
|
sndfile.readf(buffer->data(), sndfile.frames());
|
|
}
|
|
}
|
|
#endif
|
|
|
|
BENCHMARK_DEFINE_F(FileFixture, DrFlac)(benchmark::State& state) {
|
|
for (auto _ : state)
|
|
{
|
|
auto* flac = drflac_open_file(filePath2.c_str(), nullptr);
|
|
buffer = absl::make_unique<sfz::Buffer<float>>(flac->channels * flac->totalPCMFrameCount);
|
|
drflac_read_pcm_frames_f32(flac, flac->totalPCMFrameCount, buffer->data());
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
BENCHMARK_DEFINE_F(FileFixture, LibNyquist)(benchmark::State& state) {
|
|
for (auto _ : state)
|
|
{
|
|
nqr::AudioData data;
|
|
nqr::NyquistIO loader;
|
|
loader.Load(&data, filePath3.string());
|
|
benchmark::DoNotOptimize(data);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if defined(SFIZZ_USE_SNDFILE)
|
|
BENCHMARK_REGISTER_F(FileFixture, SndFile);
|
|
#endif
|
|
|
|
BENCHMARK_REGISTER_F(FileFixture, DrFlac);
|
|
|
|
#if 0
|
|
BENCHMARK_REGISTER_F(FileFixture, LibNyquist);
|
|
#endif
|
|
|
|
BENCHMARK_MAIN();
|