summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/audio/hwopus.h
blob: 5258d59f33294756b20efee3d28fdb2b50487580 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                      
                                                         



                                                           
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

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

namespace Service::Audio {

class HwOpus final : public ServiceFramework<HwOpus> {
public:
    explicit HwOpus();
    ~HwOpus() = default;

private:
    void OpenOpusDecoder(Kernel::HLERequestContext& ctx);
    void GetWorkBufferSize(Kernel::HLERequestContext& ctx);
};

} // namespace Service::Audio