summaryrefslogblamecommitdiffstats
path: root/src/core/hle/service/audio/audout_u.h
blob: f7ae2f2bfcdb3f5d33e2fd396870e7b9092ddf2d (plain) (tree)
1
2
3
4
5
6
7
8
9





                                            
                 

                                     



                     



                



                        
                          
 

                

                                                        
                                            
                        

        


                                                           
                                                                 
                                                    

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

#pragma once

#include <vector>
#include "core/hle/service/service.h"

namespace AudioCore {
class AudioOut;
}

namespace Core {
class System;
}

namespace Kernel {
class HLERequestContext;
}

namespace Service::Audio {

class IAudioOut;

class AudOutU final : public ServiceFramework<AudOutU> {
public:
    explicit AudOutU(Core::System& system_);
    ~AudOutU() override;

private:
    void ListAudioOutsImpl(Kernel::HLERequestContext& ctx);
    void OpenAudioOutImpl(Kernel::HLERequestContext& ctx);

    std::vector<std::shared_ptr<IAudioOut>> audio_out_interfaces;
    std::unique_ptr<AudioCore::AudioOut> audio_core;
};

} // namespace Service::Audio