Represents an output driver.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public sealed class AoDriver
Public NotInheritable Class AoDriver
public ref class AoDriver sealed
Members
All Members | Methods | Properties | |||
Icon | Member | Description |
---|---|---|
Author |
Information about the driver's author.
| |
Comment |
A driver comment string (possibly empty). It may contain newlines.
| |
Default |
The default live output driver. If the libao configuration files specify a default driver, it is used; Otherwise the library tries to pick a live output driver that will work on the host platform.
| |
Drivers |
An array of all installed libao drivers.
| |
Equals(Object) | (Inherited from Object.) | |
FileExtension |
The normal file extension associated with a particular driver (like "wav" or "au"). This allows library users to guess appropriate file names. You can safely ignore the recommended extension.
| |
Finalize()()() | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) | |
FromID(Int32) |
Look up an ID number in the list of installed drivers.
| |
FromName(String) |
Look up a short name in the list of installed drivers.
| |
GetHashCode()()() | Serves as a hash function for a particular type. GetHashCode()()() is suitable for use in hashing algorithms and data structures like a hash table. (Inherited from Object.) | |
GetType()()() | Gets the Type of the current instance. (Inherited from Object.) | |
ID |
The driver's low-level ID number.
| |
IsFile |
Returns true if the driver is used for file output.
| |
IsLive |
Returns true if the driver is used for live output.
| |
MemberwiseClone()()() | Creates a shallow copy of the current Object. (Inherited from Object.) | |
Name |
A longer name for the driver which may contain whitespace, but no newlines. It is useful for telling users what output driver is in use.
| |
OpenFile(String, Boolean, Int32, Int32, Int32) |
Open a file for audio output. The file format is determined by the audio driver used.
| |
OpenFile(String, Boolean, Int32, Int32, Int32, AoDriverOptions) |
Open a file for audio output. The file format is determined by the audio driver used.
| |
OpenFile(String, Boolean, Int32, Int32, Int32, AoDriverOptions, ByteFormat) |
Open a file for audio output. The file format is determined by the audio driver used.
| |
OpenLive(Int32, Int32, Int32) |
Open a live playback audio device for output.
| |
OpenLive(Int32, Int32, Int32, AoDriverOptions) |
Open a live playback audio device for output.
| |
OpenLive(Int32, Int32, Int32, AoDriverOptions, ByteFormat) |
Open a live playback audio device for output.
| |
ShortName |
A short identifier for the driver. The short name contains only alphanumeric characters, and no whitespace. It is used to look up the driver using FromName(String).
| |
SupportedOptions |
An array of strings which lists the option keys accepted by this driver.
| |
ToString()()() | (Inherited from Object.) |
Inheritance Hierarchy
Object | |
AoDriver |