summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/codecctl.cpp
blob: 42961d90856e7394361c216c4e3a4c346df9fa66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/service/audio/codecctl.h"

namespace Service::Audio {

CodecCtl::CodecCtl(Core::System& system_) : ServiceFramework{system_, "codecctl"} {
    static const FunctionInfo functions[] = {
        {0, nullptr, "Initialize"},
        {1, nullptr, "Finalize"},
        {2, nullptr, "Sleep"},
        {3, nullptr, "Wake"},
        {4, nullptr, "SetVolume"},
        {5, nullptr, "GetVolumeMax"},
        {6, nullptr, "GetVolumeMin"},
        {7, nullptr, "SetActiveTarget"},
        {8, nullptr, "GetActiveTarget"},
        {9, nullptr, "BindHeadphoneMicJackInterrupt"},
        {10, nullptr, "IsHeadphoneMicJackInserted"},
        {11, nullptr, "ClearHeadphoneMicJackInterrupt"},
        {12, nullptr, "IsRequested"},
    };
    RegisterHandlers(functions);
}

CodecCtl::~CodecCtl() = default;

} // namespace Service::Audio