-
Notifications
You must be signed in to change notification settings - Fork 88
/
audio_switch.c
798 lines (688 loc) · 28.3 KB
/
audio_switch.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
/*
* audio_switch.c
* AudioSwitcher
Copyright (c) 2008 Devon Weller <[email protected]>
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
*/
#include "audio_switch.h"
void showUsage(const char * appName) {
printf("Usage: %s [-a] [-c] [-t type] [-n] -s device_name | -i device_id | -u device_uid\n"
" -a : shows all devices\n"
" -c : shows current device\n\n"
" -f format : output format (cli/human/json). Defaults to human.\n"
" -t type : device type (input/output/system/all). Defaults to output.\n"
" -m mute : sets the mute status (mute/unmute/toggle). For input/output only.\n"
" -n : cycles the audio device to the next one\n"
" -i device_id : sets the audio device to the given device by id\n"
" -u device_uid : sets the audio device to the given device by uid or a substring of the uid\n"
" -s device_name : sets the audio device to the given device by name\n\n",appName);
}
int runAudioSwitch(int argc, const char * argv[]) {
char requestedDeviceName[256];
char printableDeviceName[256];
int requestedDeviceID;
char requestedDeviceUID[256];
AudioDeviceID chosenDeviceID = kAudioDeviceUnknown;
ASDeviceType typeRequested = kAudioTypeUnknown;
ASOutputType outputRequested = kFormatHuman;
ASMuteType muteRequested = kToggleMute;
int function = 0;
int result = 0;
int c;
while ((c = getopt(argc, (char **)argv, "hacm:nt:f:i:u:s:")) != -1) {
switch (c) {
case 'f':
// format
if (strcmp(optarg, "cli") == 0) {
outputRequested = kFormatCLI;
} else if (strcmp(optarg, "json") == 0) {
outputRequested = kFormatJSON;
} else if (strcmp(optarg, "human") == 0) {
outputRequested = kFormatHuman;
} else {
printf("Unknown format %s\n", optarg);
showUsage(argv[0]);
return 1;
}
break;
case 'a':
// show all
function = kFunctionShowAll;
break;
case 'c':
// get current device
function = kFunctionShowCurrent;
break;
case 'h':
// show help
function = kFunctionShowHelp;
break;
case 'm':
// control the mute status of the interface selected with -t
function = kFunctionMute;
// set the mute mode
if (strcmp(optarg, "mute") == 0) {
muteRequested = kMute;
} else if (strcmp(optarg, "unmute") == 0) {
muteRequested = kUnmute;
} else if (strcmp(optarg, "toggle") == 0) {
muteRequested = kToggleMute;
} else {
printf("Invalid mute operation type \"%s\" specified.\n", optarg);
showUsage(argv[0]);
return 1;
}
break;
case 'n':
// cycle to the next audio device
function = kFunctionCycleNext;
break;
case 'i':
// set the requestedDeviceID
function = kFunctionSetDeviceByID;
requestedDeviceID = atoi(optarg);
break;
case 'u':
// set the requestedDeviceUID
function = kFunctionSetDeviceByUID;
strcpy(requestedDeviceUID, optarg);
break;
case 's':
// set the requestedDeviceName
function = kFunctionSetDeviceByName;
strcpy(requestedDeviceName, optarg);
break;
case 't':
// set the requestedDeviceName
if (strcmp(optarg, "input") == 0) {
typeRequested = kAudioTypeInput;
} else if (strcmp(optarg, "output") == 0) {
typeRequested = kAudioTypeOutput;
} else if (strcmp(optarg, "system") == 0) {
typeRequested = kAudioTypeSystemOutput;
} else if (strcmp(optarg, "all") == 0) {
typeRequested = kAudioTypeAll;
} else {
printf("Invalid device type \"%s\" specified.\n",optarg);
showUsage(argv[0]);
return 1;
}
break;
}
}
if (function == kFunctionShowAll) {
switch(typeRequested) {
case kAudioTypeInput:
case kAudioTypeOutput:
showAllDevices(typeRequested, outputRequested);
break;
case kAudioTypeSystemOutput:
showAllDevices(kAudioTypeOutput, outputRequested);
break;
default:
showAllDevices(kAudioTypeInput, outputRequested);
showAllDevices(kAudioTypeOutput, outputRequested);
}
return 0;
}
if (function == kFunctionShowHelp) {
showUsage(argv[0]);
return 0;
}
if (function == kFunctionShowCurrent) {
if (typeRequested == kAudioTypeUnknown) typeRequested = kAudioTypeOutput;
showCurrentlySelectedDeviceID(typeRequested, outputRequested);
return 0;
}
if (typeRequested == kAudioTypeUnknown) typeRequested = kAudioTypeOutput;
if (function == kFunctionCycleNext) {
result = cycleNext(typeRequested);
return result;
}
if (function == kFunctionSetDeviceByID) {
chosenDeviceID = (AudioDeviceID)requestedDeviceID;
sprintf(printableDeviceName, "Device with ID: %d", chosenDeviceID);
}
if (function == kFunctionSetDeviceByName && typeRequested != kAudioTypeAll) {
// find the id of the requested device
chosenDeviceID = getRequestedDeviceID(requestedDeviceName, typeRequested);
if (chosenDeviceID == kAudioDeviceUnknown) {
printf("Could not find an audio device named \"%s\" of type %s. Nothing was changed.\n",requestedDeviceName, deviceTypeName(typeRequested));
return 1;
}
strcpy(printableDeviceName, requestedDeviceName);
}
if (function == kFunctionSetDeviceByUID) {
// find the id of the requested device
chosenDeviceID = getRequestedDeviceIDFromUIDSubstring(requestedDeviceUID, typeRequested);
if (chosenDeviceID == kAudioDeviceUnknown) {
printf("Could not find an audio device with UID \"%s\" of type %s. Nothing was changed.\n", requestedDeviceUID, deviceTypeName(typeRequested));
return 1;
}
sprintf(printableDeviceName, "Device with UID: %s", getDeviceUID(chosenDeviceID));
}
if (function == kFunctionMute) {
OSStatus status;
bool anyStatusError = false;
if (typeRequested == kAudioTypeUnknown) typeRequested = kAudioTypeInput;
switch(typeRequested) {
case kAudioTypeInput:
case kAudioTypeOutput:
status = setMute(typeRequested, muteRequested);
if(status != noErr) {
printf("Failed setting mute state. Error: %d (%s)", status, GetMacOSStatusErrorString(status));
return 1;
}
break;
case kAudioTypeAll:
status = setMute(kAudioTypeInput, muteRequested);
if(status != noErr) {
printf("Failed setting mute state for input. Error: %d (%s)", status, GetMacOSStatusErrorString(status));
anyStatusError = true;
}
status = setMute(kAudioTypeOutput, muteRequested);
if(status != noErr) {
printf("Failed setting mute state for output. Error: %d (%s)", status, GetMacOSStatusErrorString(status));
anyStatusError = true;
}
if (anyStatusError) {
return 1;
}
break;
case kAudioTypeSystemOutput:
printf("audio device \"%s\" may not be muted\n", deviceTypeName(typeRequested));
return 1;
break;
}
return 0;
}
if (typeRequested == kAudioTypeAll && function == kFunctionSetDeviceByName) {
// special case for all - process each one separately
result = setAllDevicesByName(requestedDeviceName);
} else {
// require a chose
if (!chosenDeviceID) {
printf("Please specify audio device.\n");
showUsage(argv[0]);
return 1;
}
// choose the requested audio device
result = setDevice(chosenDeviceID, typeRequested);
printf("%s audio device set to \"%s\"\n", deviceTypeName(typeRequested), printableDeviceName);
}
return result;
}
const char * getDeviceUID(AudioDeviceID deviceID) {
CFStringRef deviceUID = NULL;
UInt32 dataSize = sizeof(deviceUID);
AudioObjectPropertyAddress propertyAddress = {
kAudioHardwarePropertyDevices,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
propertyAddress.mSelector = kAudioDevicePropertyDeviceUID;
OSStatus err = AudioObjectGetPropertyData(deviceID, &propertyAddress, 0, NULL, &dataSize, &deviceUID);
if (err != 0) {
// Handle error
return "";
}
const char * deviceUID_string = NULL;
CFIndex length = CFStringGetLength(deviceUID);
CFIndex maxSize = CFStringGetMaximumSizeForEncoding(length, kCFStringEncodingUTF8) + 1;
deviceUID_string = (char *)malloc(maxSize);
if (deviceUID_string) {
if (CFStringGetCString(deviceUID, deviceUID_string, maxSize, kCFStringEncodingUTF8)) {
CFRelease(deviceUID);
return deviceUID_string;
}
free((void *)deviceUID_string);
}
CFRelease(deviceUID);
return "";
}
AudioDeviceID getRequestedDeviceIDFromUIDSubstring(char * requestedDeviceUID, ASDeviceType typeRequested) {
AudioObjectPropertyAddress propertyAddress = {kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster};
UInt32 propertySize;
AudioDeviceID dev_array[64];
int numberOfDevices = 0;
AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize);
AudioObjectGetPropertyData(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize, dev_array);
numberOfDevices = (propertySize / sizeof(AudioDeviceID));
for(int i = 0; i < numberOfDevices; ++i) {
switch(typeRequested) {
case kAudioTypeInput:
if (!isAnInputDevice(dev_array[i])) continue;
break;
case kAudioTypeOutput:
if (!isAnOutputDevice(dev_array[i])) continue;
break;
case kAudioTypeSystemOutput:
if (getDeviceType(dev_array[i]) != kAudioTypeOutput) continue;
break;
default: break;
}
char deviceUID[256];
CFStringRef deviceUIDRef = NULL;
propertyAddress.mSelector = kAudioDevicePropertyDeviceUID;
propertyAddress.mScope = kAudioObjectPropertyScopeGlobal;
propertyAddress.mElement = dev_array[i];
propertySize = sizeof(deviceUIDRef);
AudioObjectGetPropertyData(dev_array[i], &propertyAddress, 0, NULL, &propertySize, &deviceUIDRef);
CFStringGetCString(deviceUIDRef, deviceUID, sizeof(deviceUID), CFStringGetSystemEncoding());
if (strstr(deviceUID, requestedDeviceUID) != NULL) {
return dev_array[i];
}
}
return kAudioDeviceUnknown;
}
AudioDeviceID getCurrentlySelectedDeviceID(ASDeviceType typeRequested) {
AudioObjectPropertyAddress address;
address.mSelector = kAudioHardwarePropertyDefaultOutputDevice;
address.mScope = kAudioObjectPropertyScopeGlobal;
address.mElement = kAudioObjectPropertyElementMaster;
switch (typeRequested) {
case kAudioTypeInput:
address.mSelector = kAudioHardwarePropertyDefaultInputDevice;
break;
case kAudioTypeOutput:
address.mSelector = kAudioHardwarePropertyDefaultOutputDevice;
break;
case kAudioTypeSystemOutput:
address.mSelector = kAudioHardwarePropertyDefaultSystemOutputDevice;
break;
default:
break;
}
AudioDeviceID deviceID = kAudioDeviceUnknown;
UInt32 dataSize = sizeof(AudioDeviceID);
OSStatus status = AudioObjectGetPropertyData(kAudioObjectSystemObject, &address, 0, NULL, &dataSize, &deviceID);
if (status != noErr) {
// handle error
}
return deviceID;
}
void getDeviceName(AudioDeviceID deviceID, char* deviceName) {
AudioObjectPropertyAddress address = {
kAudioDevicePropertyDeviceNameCFString,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
CFStringRef cfDeviceName = NULL;
UInt32 dataSize = sizeof(CFStringRef);
OSStatus result = AudioObjectGetPropertyData(deviceID, &address, 0, NULL, &dataSize, &cfDeviceName);
if (result == noErr && cfDeviceName != NULL) {
CFStringGetCString(cfDeviceName, deviceName, 256, kCFStringEncodingUTF8);
CFRelease(cfDeviceName);
}
}
// returns kAudioTypeInput or kAudioTypeOutput
ASDeviceType getDeviceType(AudioDeviceID deviceID) {
AudioObjectPropertyAddress address = {
kAudioDevicePropertyStreams,
kAudioObjectPropertyScopeGlobal,
kAudioObjectPropertyElementMaster
};
UInt32 dataSize = 0;
OSStatus result = AudioObjectGetPropertyDataSize(deviceID, &address, 0, NULL, &dataSize);
if (result == noErr && dataSize > 0) {
return kAudioTypeOutput;
}
address.mElement = kAudioObjectPropertyElementMaster + 1;
result = AudioObjectGetPropertyDataSize(deviceID, &address, 0, NULL, &dataSize);
if (result == noErr && dataSize > 0) {
return kAudioTypeInput;
}
return kAudioTypeUnknown;
}
bool isAnOutputDevice(AudioDeviceID deviceID) {
AudioObjectPropertyAddress propertyAddress = {kAudioDevicePropertyStreams, kAudioDevicePropertyScopeOutput, kAudioObjectPropertyElementMaster};
UInt32 dataSize = 0;
OSStatus result = AudioObjectGetPropertyDataSize(deviceID, &propertyAddress, 0, NULL, &dataSize);
if (result == noErr && dataSize > 0) {
return true;
}
return false;
}
bool isAnInputDevice(AudioDeviceID deviceID) {
AudioObjectPropertyAddress propertyAddress = {kAudioDevicePropertyStreams, kAudioDevicePropertyScopeInput, kAudioObjectPropertyElementMaster};
UInt32 dataSize = 0;
OSStatus result = AudioObjectGetPropertyDataSize(deviceID, &propertyAddress, sizeof(AudioClassDescription), kAudioDevicePropertyScopeInput, &dataSize);
if (result == noErr && dataSize > 0) {
return kAudioTypeInput;
}
return false;
}
char *deviceTypeName(ASDeviceType device_type) {
switch(device_type) {
case kAudioTypeInput: return "input";
case kAudioTypeOutput: return "output";
case kAudioTypeSystemOutput: return "system";
case kAudioTypeAll: return "all";
default: return "unknown";
}
}
void showCurrentlySelectedDeviceID(ASDeviceType typeRequested, ASOutputType outputRequested) {
AudioDeviceID currentDeviceID = kAudioDeviceUnknown;
char currentDeviceName[256];
currentDeviceID = getCurrentlySelectedDeviceID(typeRequested);
getDeviceName(currentDeviceID, currentDeviceName);
switch(outputRequested) {
case kFormatHuman:
printf("%s\n",currentDeviceName);
break;
case kFormatCLI:
printf("%s,%s,%u,%s\n",currentDeviceName,deviceTypeName(typeRequested),currentDeviceID,getDeviceUID(currentDeviceID));
break;
case kFormatJSON:
printf("{\"name\": \"%s\", \"type\": \"%s\", \"id\": \"%u\", \"uid\": \"%s\"}\n",currentDeviceName,deviceTypeName(typeRequested),currentDeviceID,getDeviceUID(currentDeviceID));
break;
default:
break;
}
}
AudioDeviceID getRequestedDeviceID(char * requestedDeviceName, ASDeviceType typeRequested) {
AudioObjectPropertyAddress propertyAddress;
propertyAddress.mSelector = kAudioHardwarePropertyDevices;
propertyAddress.mScope = kAudioObjectPropertyScopeGlobal;
propertyAddress.mElement = kAudioObjectPropertyElementMaster;
UInt32 propertySize;
AudioDeviceID dev_array[64];
int numberOfDevices = 0;
char deviceName[256];
OSStatus status = AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize);
if (status != noErr) {
printf("Error getting size of property data: %d\n", status);
return kAudioDeviceUnknown;
}
status = AudioObjectGetPropertyData(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize, dev_array);
if (status != noErr) {
printf("Error getting property data: %d\n", status);
return kAudioDeviceUnknown;
}
numberOfDevices = (propertySize / sizeof(AudioDeviceID));
for(int i = 0; i < numberOfDevices; ++i) {
switch(typeRequested) {
case kAudioTypeInput:
if (!isAnInputDevice(dev_array[i])) continue;
break;
case kAudioTypeOutput:
if (!isAnOutputDevice(dev_array[i])) continue;
break;
case kAudioTypeSystemOutput:
if (getDeviceType(dev_array[i]) != kAudioTypeOutput) continue;
break;
default: break;
}
getDeviceName(dev_array[i], deviceName);
if (strcmp(requestedDeviceName, deviceName) == 0) {
return dev_array[i];
}
}
return kAudioDeviceUnknown;
}
AudioDeviceID getNextDeviceID(AudioDeviceID currentDeviceID, ASDeviceType typeRequested) {
AudioObjectPropertyAddress addr;
AudioDeviceID dev_array[64];
int numberOfDevices = 0;
AudioDeviceID first_dev = kAudioDeviceUnknown;
int found = -1;
addr.mSelector = kAudioHardwarePropertyDevices;
addr.mScope = kAudioObjectPropertyScopeGlobal;
addr.mElement = kAudioObjectPropertyElementMaster;
UInt32 propertySize = 0;
OSStatus err = AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &addr, 0, NULL, &propertySize);
if (err != noErr) {
return kAudioDeviceUnknown;
}
err = AudioObjectGetPropertyData(kAudioObjectSystemObject, &addr, 0, NULL, &propertySize, dev_array);
if (err != noErr) {
return kAudioDeviceUnknown;
}
numberOfDevices = (propertySize / sizeof(AudioDeviceID));
for(int i = 0; i < numberOfDevices; ++i) {
switch(typeRequested) {
case kAudioTypeInput:
if (!isAnInputDevice(dev_array[i])) continue;
break;
case kAudioTypeOutput:
if (!isAnOutputDevice(dev_array[i])) continue;
break;
case kAudioTypeSystemOutput:
if (getDeviceType(dev_array[i]) != kAudioTypeOutput) continue;
break;
default:
break;
}
if (first_dev == kAudioDeviceUnknown) {
first_dev = dev_array[i];
}
if (found >= 0) {
return dev_array[i];
}
if (dev_array[i] == currentDeviceID) {
found = i;
}
}
return first_dev;
}
int setDevice(AudioDeviceID newDeviceID, ASDeviceType typeRequested) {
return setOneDevice(newDeviceID, typeRequested);
}
int setOneDevice(AudioDeviceID newDeviceID, ASDeviceType typeRequested) {
AudioObjectPropertyAddress addr;
UInt32 propertySize = sizeof(UInt32);
OSStatus status;
addr.mScope = kAudioObjectPropertyScopeGlobal;
addr.mElement = kAudioObjectPropertyElementMaster;
switch(typeRequested) {
case kAudioTypeInput:
addr.mSelector = kAudioHardwarePropertyDefaultInputDevice;
break;
case kAudioTypeOutput:
addr.mSelector = kAudioHardwarePropertyDefaultOutputDevice;
break;
case kAudioTypeSystemOutput:
addr.mSelector = kAudioHardwarePropertyDefaultSystemOutputDevice;
break;
default:
addr.mSelector = kAudioHardwarePropertyDefaultOutputDevice;
break;
}
status = AudioObjectSetPropertyData(kAudioObjectSystemObject, &addr, 0, NULL, propertySize, &newDeviceID);
if(status != noErr) {
printf("Failed to set %s", deviceTypeName(typeRequested));
}
return 0;
}
int setAllDevicesByName(char * requestedDeviceName) {
int result;
bool anyStatusError = false;
AudioDeviceID newDeviceID;
// input
newDeviceID = getRequestedDeviceID(requestedDeviceName, kAudioTypeInput);
if (newDeviceID != nil) {
result = setOneDevice(newDeviceID, kAudioTypeInput);
if (result != 0) {
anyStatusError = true;
} else {
printf("%s audio device set to \"%s\"\n", deviceTypeName(kAudioTypeInput), requestedDeviceName);
}
}
// output
newDeviceID = getRequestedDeviceID(requestedDeviceName, kAudioTypeOutput);
if (newDeviceID != nil) {
result = setOneDevice(newDeviceID, kAudioTypeOutput);
if (result != 0) {
anyStatusError = true;
} else {
printf("%s audio device set to \"%s\"\n", deviceTypeName(kAudioTypeOutput), requestedDeviceName);
}
}
// system
newDeviceID = getRequestedDeviceID(requestedDeviceName, kAudioTypeSystemOutput);
if (newDeviceID != nil) {
result = setOneDevice(newDeviceID, kAudioTypeSystemOutput);
if (result != 0) {
anyStatusError = true;
} else {
printf("%s audio device set to \"%s\"\n", deviceTypeName(kAudioTypeSystemOutput), requestedDeviceName);
}
}
if (anyStatusError) {
return 1;
}
return 0;
}
int cycleNext(ASDeviceType typeRequested) {
int result;
bool anyStatusError = false;
if (typeRequested == kAudioTypeAll) {
result = cycleNextForOneDevice(kAudioTypeInput);
if (result != 0) {
anyStatusError = true;
}
result = cycleNextForOneDevice(kAudioTypeOutput);
if (result != 0) {
anyStatusError = true;
}
result = cycleNextForOneDevice(kAudioTypeSystemOutput);
if (result != 0) {
anyStatusError = true;
}
if (anyStatusError) {
return 1;
}
return 0;
} else {
return cycleNextForOneDevice(typeRequested);
}
}
int cycleNextForOneDevice(ASDeviceType typeRequested) {
char requestedDeviceName[256];
// get current device of requested type
AudioDeviceID chosenDeviceID = getCurrentlySelectedDeviceID(typeRequested);
if (chosenDeviceID == kAudioDeviceUnknown) {
printf("Could not find current audio device of type %s. Nothing was changed.\n", deviceTypeName(typeRequested));
return 1;
}
// find next device to current device
chosenDeviceID = getNextDeviceID(chosenDeviceID, typeRequested);
if (chosenDeviceID == kAudioDeviceUnknown) {
printf("Could not find next audio device of type %s. Nothing was changed.\n", deviceTypeName(typeRequested));
return 1;
}
// choose the requested audio device
int result = setDevice(chosenDeviceID, typeRequested);
if (result == 0) {
getDeviceName(chosenDeviceID, requestedDeviceName);
printf("%s audio device set to \"%s\"\n", deviceTypeName(typeRequested), requestedDeviceName);
}
return result;
}
OSStatus setMute(ASDeviceType typeRequested, ASMuteType muteRequested) {
AudioDeviceID currentDeviceID = kAudioDeviceUnknown;
char currentDeviceName[256];
currentDeviceID = getCurrentlySelectedDeviceID(typeRequested);
getDeviceName(currentDeviceID, currentDeviceName);
UInt32 scope = kAudioObjectPropertyScopeInput;
switch(typeRequested) {
case kAudioTypeInput:
scope = kAudioObjectPropertyScopeInput;
break;
case kAudioTypeOutput:
scope = kAudioObjectPropertyScopeOutput;
break;
case kAudioTypeSystemOutput:
scope = kAudioObjectPropertyScopeGlobal;
break;
}
AudioObjectPropertyAddress propertyAddress = {
.mSelector = kAudioDevicePropertyMute,
.mScope = scope,
.mElement = kAudioObjectPropertyElementMain,
};
UInt32 muted = (UInt32)muteRequested;
UInt32 propertySize = sizeof(muted);
OSStatus status;
if (muteRequested == kToggleMute) {
UInt32 dataSize;
status = AudioObjectGetPropertyDataSize(currentDeviceID, &propertyAddress, 0, NULL, &dataSize);
if (status != noErr) {
return status;
}
status = AudioObjectGetPropertyData(currentDeviceID, &propertyAddress, 0, NULL, &propertySize, &muted);
if (status != noErr) {
return status;
}
muted = !muted;
}
printf("Setting device %s to %s\n", currentDeviceName, muted ? "muted": "unmuted");
return AudioObjectSetPropertyData(currentDeviceID, &propertyAddress, 0, NULL, propertySize, &muted);
}
void showAllDevices(ASDeviceType typeRequested, ASOutputType outputRequested) {
UInt32 propertySize;
AudioObjectPropertyAddress propertyAddress;
AudioDeviceID dev_array[64];
int numberOfDevices = 0;
ASDeviceType device_type;
char deviceName[256];
propertyAddress.mSelector = kAudioHardwarePropertyDevices;
propertyAddress.mScope = kAudioObjectPropertyScopeGlobal;
propertyAddress.mElement = kAudioObjectPropertyElementMaster;
propertySize = 0;
AudioObjectGetPropertyDataSize(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize);
numberOfDevices = propertySize / sizeof(AudioDeviceID);
AudioObjectGetPropertyData(kAudioObjectSystemObject, &propertyAddress, 0, NULL, &propertySize, dev_array);
for (int i = 0; i < numberOfDevices; ++i) {
switch (typeRequested) {
case kAudioTypeInput:
if (!isAnInputDevice(dev_array[i]))
continue;
device_type = kAudioTypeInput;
break;
case kAudioTypeOutput:
if (!isAnOutputDevice(dev_array[i]))
continue;
device_type = kAudioTypeOutput;
break;
case kAudioTypeSystemOutput:
device_type = getDeviceType(dev_array[i]);
if (device_type != kAudioTypeOutput)
continue;
break;
default:
break;
}
getDeviceName(dev_array[i], deviceName);
switch (outputRequested) {
case kFormatHuman:
printf("%s\n", deviceName);
break;
case kFormatCLI:
printf("%s,%s,%u,%s\n", deviceName, deviceTypeName(device_type), dev_array[i], getDeviceUID(dev_array[i]));
break;
case kFormatJSON:
printf("{\"name\": \"%s\", \"type\": \"%s\", \"id\": \"%u\", \"uid\": \"%s\"}\n", deviceName, deviceTypeName(device_type), dev_array[i], getDeviceUID(dev_array[i]));
break;
default:
break;
}
}
}