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 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
|
/*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2020 - Raw Material Software Limited
JUCE is an open source library subject to commercial or open-source
licensing.
The code included in this file is provided under the terms of the ISC license
http://www.isc.org/downloads/software-support-policy/isc-license. Permission
To use, copy, modify, and/or distribute this software for any purpose with or
without fee is hereby granted provided that the above copyright notice and
this permission notice appear in all copies.
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
DISCLAIMED.
==============================================================================
*/
namespace juce
{
class iOSAudioIODevice;
constexpr const char* const iOSAudioDeviceName = "iOS Audio";
#ifndef JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES
#define JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES
#endif
constexpr std::initializer_list<double> iOSExplicitSampleRates { JUCE_IOS_AUDIO_EXPLICIT_SAMPLERATES };
//==============================================================================
struct AudioSessionHolder
{
AudioSessionHolder();
~AudioSessionHolder();
void handleStatusChange (bool enabled, const char* reason) const;
void handleRouteChange (AVAudioSessionRouteChangeReason reason);
Array<iOSAudioIODevice::Pimpl*> activeDevices;
Array<iOSAudioIODeviceType*> activeDeviceTypes;
id nativeSession;
};
static const char* getRoutingChangeReason (AVAudioSessionRouteChangeReason reason) noexcept
{
switch (reason)
{
case AVAudioSessionRouteChangeReasonNewDeviceAvailable: return "New device available";
case AVAudioSessionRouteChangeReasonOldDeviceUnavailable: return "Old device unavailable";
case AVAudioSessionRouteChangeReasonCategoryChange: return "Category change";
case AVAudioSessionRouteChangeReasonOverride: return "Override";
case AVAudioSessionRouteChangeReasonWakeFromSleep: return "Wake from sleep";
case AVAudioSessionRouteChangeReasonNoSuitableRouteForCategory: return "No suitable route for category";
case AVAudioSessionRouteChangeReasonRouteConfigurationChange: return "Route configuration change";
case AVAudioSessionRouteChangeReasonUnknown:
default: return "Unknown";
}
}
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wmissing-prototypes")
bool getNotificationValueForKey (NSNotification* notification, NSString* key, NSUInteger& value) noexcept
{
if (notification != nil)
{
if (NSDictionary* userInfo = [notification userInfo])
{
if (NSNumber* number = [userInfo objectForKey: key])
{
value = [number unsignedIntegerValue];
return true;
}
}
}
jassertfalse;
return false;
}
JUCE_END_IGNORE_WARNINGS_GCC_LIKE
} // namespace juce
//==============================================================================
@interface iOSAudioSessionNative : NSObject
{
@private
juce::AudioSessionHolder* audioSessionHolder;
};
- (id) init: (juce::AudioSessionHolder*) holder;
- (void) dealloc;
- (void) audioSessionChangedInterruptionType: (NSNotification*) notification;
- (void) handleMediaServicesReset;
- (void) handleMediaServicesLost;
- (void) handleRouteChange: (NSNotification*) notification;
@end
@implementation iOSAudioSessionNative
- (id) init: (juce::AudioSessionHolder*) holder
{
self = [super init];
if (self != nil)
{
audioSessionHolder = holder;
auto session = [AVAudioSession sharedInstance];
auto centre = [NSNotificationCenter defaultCenter];
[centre addObserver: self
selector: @selector (audioSessionChangedInterruptionType:)
name: AVAudioSessionInterruptionNotification
object: session];
[centre addObserver: self
selector: @selector (handleMediaServicesLost)
name: AVAudioSessionMediaServicesWereLostNotification
object: session];
[centre addObserver: self
selector: @selector (handleMediaServicesReset)
name: AVAudioSessionMediaServicesWereResetNotification
object: session];
[centre addObserver: self
selector: @selector (handleRouteChange:)
name: AVAudioSessionRouteChangeNotification
object: session];
}
else
{
jassertfalse;
}
return self;
}
- (void) dealloc
{
[[NSNotificationCenter defaultCenter] removeObserver: self];
[super dealloc];
}
- (void) audioSessionChangedInterruptionType: (NSNotification*) notification
{
NSUInteger value;
if (juce::getNotificationValueForKey (notification, AVAudioSessionInterruptionTypeKey, value))
{
switch ((AVAudioSessionInterruptionType) value)
{
case AVAudioSessionInterruptionTypeBegan:
audioSessionHolder->handleStatusChange (false, "AVAudioSessionInterruptionTypeBegan");
break;
case AVAudioSessionInterruptionTypeEnded:
audioSessionHolder->handleStatusChange (true, "AVAudioSessionInterruptionTypeEnded");
break;
// No default so the code doesn't compile if this enum is extended.
}
}
}
- (void) handleMediaServicesReset
{
audioSessionHolder->handleStatusChange (true, "AVAudioSessionMediaServicesWereResetNotification");
}
- (void) handleMediaServicesLost
{
audioSessionHolder->handleStatusChange (false, "AVAudioSessionMediaServicesWereLostNotification");
}
- (void) handleRouteChange: (NSNotification*) notification
{
NSUInteger value;
if (juce::getNotificationValueForKey (notification, AVAudioSessionRouteChangeReasonKey, value))
audioSessionHolder->handleRouteChange ((AVAudioSessionRouteChangeReason) value);
}
@end
//==============================================================================
#if JUCE_MODULE_AVAILABLE_juce_graphics
#include <juce_graphics/native/juce_mac_CoreGraphicsHelpers.h>
#endif
namespace juce {
#ifndef JUCE_IOS_AUDIO_LOGGING
#define JUCE_IOS_AUDIO_LOGGING 0
#endif
#if JUCE_IOS_AUDIO_LOGGING
#define JUCE_IOS_AUDIO_LOG(x) DBG(x)
#else
#define JUCE_IOS_AUDIO_LOG(x)
#endif
static void logNSError (NSError* e)
{
if (e != nil)
{
JUCE_IOS_AUDIO_LOG ("iOS Audio error: " << [e.localizedDescription UTF8String]);
jassertfalse;
}
}
#define JUCE_NSERROR_CHECK(X) { NSError* error = nil; X; logNSError (error); }
//==============================================================================
class iOSAudioIODeviceType : public AudioIODeviceType,
public AsyncUpdater
{
public:
iOSAudioIODeviceType();
~iOSAudioIODeviceType() override;
void scanForDevices() override;
StringArray getDeviceNames (bool) const override;
int getDefaultDeviceIndex (bool) const override;
int getIndexOfDevice (AudioIODevice*, bool) const override;
bool hasSeparateInputsAndOutputs() const override;
AudioIODevice* createDevice (const String&, const String&) override;
private:
void handleRouteChange (AVAudioSessionRouteChangeReason);
void handleAsyncUpdate() override;
friend struct AudioSessionHolder;
friend struct iOSAudioIODevice::Pimpl;
SharedResourcePointer<AudioSessionHolder> sessionHolder;
JUCE_DECLARE_WEAK_REFERENCEABLE (iOSAudioIODeviceType)
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (iOSAudioIODeviceType)
};
//==============================================================================
struct iOSAudioIODevice::Pimpl : public AudioPlayHead,
public AsyncUpdater
{
Pimpl (iOSAudioIODeviceType* ioDeviceType, iOSAudioIODevice& ioDevice)
: deviceType (ioDeviceType),
owner (ioDevice)
{
JUCE_IOS_AUDIO_LOG ("Creating iOS audio device");
// We need to activate the audio session here to obtain the available sample rates and buffer sizes,
// but if we don't set a category first then background audio will always be stopped. This category
// may be changed later.
setAudioSessionCategory (AVAudioSessionCategoryPlayAndRecord);
setAudioSessionActive (true);
updateHardwareInfo();
channelData.reconfigure ({}, {});
setAudioSessionActive (false);
sessionHolder->activeDevices.add (this);
}
~Pimpl() override
{
sessionHolder->activeDevices.removeFirstMatchingValue (this);
close();
}
static void setAudioSessionCategory (NSString* category)
{
NSUInteger options = 0;
#if ! JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS
options |= AVAudioSessionCategoryOptionMixWithOthers; // Alternatively AVAudioSessionCategoryOptionDuckOthers
#endif
if (category == AVAudioSessionCategoryPlayAndRecord)
{
options |= (AVAudioSessionCategoryOptionDefaultToSpeaker
| AVAudioSessionCategoryOptionAllowBluetooth);
#if defined (__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
if (@available (iOS 10.0, *))
options |= AVAudioSessionCategoryOptionAllowBluetoothA2DP;
#endif
}
JUCE_NSERROR_CHECK ([[AVAudioSession sharedInstance] setCategory: category
withOptions: options
error: &error]);
}
static void setAudioSessionActive (bool enabled)
{
JUCE_NSERROR_CHECK ([[AVAudioSession sharedInstance] setActive: enabled
error: &error]);
}
int getBufferSize (const double currentSampleRate)
{
return roundToInt (currentSampleRate * [AVAudioSession sharedInstance].IOBufferDuration);
}
int tryBufferSize (const double currentSampleRate, const int newBufferSize)
{
NSTimeInterval bufferDuration = currentSampleRate > 0 ? (NSTimeInterval) ((newBufferSize + 1) / currentSampleRate) : 0.0;
auto session = [AVAudioSession sharedInstance];
JUCE_NSERROR_CHECK ([session setPreferredIOBufferDuration: bufferDuration
error: &error]);
return getBufferSize (currentSampleRate);
}
void updateAvailableBufferSizes()
{
availableBufferSizes.clear();
auto newBufferSize = tryBufferSize (sampleRate, 64);
jassert (newBufferSize > 0);
const auto longestBufferSize = tryBufferSize (sampleRate, 4096);
while (newBufferSize <= longestBufferSize)
{
availableBufferSizes.add (newBufferSize);
newBufferSize *= 2;
}
// Sometimes the largest supported buffer size is not a power of 2
availableBufferSizes.addIfNotAlreadyThere (longestBufferSize);
bufferSize = tryBufferSize (sampleRate, bufferSize);
#if JUCE_IOS_AUDIO_LOGGING
{
String info ("Available buffer sizes:");
for (auto size : availableBufferSizes)
info << " " << size;
JUCE_IOS_AUDIO_LOG (info);
}
#endif
JUCE_IOS_AUDIO_LOG ("Buffer size after detecting available buffer sizes: " << bufferSize);
}
double trySampleRate (double rate)
{
auto session = [AVAudioSession sharedInstance];
JUCE_NSERROR_CHECK ([session setPreferredSampleRate: rate
error: &error]);
return session.sampleRate;
}
// Important: the supported audio sample rates change on the iPhone 6S
// depending on whether the headphones are plugged in or not!
void updateAvailableSampleRates()
{
if (iOSExplicitSampleRates.size() != 0)
{
availableSampleRates = Array<double> (iOSExplicitSampleRates);
return;
}
availableSampleRates.clear();
AudioUnitRemovePropertyListenerWithUserData (audioUnit,
kAudioUnitProperty_StreamFormat,
dispatchAudioUnitPropertyChange,
this);
const double lowestRate = trySampleRate (4000);
availableSampleRates.add (lowestRate);
const double highestRate = trySampleRate (192000);
JUCE_IOS_AUDIO_LOG ("Lowest supported sample rate: " << lowestRate);
JUCE_IOS_AUDIO_LOG ("Highest supported sample rate: " << highestRate);
for (double rate = lowestRate + 1000; rate < highestRate; rate += 1000)
{
const double supportedRate = trySampleRate (rate);
JUCE_IOS_AUDIO_LOG ("Trying a sample rate of " << rate << ", got " << supportedRate);
availableSampleRates.addIfNotAlreadyThere (supportedRate);
rate = jmax (rate, supportedRate);
}
availableSampleRates.addIfNotAlreadyThere (highestRate);
// Restore the original values.
sampleRate = trySampleRate (sampleRate);
bufferSize = tryBufferSize (sampleRate, bufferSize);
AudioUnitAddPropertyListener (audioUnit,
kAudioUnitProperty_StreamFormat,
dispatchAudioUnitPropertyChange,
this);
// Check the current stream format in case things have changed whilst we
// were going through the sample rates
handleStreamFormatChange();
#if JUCE_IOS_AUDIO_LOGGING
{
String info ("Available sample rates:");
for (auto rate : availableSampleRates)
info << " " << rate;
JUCE_IOS_AUDIO_LOG (info);
}
#endif
JUCE_IOS_AUDIO_LOG ("Sample rate after detecting available sample rates: " << sampleRate);
}
void updateHardwareInfo (bool forceUpdate = false)
{
if (! forceUpdate && ! hardwareInfoNeedsUpdating.compareAndSetBool (false, true))
return;
JUCE_IOS_AUDIO_LOG ("Updating hardware info");
updateAvailableSampleRates();
updateAvailableBufferSizes();
if (deviceType != nullptr)
deviceType->callDeviceChangeListeners();
}
void setTargetSampleRateAndBufferSize()
{
JUCE_IOS_AUDIO_LOG ("Setting target sample rate: " << targetSampleRate);
sampleRate = trySampleRate (targetSampleRate);
JUCE_IOS_AUDIO_LOG ("Actual sample rate: " << sampleRate);
JUCE_IOS_AUDIO_LOG ("Setting target buffer size: " << targetBufferSize);
bufferSize = tryBufferSize (sampleRate, targetBufferSize);
JUCE_IOS_AUDIO_LOG ("Actual buffer size: " << bufferSize);
}
String open (const BigInteger& inputChannelsWanted,
const BigInteger& outputChannelsWanted,
double sampleRateWanted, int bufferSizeWanted)
{
close();
firstHostTime = true;
lastNumFrames = 0;
xrun = 0;
lastError.clear();
requestedInputChannels = inputChannelsWanted;
requestedOutputChannels = outputChannelsWanted;
targetSampleRate = sampleRateWanted;
targetBufferSize = bufferSizeWanted > 0 ? bufferSizeWanted : defaultBufferSize;
JUCE_IOS_AUDIO_LOG ("Opening audio device:"
<< " inputChannelsWanted: " << requestedInputChannels .toString (2)
<< ", outputChannelsWanted: " << requestedOutputChannels.toString (2)
<< ", targetSampleRate: " << targetSampleRate
<< ", targetBufferSize: " << targetBufferSize);
setAudioSessionActive (true);
setAudioSessionCategory (requestedInputChannels > 0 ? AVAudioSessionCategoryPlayAndRecord
: AVAudioSessionCategoryPlayback);
channelData.reconfigure (requestedInputChannels, requestedOutputChannels);
updateHardwareInfo (true);
setTargetSampleRateAndBufferSize();
fixAudioRouteIfSetToReceiver();
isRunning = true;
if (! createAudioUnit())
{
lastError = "Couldn't open the device";
return lastError;
}
const ScopedLock sl (callbackLock);
AudioOutputUnitStart (audioUnit);
if (callback != nullptr)
callback->audioDeviceAboutToStart (&owner);
return lastError;
}
void close()
{
stop();
if (isRunning)
{
isRunning = false;
if (audioUnit != nullptr)
{
AudioOutputUnitStart (audioUnit);
AudioComponentInstanceDispose (audioUnit);
audioUnit = nullptr;
}
setAudioSessionActive (false);
}
}
void start (AudioIODeviceCallback* newCallback)
{
if (isRunning && callback != newCallback)
{
if (newCallback != nullptr)
newCallback->audioDeviceAboutToStart (&owner);
const ScopedLock sl (callbackLock);
callback = newCallback;
}
}
void stop()
{
if (isRunning)
{
AudioIODeviceCallback* lastCallback;
{
const ScopedLock sl (callbackLock);
lastCallback = callback;
callback = nullptr;
}
if (lastCallback != nullptr)
lastCallback->audioDeviceStopped();
}
}
bool setAudioPreprocessingEnabled (bool enable)
{
auto session = [AVAudioSession sharedInstance];
NSString* mode = (enable ? AVAudioSessionModeDefault
: AVAudioSessionModeMeasurement);
JUCE_NSERROR_CHECK ([session setMode: mode
error: &error]);
return session.mode == mode;
}
//==============================================================================
bool canControlTransport() override { return interAppAudioConnected; }
void transportPlay (bool shouldSartPlaying) override
{
if (! canControlTransport())
return;
HostCallbackInfo callbackInfo;
fillHostCallbackInfo (callbackInfo);
Boolean hostIsPlaying = NO;
OSStatus err = callbackInfo.transportStateProc2 (callbackInfo.hostUserData,
&hostIsPlaying,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr);
ignoreUnused (err);
jassert (err == noErr);
if (hostIsPlaying != shouldSartPlaying)
handleAudioTransportEvent (kAudioUnitRemoteControlEvent_TogglePlayPause);
}
void transportRecord (bool shouldStartRecording) override
{
if (! canControlTransport())
return;
HostCallbackInfo callbackInfo;
fillHostCallbackInfo (callbackInfo);
Boolean hostIsRecording = NO;
OSStatus err = callbackInfo.transportStateProc2 (callbackInfo.hostUserData,
nullptr,
&hostIsRecording,
nullptr,
nullptr,
nullptr,
nullptr,
nullptr);
ignoreUnused (err);
jassert (err == noErr);
if (hostIsRecording != shouldStartRecording)
handleAudioTransportEvent (kAudioUnitRemoteControlEvent_ToggleRecord);
}
void transportRewind() override
{
if (canControlTransport())
handleAudioTransportEvent (kAudioUnitRemoteControlEvent_Rewind);
}
bool getCurrentPosition (CurrentPositionInfo& result) override
{
if (! canControlTransport())
return false;
zerostruct (result);
HostCallbackInfo callbackInfo;
fillHostCallbackInfo (callbackInfo);
if (callbackInfo.hostUserData == nullptr)
return false;
Boolean hostIsPlaying = NO;
Boolean hostIsRecording = NO;
Float64 hostCurrentSampleInTimeLine = 0;
Boolean hostIsCycling = NO;
Float64 hostCycleStartBeat = 0;
Float64 hostCycleEndBeat = 0;
OSStatus err = callbackInfo.transportStateProc2 (callbackInfo.hostUserData,
&hostIsPlaying,
&hostIsRecording,
nullptr,
&hostCurrentSampleInTimeLine,
&hostIsCycling,
&hostCycleStartBeat,
&hostCycleEndBeat);
if (err == kAUGraphErr_CannotDoInCurrentContext)
return false;
jassert (err == noErr);
result.timeInSamples = (int64) hostCurrentSampleInTimeLine;
result.isPlaying = hostIsPlaying;
result.isRecording = hostIsRecording;
result.isLooping = hostIsCycling;
result.ppqLoopStart = hostCycleStartBeat;
result.ppqLoopEnd = hostCycleEndBeat;
result.timeInSeconds = result.timeInSamples / sampleRate;
Float64 hostBeat = 0;
Float64 hostTempo = 0;
err = callbackInfo.beatAndTempoProc (callbackInfo.hostUserData,
&hostBeat,
&hostTempo);
jassert (err == noErr);
result.ppqPosition = hostBeat;
result.bpm = hostTempo;
Float32 hostTimeSigNumerator = 0;
UInt32 hostTimeSigDenominator = 0;
Float64 hostCurrentMeasureDownBeat = 0;
err = callbackInfo.musicalTimeLocationProc (callbackInfo.hostUserData,
nullptr,
&hostTimeSigNumerator,
&hostTimeSigDenominator,
&hostCurrentMeasureDownBeat);
jassert (err == noErr);
result.ppqPositionOfLastBarStart = hostCurrentMeasureDownBeat;
result.timeSigNumerator = (int) hostTimeSigNumerator;
result.timeSigDenominator = (int) hostTimeSigDenominator;
result.frameRate = AudioPlayHead::fpsUnknown;
return true;
}
//==============================================================================
#if JUCE_MODULE_AVAILABLE_juce_graphics
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wdeprecated-declarations")
Image getIcon (int size)
{
if (interAppAudioConnected)
{
UIImage* hostUIImage = AudioOutputUnitGetHostIcon (audioUnit, size);
if (hostUIImage != nullptr)
return juce_createImageFromUIImage (hostUIImage);
}
return Image();
}
JUCE_END_IGNORE_WARNINGS_GCC_LIKE
#endif
void switchApplication()
{
if (! interAppAudioConnected)
return;
CFURLRef hostUrl;
UInt32 dataSize = sizeof (hostUrl);
OSStatus err = AudioUnitGetProperty(audioUnit,
kAudioUnitProperty_PeerURL,
kAudioUnitScope_Global,
0,
&hostUrl,
&dataSize);
if (err == noErr)
{
#if defined (__IPHONE_10_0) && __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
if (@available (iOS 10.0, *))
{
[[UIApplication sharedApplication] openURL: (NSURL*) hostUrl
options: @{}
completionHandler: nil];
return;
}
#endif
JUCE_BEGIN_IGNORE_WARNINGS_GCC_LIKE ("-Wdeprecated-declarations")
[[UIApplication sharedApplication] openURL: (NSURL*) hostUrl];
JUCE_END_IGNORE_WARNINGS_GCC_LIKE
}
}
//==============================================================================
void invokeAudioDeviceErrorCallback (const String& reason)
{
const ScopedLock sl (callbackLock);
if (callback != nullptr)
callback->audioDeviceError (reason);
}
void handleStatusChange (bool enabled, const char* reason)
{
const ScopedLock myScopedLock (callbackLock);
JUCE_IOS_AUDIO_LOG ("handleStatusChange: enabled: " << (int) enabled << ", reason: " << reason);
isRunning = enabled;
setAudioSessionActive (enabled);
if (enabled)
AudioOutputUnitStart (audioUnit);
else
AudioOutputUnitStop (audioUnit);
if (! enabled)
invokeAudioDeviceErrorCallback (reason);
}
void handleRouteChange (AVAudioSessionRouteChangeReason reason)
{
const ScopedLock myScopedLock (callbackLock);
const String reasonString (getRoutingChangeReason (reason));
JUCE_IOS_AUDIO_LOG ("handleRouteChange: " << reasonString);
if (isRunning)
invokeAudioDeviceErrorCallback (reasonString);
switch (reason)
{
case AVAudioSessionRouteChangeReasonCategoryChange:
case AVAudioSessionRouteChangeReasonOverride:
case AVAudioSessionRouteChangeReasonRouteConfigurationChange:
break;
case AVAudioSessionRouteChangeReasonUnknown:
case AVAudioSessionRouteChangeReasonNewDeviceAvailable:
case AVAudioSessionRouteChangeReasonOldDeviceUnavailable:
case AVAudioSessionRouteChangeReasonWakeFromSleep:
case AVAudioSessionRouteChangeReasonNoSuitableRouteForCategory:
{
hardwareInfoNeedsUpdating = true;
triggerAsyncUpdate();
break;
}
// No default so the code doesn't compile if this enum is extended.
}
}
void handleAudioUnitPropertyChange (AudioUnit,
AudioUnitPropertyID propertyID,
AudioUnitScope scope,
AudioUnitElement element)
{
ignoreUnused (scope);
ignoreUnused (element);
JUCE_IOS_AUDIO_LOG ("handleAudioUnitPropertyChange: propertyID: " << String (propertyID)
<< " scope: " << String (scope)
<< " element: " << String (element));
switch (propertyID)
{
case kAudioUnitProperty_IsInterAppConnected:
handleInterAppAudioConnectionChange();
return;
case kAudioUnitProperty_StreamFormat:
handleStreamFormatChange();
return;
default:
jassertfalse;
}
}
void handleInterAppAudioConnectionChange()
{
UInt32 connected;
UInt32 dataSize = sizeof (connected);
OSStatus err = AudioUnitGetProperty (audioUnit, kAudioUnitProperty_IsInterAppConnected,
kAudioUnitScope_Global, 0, &connected, &dataSize);
ignoreUnused (err);
jassert (err == noErr);
JUCE_IOS_AUDIO_LOG ("handleInterAppAudioConnectionChange: " << (connected ? "connected"
: "disconnected"));
if (connected != interAppAudioConnected)
{
const ScopedLock myScopedLock (callbackLock);
interAppAudioConnected = connected;
UIApplicationState appstate = [UIApplication sharedApplication].applicationState;
bool inForeground = (appstate != UIApplicationStateBackground);
if (interAppAudioConnected || inForeground)
{
setAudioSessionActive (true);
AudioOutputUnitStart (audioUnit);
if (callback != nullptr)
callback->audioDeviceAboutToStart (&owner);
}
else if (! inForeground)
{
AudioOutputUnitStop (audioUnit);
setAudioSessionActive (false);
if (callback != nullptr)
callback->audioDeviceStopped();
}
}
}
//==============================================================================
OSStatus process (AudioUnitRenderActionFlags* flags, const AudioTimeStamp* time,
const UInt32 numFrames, AudioBufferList* data)
{
OSStatus err = noErr;
recordXruns (time, numFrames);
const bool useInput = channelData.areInputChannelsAvailable();
if (useInput)
err = AudioUnitRender (audioUnit, flags, time, 1, numFrames, data);
const auto channelDataSize = sizeof (float) * numFrames;
const ScopedTryLock stl (callbackLock);
if (stl.isLocked() && callback != nullptr)
{
if ((int) numFrames > channelData.getFloatBufferSize())
channelData.setFloatBufferSize ((int) numFrames);
float** const inputData = channelData.audioData.getArrayOfWritePointers();
float** const outputData = inputData + channelData.inputs->numActiveChannels;
if (useInput)
{
for (int c = 0; c < channelData.inputs->numActiveChannels; ++c)
{
auto channelIndex = channelData.inputs->activeChannelIndices[c];
memcpy (inputData[c], (float*) data->mBuffers[channelIndex].mData, channelDataSize);
}
}
else
{
for (int c = 0; c < channelData.inputs->numActiveChannels; ++c)
zeromem (inputData[c], channelDataSize);
}
callback->audioDeviceIOCallback ((const float**) inputData, channelData.inputs ->numActiveChannels,
outputData, channelData.outputs->numActiveChannels,
(int) numFrames);
for (int c = 0; c < channelData.outputs->numActiveChannels; ++c)
{
auto channelIndex = channelData.outputs->activeChannelIndices[c];
memcpy (data->mBuffers[channelIndex].mData, outputData[c], channelDataSize);
}
for (auto c : channelData.outputs->inactiveChannelIndices)
zeromem (data->mBuffers[c].mData, channelDataSize);
}
else
{
for (uint32 c = 0; c < data->mNumberBuffers; ++c)
zeromem (data->mBuffers[c].mData, channelDataSize);
}
return err;
}
void recordXruns (const AudioTimeStamp* time, UInt32 numFrames)
{
if (time != nullptr && (time->mFlags & kAudioTimeStampSampleTimeValid) != 0)
{
if (! firstHostTime)
{
if ((time->mSampleTime - lastSampleTime) != lastNumFrames)
xrun++;
}
else
firstHostTime = false;
lastSampleTime = time->mSampleTime;
}
else
firstHostTime = true;
lastNumFrames = numFrames;
}
//==============================================================================
static OSStatus processStatic (void* client, AudioUnitRenderActionFlags* flags, const AudioTimeStamp* time,
UInt32 /*busNumber*/, UInt32 numFrames, AudioBufferList* data)
{
return static_cast<Pimpl*> (client)->process (flags, time, numFrames, data);
}
//==============================================================================
bool createAudioUnit()
{
JUCE_IOS_AUDIO_LOG ("Creating the audio unit");
if (audioUnit != nullptr)
{
AudioComponentInstanceDispose (audioUnit);
audioUnit = nullptr;
}
AudioComponentDescription desc;
desc.componentType = kAudioUnitType_Output;
desc.componentSubType = kAudioUnitSubType_RemoteIO;
desc.componentManufacturer = kAudioUnitManufacturer_Apple;
desc.componentFlags = 0;
desc.componentFlagsMask = 0;
AudioComponent comp = AudioComponentFindNext (nullptr, &desc);
AudioComponentInstanceNew (comp, &audioUnit);
if (audioUnit == nullptr)
return false;
#if JucePlugin_Enable_IAA
AudioComponentDescription appDesc;
appDesc.componentType = JucePlugin_IAAType;
appDesc.componentSubType = JucePlugin_IAASubType;
appDesc.componentManufacturer = JucePlugin_ManufacturerCode;
appDesc.componentFlags = 0;
appDesc.componentFlagsMask = 0;
OSStatus err = AudioOutputUnitPublish (&appDesc,
CFSTR(JucePlugin_IAAName),
JucePlugin_VersionCode,
audioUnit);
// This assert will be hit if the Inter-App Audio entitlement has not
// been enabled, or the description being published with
// AudioOutputUnitPublish is different from any in the AudioComponents
// array in this application's .plist file.
jassert (err == noErr);
err = AudioUnitAddPropertyListener (audioUnit,
kAudioUnitProperty_IsInterAppConnected,
dispatchAudioUnitPropertyChange,
this);
jassert (err == noErr);
AudioOutputUnitMIDICallbacks midiCallbacks;
midiCallbacks.userData = this;
midiCallbacks.MIDIEventProc = midiEventCallback;
midiCallbacks.MIDISysExProc = midiSysExCallback;
err = AudioUnitSetProperty (audioUnit,
kAudioOutputUnitProperty_MIDICallbacks,
kAudioUnitScope_Global,
0,
&midiCallbacks,
sizeof (midiCallbacks));
jassert (err == noErr);
#endif
if (channelData.areInputChannelsAvailable())
{
const UInt32 one = 1;
AudioUnitSetProperty (audioUnit, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input, 1, &one, sizeof (one));
}
{
AURenderCallbackStruct inputProc;
inputProc.inputProc = processStatic;
inputProc.inputProcRefCon = this;
AudioUnitSetProperty (audioUnit, kAudioUnitProperty_SetRenderCallback, kAudioUnitScope_Input, 0, &inputProc, sizeof (inputProc));
}
{
AudioStreamBasicDescription format;
zerostruct (format);
format.mSampleRate = sampleRate;
format.mFormatID = kAudioFormatLinearPCM;
format.mFormatFlags = kAudioFormatFlagIsFloat | kAudioFormatFlagIsNonInterleaved | kAudioFormatFlagsNativeEndian | kLinearPCMFormatFlagIsPacked;
format.mBitsPerChannel = 8 * sizeof (float);
format.mFramesPerPacket = 1;
format.mChannelsPerFrame = (UInt32) jmax (channelData.inputs->numHardwareChannels, channelData.outputs->numHardwareChannels);
format.mBytesPerFrame = format.mBytesPerPacket = sizeof (float);
AudioUnitSetProperty (audioUnit, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Input, 0, &format, sizeof (format));
AudioUnitSetProperty (audioUnit, kAudioUnitProperty_StreamFormat, kAudioUnitScope_Output, 1, &format, sizeof (format));
}
AudioUnitInitialize (audioUnit);
{
// Querying the kAudioUnitProperty_MaximumFramesPerSlice property after calling AudioUnitInitialize
// seems to be more reliable than calling it before.
UInt32 framesPerSlice, dataSize = sizeof (framesPerSlice);
if (AudioUnitGetProperty (audioUnit, kAudioUnitProperty_MaximumFramesPerSlice,
kAudioUnitScope_Global, 0, &framesPerSlice, &dataSize) == noErr
&& dataSize == sizeof (framesPerSlice)
&& static_cast<int> (framesPerSlice) != bufferSize)
{
JUCE_IOS_AUDIO_LOG ("Internal buffer size: " << String (framesPerSlice));
channelData.setFloatBufferSize (static_cast<int> (framesPerSlice));
}
}
AudioUnitAddPropertyListener (audioUnit, kAudioUnitProperty_StreamFormat, dispatchAudioUnitPropertyChange, this);
return true;
}
void fillHostCallbackInfo (HostCallbackInfo& callbackInfo)
{
zerostruct (callbackInfo);
UInt32 dataSize = sizeof (HostCallbackInfo);
OSStatus err = AudioUnitGetProperty (audioUnit,
kAudioUnitProperty_HostCallbacks,
kAudioUnitScope_Global,
0,
&callbackInfo,
&dataSize);
ignoreUnused (err);
jassert (err == noErr);
}
void handleAudioTransportEvent (AudioUnitRemoteControlEvent event)
{
OSStatus err = AudioUnitSetProperty (audioUnit, kAudioOutputUnitProperty_RemoteControlToHost,
kAudioUnitScope_Global, 0, &event, sizeof (event));
ignoreUnused (err);
jassert (err == noErr);
}
// If the routing is set to go through the receiver (i.e. the speaker, but quiet), this re-routes it
// to make it loud. Needed because by default when using an input + output, the output is kept quiet.
static void fixAudioRouteIfSetToReceiver()
{
auto session = [AVAudioSession sharedInstance];
auto route = session.currentRoute;
for (AVAudioSessionPortDescription* port in route.outputs)
{
if ([port.portName isEqualToString: @"Receiver"])
{
JUCE_NSERROR_CHECK ([session overrideOutputAudioPort: AVAudioSessionPortOverrideSpeaker
error: &error]);
setAudioSessionActive (true);
}
}
}
void restart()
{
const ScopedLock sl (callbackLock);
updateHardwareInfo();
setTargetSampleRateAndBufferSize();
if (isRunning)
{
if (audioUnit != nullptr)
{
AudioComponentInstanceDispose (audioUnit);
audioUnit = nullptr;
if (callback != nullptr)
callback->audioDeviceStopped();
}
channelData.reconfigure (requestedInputChannels, requestedOutputChannels);
createAudioUnit();
if (audioUnit != nullptr)
{
isRunning = true;
if (callback != nullptr)
callback->audioDeviceAboutToStart (&owner);
AudioOutputUnitStart (audioUnit);
}
}
}
void handleAsyncUpdate() override
{
restart();
}
void handleStreamFormatChange()
{
AudioStreamBasicDescription desc;
zerostruct (desc);
UInt32 dataSize = sizeof (desc);
AudioUnitGetProperty (audioUnit,
kAudioUnitProperty_StreamFormat,
kAudioUnitScope_Output,
0,
&desc,
&dataSize);
if (desc.mSampleRate != 0 && desc.mSampleRate != sampleRate)
{
JUCE_IOS_AUDIO_LOG ("Stream format has changed: Sample rate " << desc.mSampleRate);
triggerAsyncUpdate();
}
}
static void dispatchAudioUnitPropertyChange (void* data, AudioUnit unit, AudioUnitPropertyID propertyID,
AudioUnitScope scope, AudioUnitElement element)
{
static_cast<Pimpl*> (data)->handleAudioUnitPropertyChange (unit, propertyID, scope, element);
}
static double getTimestampForMIDI()
{
return Time::getMillisecondCounter() / 1000.0;
}
static void midiEventCallback (void *client, UInt32 status, UInt32 data1, UInt32 data2, UInt32)
{
return static_cast<Pimpl*> (client)->handleMidiMessage (MidiMessage ((int) status,
(int) data1,
(int) data2,
getTimestampForMIDI()));
}
static void midiSysExCallback (void *client, const UInt8 *data, UInt32 length)
{
return static_cast<Pimpl*> (client)->handleMidiMessage (MidiMessage (data, (int) length, getTimestampForMIDI()));
}
void handleMidiMessage (MidiMessage msg)
{
if (messageCollector != nullptr)
messageCollector->addMessageToQueue (msg);
}
struct IOChannelData
{
class IOChannelConfig
{
public:
IOChannelConfig (const bool isInput, const BigInteger requiredChannels)
: hardwareChannelNames (getHardwareChannelNames (isInput)),
numHardwareChannels (hardwareChannelNames.size()),
areChannelsAccessible ((! isInput) || [AVAudioSession sharedInstance].isInputAvailable),
activeChannels (limitRequiredChannelsToHardware (numHardwareChannels, requiredChannels)),
numActiveChannels (activeChannels.countNumberOfSetBits()),
activeChannelIndices (getActiveChannelIndices (activeChannels)),
inactiveChannelIndices (getInactiveChannelIndices (activeChannelIndices, numHardwareChannels))
{
#if JUCE_IOS_AUDIO_LOGGING
{
String info;
info << "Number of hardware channels: " << numHardwareChannels
<< ", Hardware channel names:";
for (auto& name : hardwareChannelNames)
info << " \"" << name << "\"";
info << ", Are channels available: " << (areChannelsAccessible ? "yes" : "no")
<< ", Active channel indices:";
for (auto i : activeChannelIndices)
info << " " << i;
info << ", Inactive channel indices:";
for (auto i : inactiveChannelIndices)
info << " " << i;
JUCE_IOS_AUDIO_LOG ((isInput ? "Input" : "Output") << " channel configuration: {" << info << "}");
}
#endif
}
const StringArray hardwareChannelNames;
const int numHardwareChannels;
const bool areChannelsAccessible;
const BigInteger activeChannels;
const int numActiveChannels;
const Array<int> activeChannelIndices, inactiveChannelIndices;
private:
static StringArray getHardwareChannelNames (const bool isInput)
{
StringArray result;
auto route = [AVAudioSession sharedInstance].currentRoute;
for (AVAudioSessionPortDescription* port in (isInput ? route.inputs : route.outputs))
{
for (AVAudioSessionChannelDescription* desc in port.channels)
result.add (nsStringToJuce (desc.channelName));
}
// A fallback for the iOS simulator and older iOS versions
if (result.isEmpty())
return { "Left", "Right" };
return result;
}
static BigInteger limitRequiredChannelsToHardware (const int numHardwareChannelsAvailable,
BigInteger requiredChannels)
{
requiredChannels.setRange (numHardwareChannelsAvailable,
requiredChannels.getHighestBit() + 1,
false);
return requiredChannels;
}
static Array<int> getActiveChannelIndices (const BigInteger activeChannelsToIndex)
{
Array<int> result;
auto index = activeChannelsToIndex.findNextSetBit (0);
while (index != -1)
{
result.add (index);
index = activeChannelsToIndex.findNextSetBit (++index);
}
return result;
}
static Array<int> getInactiveChannelIndices (const Array<int>& activeIndices, int numChannels)
{
Array<int> result;
auto nextActiveChannel = activeIndices.begin();
for (int i = 0; i < numChannels; ++i)
if (nextActiveChannel != activeIndices.end() && i == *nextActiveChannel)
++nextActiveChannel;
else
result.add (i);
return result;
}
};
void reconfigure (const BigInteger requiredInputChannels,
const BigInteger requiredOutputChannels)
{
inputs .reset (new IOChannelConfig (true, requiredInputChannels));
outputs.reset (new IOChannelConfig (false, requiredOutputChannels));
audioData.setSize (inputs->numActiveChannels + outputs->numActiveChannels,
audioData.getNumSamples());
}
int getFloatBufferSize() const
{
return audioData.getNumSamples();
}
void setFloatBufferSize (const int newSize)
{
audioData.setSize (audioData.getNumChannels(), newSize);
}
bool areInputChannelsAvailable() const
{
return inputs->areChannelsAccessible && inputs->numActiveChannels > 0;
}
std::unique_ptr<IOChannelConfig> inputs;
std::unique_ptr<IOChannelConfig> outputs;
AudioBuffer<float> audioData { 0, 0 };
};
IOChannelData channelData;
BigInteger requestedInputChannels, requestedOutputChannels;
bool isRunning = false;
AudioIODeviceCallback* callback = nullptr;
String lastError;
#if TARGET_IPHONE_SIMULATOR
static constexpr int defaultBufferSize = 512;
#else
static constexpr int defaultBufferSize = 256;
#endif
int targetBufferSize = defaultBufferSize, bufferSize = targetBufferSize;
double targetSampleRate = 44100.0, sampleRate = targetSampleRate;
Array<double> availableSampleRates;
Array<int> availableBufferSizes;
bool interAppAudioConnected = false;
MidiMessageCollector* messageCollector = nullptr;
WeakReference<iOSAudioIODeviceType> deviceType;
iOSAudioIODevice& owner;
CriticalSection callbackLock;
Atomic<bool> hardwareInfoNeedsUpdating { true };
AudioUnit audioUnit {};
SharedResourcePointer<AudioSessionHolder> sessionHolder;
bool firstHostTime;
Float64 lastSampleTime;
unsigned int lastNumFrames;
int xrun;
JUCE_DECLARE_NON_COPYABLE (Pimpl)
};
//==============================================================================
iOSAudioIODevice::iOSAudioIODevice (iOSAudioIODeviceType* ioDeviceType, const String&, const String&)
: AudioIODevice (iOSAudioDeviceName, iOSAudioDeviceName),
pimpl (new Pimpl (ioDeviceType, *this))
{
}
//==============================================================================
String iOSAudioIODevice::open (const BigInteger& inChans, const BigInteger& outChans,
double requestedSampleRate, int requestedBufferSize)
{
return pimpl->open (inChans, outChans, requestedSampleRate, requestedBufferSize);
}
void iOSAudioIODevice::close() { pimpl->close(); }
void iOSAudioIODevice::start (AudioIODeviceCallback* callbackToUse) { pimpl->start (callbackToUse); }
void iOSAudioIODevice::stop() { pimpl->stop(); }
Array<double> iOSAudioIODevice::getAvailableSampleRates() { return pimpl->availableSampleRates; }
Array<int> iOSAudioIODevice::getAvailableBufferSizes() { return pimpl->availableBufferSizes; }
bool iOSAudioIODevice::setAudioPreprocessingEnabled (bool enabled) { return pimpl->setAudioPreprocessingEnabled (enabled); }
bool iOSAudioIODevice::isPlaying() { return pimpl->isRunning && pimpl->callback != nullptr; }
bool iOSAudioIODevice::isOpen() { return pimpl->isRunning; }
String iOSAudioIODevice::getLastError() { return pimpl->lastError; }
StringArray iOSAudioIODevice::getOutputChannelNames() { return pimpl->channelData.outputs->hardwareChannelNames; }
StringArray iOSAudioIODevice::getInputChannelNames() { return pimpl->channelData.inputs->areChannelsAccessible ? pimpl->channelData.inputs->hardwareChannelNames : StringArray(); }
int iOSAudioIODevice::getDefaultBufferSize() { return pimpl->defaultBufferSize; }
int iOSAudioIODevice::getCurrentBufferSizeSamples() { return pimpl->bufferSize; }
double iOSAudioIODevice::getCurrentSampleRate() { return pimpl->sampleRate; }
int iOSAudioIODevice::getCurrentBitDepth() { return 16; }
BigInteger iOSAudioIODevice::getActiveInputChannels() const { return pimpl->channelData.inputs->activeChannels; }
BigInteger iOSAudioIODevice::getActiveOutputChannels() const { return pimpl->channelData.outputs->activeChannels; }
int iOSAudioIODevice::getInputLatencyInSamples() { return roundToInt (pimpl->sampleRate * [AVAudioSession sharedInstance].inputLatency); }
int iOSAudioIODevice::getOutputLatencyInSamples() { return roundToInt (pimpl->sampleRate * [AVAudioSession sharedInstance].outputLatency); }
int iOSAudioIODevice::getXRunCount() const noexcept { return pimpl->xrun; }
void iOSAudioIODevice::setMidiMessageCollector (MidiMessageCollector* collector) { pimpl->messageCollector = collector; }
AudioPlayHead* iOSAudioIODevice::getAudioPlayHead() const { return pimpl.get(); }
bool iOSAudioIODevice::isInterAppAudioConnected() const { return pimpl->interAppAudioConnected; }
#if JUCE_MODULE_AVAILABLE_juce_graphics
Image iOSAudioIODevice::getIcon (int size) { return pimpl->getIcon (size); }
#endif
void iOSAudioIODevice::switchApplication() { return pimpl->switchApplication(); }
//==============================================================================
iOSAudioIODeviceType::iOSAudioIODeviceType()
: AudioIODeviceType (iOSAudioDeviceName)
{
sessionHolder->activeDeviceTypes.add (this);
}
iOSAudioIODeviceType::~iOSAudioIODeviceType()
{
sessionHolder->activeDeviceTypes.removeFirstMatchingValue (this);
}
// The list of devices is updated automatically
void iOSAudioIODeviceType::scanForDevices() {}
StringArray iOSAudioIODeviceType::getDeviceNames (bool) const { return { iOSAudioDeviceName }; }
int iOSAudioIODeviceType::getDefaultDeviceIndex (bool) const { return 0; }
int iOSAudioIODeviceType::getIndexOfDevice (AudioIODevice*, bool) const { return 0; }
bool iOSAudioIODeviceType::hasSeparateInputsAndOutputs() const { return false; }
AudioIODevice* iOSAudioIODeviceType::createDevice (const String& outputDeviceName, const String& inputDeviceName)
{
return new iOSAudioIODevice (this, outputDeviceName, inputDeviceName);
}
void iOSAudioIODeviceType::handleRouteChange (AVAudioSessionRouteChangeReason)
{
triggerAsyncUpdate();
}
void iOSAudioIODeviceType::handleAsyncUpdate()
{
callDeviceChangeListeners();
}
//==============================================================================
AudioSessionHolder::AudioSessionHolder() { nativeSession = [[iOSAudioSessionNative alloc] init: this]; }
AudioSessionHolder::~AudioSessionHolder() { [nativeSession release]; }
void AudioSessionHolder::handleStatusChange (bool enabled, const char* reason) const
{
for (auto device: activeDevices)
device->handleStatusChange (enabled, reason);
}
void AudioSessionHolder::handleRouteChange (AVAudioSessionRouteChangeReason reason)
{
for (auto device: activeDevices)
device->handleRouteChange (reason);
for (auto deviceType: activeDeviceTypes)
deviceType->handleRouteChange (reason);
}
#undef JUCE_NSERROR_CHECK
} // namespace juce
|