summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink_details.cpp
blob: 20412daaf2b28ed27efa12fd17ea8491bcf980f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include <memory>
#include <vector>

#include "audio_core/null_sink.h"
#include "audio_core/sink_details.h"

namespace AudioCore {

const std::vector<SinkDetails> g_sink_details = {
    { "null", []() { return std::make_unique<NullSink>(); } },
};

} // namespace AudioCore