mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 04:47:56 -05:00
AudioCore: List of sink types
This commit is contained in:
17
src/audio_core/sink_details.cpp
Normal file
17
src/audio_core/sink_details.cpp
Normal file
@ -0,0 +1,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
|
Reference in New Issue
Block a user