[release] version bump to 13.0 beta1
[vuplus_xbmc] / xbmc / cores / AudioEngine / Engines / CoreAudio / ICoreAudioAEHAL.h
1 #pragma once
2 /*
3  *      Copyright (C) 2011-2013 Team XBMC
4  *      http://xbmc.org
5  *
6  *  This Program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2, or (at your option)
9  *  any later version.
10  *
11  *  This Program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with XBMC; see the file COPYING.  If not, see
18  *  <http://www.gnu.org/licenses/>.
19  *
20  */
21
22 #include "cores/AudioEngine/Utils/AEAudioFormat.h"
23 #include "cores/AudioEngine/Interfaces/AE.h"
24 #include "ICoreAudioSource.h"
25
26 class ICoreAudioAEHAL;
27 class CAUOutputDevice;
28
29 /**
30  * ICoreAudioAEHAL Interface
31  */
32 class ICoreAudioAEHAL
33 {
34 protected:
35   ICoreAudioAEHAL() {}
36   virtual ~ICoreAudioAEHAL() {}
37
38 public:
39   virtual bool   Initialize(ICoreAudioSource *ae, bool passThrough, AEAudioFormat &format, AEDataFormat rawDataFormat, std::string &device, float initVolume) = 0;
40   virtual void   Deinitialize() = 0;
41   virtual void   EnumerateOutputDevices(AEDeviceList &devices, bool passthrough) = 0;
42   //virtual CAUOutputDevice *DestroyUnit(CAUOutputDevice *outputUnit);
43   //virtual CAUOutputDevice *CreateUnit(ICoreAudioSource *pSource, AEAudioFormat &format);
44   //virtual void  SetDirectInput(ICoreAudioSource *pSource, AEAudioFormat &format);
45   virtual void   Stop() = 0;
46   virtual bool   Start() = 0;
47   virtual double GetDelay() = 0;
48   virtual void   SetVolume(float volume) = 0;
49 };