#include <AEDeviceEnumerationOSX.h>
 | 
|   | AEDeviceEnumerationOSX (AudioDeviceID deviceID) | 
|   | C'tor - initialises the Enumerator and calls Enumerate.  More...
  | 
|   | 
|   | ~AEDeviceEnumerationOSX () | 
|   | 
| CADeviceList  | GetDeviceInfoList () const | 
|   | Gets the device list which was enumerated by the last call to Enumerate (which is also called in c'tor).  More...
  | 
|   | 
| bool  | Enumerate () | 
|   | Fetches all metadata from the CoreAudio device which is needed to generate a proper DeviceList for AE This method is always called from C'tor but can be called multiple times if the streams of a device changed. This fills m_caStreamInfos. After this call - GetDeviceInfoList will reflect the Enumerated metadata.  More...
  | 
|   | 
| unsigned int  | GetNumPlanes () const | 
|   | Returns the number of Planes for a device. This will be 1 for non-planar devices and > 1 for planar devices.  More...
  | 
|   | 
| bool  | IsPlanar () const | 
|   | Checks if the m_deviceID belongs to a planar or non-planar device.  More...
  | 
|   | 
| bool  | FindSuitableFormatForStream (UInt32 &streamIdx, const AEAudioFormat &format, bool virt, AudioStreamBasicDescription &outputFormat, AudioStreamID &outputStream) const | 
|   | Tries to find a suitable CoreAudio format which matches the given AEAudioFormat as close as possible.  More...
  | 
|   | 
| std::string  | GetMasterDeviceName () const | 
|   | Returns the device name which belongs to m_deviceID without any stream/source suffixes.  More...
  | 
|   | 
| void  | GetAEChannelMap (CAEChannelInfo &channelMap, unsigned int channelsPerFrame) const | 
|   | Tries to return a proper channelmap from CA in a format AE understands.  More...
  | 
|   | 
| float  | ScoreFormat (const AudioStreamBasicDescription &formatDesc, const AEAudioFormat &format) const | 
|   | Scores a format based on:  More...
  | 
|   | 
◆ AEDeviceEnumerationOSX()
      
        
          | AEDeviceEnumerationOSX::AEDeviceEnumerationOSX  | 
          ( | 
          AudioDeviceID  | 
          deviceID | ) | 
           | 
        
      
 
C'tor - initialises the Enumerator and calls Enumerate. 
- Parameters
 - 
  
    | deviceID | - the CoreAudio Device ID which will be the base of the enumerated device list  | 
  
   
 
 
◆ ~AEDeviceEnumerationOSX()
  
  
      
        
          | AEDeviceEnumerationOSX::~AEDeviceEnumerationOSX  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
 
◆ Enumerate()
      
        
          | bool AEDeviceEnumerationOSX::Enumerate  | 
          ( | 
           | ) | 
           | 
        
      
 
Fetches all metadata from the CoreAudio device which is needed to generate a proper DeviceList for AE This method is always called from C'tor but can be called multiple times if the streams of a device changed. This fills m_caStreamInfos. After this call - GetDeviceInfoList will reflect the Enumerated metadata. 
- Returns
 - false when streamlist couldn't be fetched from device - else true 
 
 
 
◆ FindSuitableFormatForStream()
      
        
          | bool AEDeviceEnumerationOSX::FindSuitableFormatForStream  | 
          ( | 
          UInt32 &  | 
          streamIdx,  | 
        
        
           | 
           | 
          const AEAudioFormat &  | 
          format,  | 
        
        
           | 
           | 
          bool  | 
          virt,  | 
        
        
           | 
           | 
          AudioStreamBasicDescription &  | 
          outputFormat,  | 
        
        
           | 
           | 
          AudioStreamID &  | 
          outputStream  | 
        
        
           | 
          ) | 
           |  const | 
        
      
 
Tries to find a suitable CoreAudio format which matches the given AEAudioFormat as close as possible. 
- Parameters
 - 
  
    | streamIdx | [in/out] - if streamIdx != INT_MAX only formats of the given streamIdx are checked if streamIdx == INT_MAX - formats of all streams in the device are considered On success this parameter returns the selected streamIdx. | 
    | format | [in] - the requested AE format which should be matched to the stream formats of CA  | 
    | outputFormat | [out] - the found CA format which matches best to the requested AE format  | 
    | outputStream | [out] - the coreaudio streamid which contains the coreaudio format returned in outputFormat  | 
  
   
- Returns
 - true if a matching corea audio format was found - else false 
 
 
 
◆ GetAEChannelMap()
      
        
          | void AEDeviceEnumerationOSX::GetAEChannelMap  | 
          ( | 
          CAEChannelInfo &  | 
          channelMap,  | 
        
        
           | 
           | 
          unsigned int  | 
          channelsPerFrame  | 
        
        
           | 
          ) | 
           |  const | 
        
      
 
Tries to return a proper channelmap from CA in a format AE understands. 
- Parameters
 - 
  
    | channelMap | [in/out] - returns the found channelmap in AE format if initialised with a map the number of channels is used to determine if stereo or multichannel map should be fetched  | 
    | channelsPerFrame | [int] - the number of channels which should be mapped (also decides if stereo or multichannel map is fetched similar to channelMap param)  | 
  
   
 
 
◆ GetDeviceInfoList()
      
        
          | CADeviceList AEDeviceEnumerationOSX::GetDeviceInfoList  | 
          ( | 
           | ) | 
           const | 
        
      
 
Gets the device list which was enumerated by the last call to Enumerate (which is also called in c'tor). 
- Returns
 - Returns the device list. 
 
 
 
◆ GetMasterDeviceName()
  
  
      
        
          | std::string AEDeviceEnumerationOSX::GetMasterDeviceName  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Returns the device name which belongs to m_deviceID without any stream/source suffixes. 
- Returns
 - the CA device name 
 
 
 
◆ GetNumPlanes()
      
        
          | unsigned int AEDeviceEnumerationOSX::GetNumPlanes  | 
          ( | 
           | ) | 
           const | 
        
      
 
Returns the number of Planes for a device. This will be 1 for non-planar devices and > 1 for planar devices. 
- Returns
 - Number of planes for this device. 
 
 
 
◆ IsPlanar()
  
  
      
        
          | bool AEDeviceEnumerationOSX::IsPlanar  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Checks if the m_deviceID belongs to a planar or non-planar device. 
- Returns
 - true if m_deviceID belongs to a planar device - else false. 
 
 
 
◆ ScoreFormat()
      
        
          | float AEDeviceEnumerationOSX::ScoreFormat  | 
          ( | 
          const AudioStreamBasicDescription &  | 
          formatDesc,  | 
        
        
           | 
           | 
          const AEAudioFormat &  | 
          format  | 
        
        
           | 
          ) | 
           |  const | 
        
      
 
Scores a format based on: 
- Matching passthrough characteristics (i.e. passthrough flag)
 
- Matching sample rate.
 
- Matching bits per channel (or higher).
 
- Matching number of channels (or higher).
 
- Parameters
 - 
  
    | formatDesc | [in] - The CA FormatDescription which should be scored  | 
    | format | [in] - the AE format which should be matched as good as possible  | 
  
   
- Returns
 - - the score of formatDesc - higher scores indicate better matching to "format" (scores > 10000 indicate passthrough formats) 
 
 
 
The documentation for this class was generated from the following files: