You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Device/AudioDevice.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ import os.log
10
10
11
11
/// A HAL audio device object
12
12
///
13
-
/// This class has four scopes (`kAudioObjectPropertyScopeGlobal`, `kAudioObjectPropertyScopeInput`, `kAudioObjectPropertyScopeOutput`, and `kAudioObjectPropertyScopePlayThrough`), a master element (`kAudioObjectPropertyElementMaster`), and an element for each channel in each stream
13
+
/// This class has four scopes (`kAudioObjectPropertyScopeGlobal`, `kAudioObjectPropertyScopeInput`, `kAudioObjectPropertyScopeOutput`, and `kAudioObjectPropertyScopePlayThrough`), a main element (`kAudioObjectPropertyElementMain`), and an element for each channel in each stream
14
14
/// - remark: This class correponds to objects with base class `kAudioDeviceClassID`
Copy file name to clipboardExpand all lines: Device/AudioStream.swift
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
//
2
-
// Copyright (c) 2020 - 2022 Stephen F. Booth <me@sbooth.org>
2
+
// Copyright (c) 2020 - 2023 Stephen F. Booth <me@sbooth.org>
3
3
// Part of https://github.com/sbooth/SFBAudioEngine
4
4
// MIT license
5
5
//
@@ -9,7 +9,7 @@ import CoreAudio
9
9
10
10
/// A HAL audio stream object
11
11
///
12
-
/// This class has a single scope (`kAudioObjectPropertyScopeGlobal`), a master element (`kAudioObjectPropertyElementMaster`), and an element for each channel
12
+
/// This class has a single scope (`kAudioObjectPropertyScopeGlobal`), a main element (`kAudioObjectPropertyElementMain`), and an element for each channel
13
13
/// - remark: This class correponds to objects with base class `kAudioStreamClassID`
14
14
publicclassAudioStream:AudioObject{
15
15
// A textual representation of this instance, suitable for debugging.
0 commit comments