twilio / video-quickstart-ios

Twilio Video Quickstart for iOS
https://www.twilio.com/docs/api/video
MIT License
460 stars 178 forks source link

Playing some mp3 file during call, is it possible? #226

Open TorlendorPrivate opened 6 years ago

TorlendorPrivate commented 6 years ago

Description

We want to play some mp3 file using AVAudioPlayer, but when we play mp3 file there is no sound any more between participants. Is it possible to play some mp3 file during video call? This should be a main feature in our application so that's why I ask this. Thank you very much on your time and help.

Nemanja

Expected Behavior

We want to play some mp3 file using AVAudioPlayer during video call

Actual Behavior

When we play mp3 file there is no sound any more between participants

Reproduces How Often

100%

Xcode

9.2

iOS Version

iOS 10.0 and above

iOS Device

any

ceaglest commented 6 years ago

Hi @TorlendorPrivate,

This should now be possible if you use 2.0.0-beta1 and write a custom TVIAudioDevice, but we don't have sample code which demonstrates it yet. There was a similar question asked in (https://github.com/twilio/video-quickstart-swift/issues/157) as well.

If you're looking for full duplex playback + recording + mp3 player today you would probably need to write your own AudioUnit based device using a VoiceProcessingIO unit and with the 2nd output being the contents of the mp3 that you would like to play. Another option, which we're looking to add sample code coverage on, is using AVAudioEngine instead of CoreAudio / AudioUnit.

We have an example which shows a playback only device using AudioUnits. I'd bet this one works with AVPlayer out of the box, but it doesn't do recording and echo cancellation.

Regards, Chris Eagleston

TorlendorPrivate commented 6 years ago

Thank you for quick answer and explanation. Could you send me some example how to do that, or when you plan to add your example to this git project. I don’t have idea how to do that. Thank you.

ceaglest commented 6 years ago

Hi,

It's not scheduled this week, but we would like to add this example sooner than later. I'll keep this ticket updated once we have something available to try.

Best, Chris

TorlendorPrivate commented 6 years ago

Ok thank you very much for your help.

All the best, Nemanja

ceaglest commented 6 years ago

Hey @TorlendorPrivate,

We've posted a WIP pull request which plays music alongside regular Room audio. We are looking to merge it later this week.

https://github.com/twilio/video-quickstart-swift/pull/233

Best, Chris

TorlendorPrivate commented 6 years ago

Thanks @ceaglest for the information. I will try it when i found time and then tell you my impresion. Thank’s once again.

All the best, Nemanja

ceaglest commented 6 years ago

Hi @TorlendorPrivate,

We've now merged the updated TVIAudioDevice example into master.

I'm going to keep this ticket open, since we're still considering adding this feature to TVIDefaultAudioDevice. If you're willing to try out sample code and TVIAudioDevice APIs, you don't need to wait for us to update the default device.

Best, Chris

torlendor commented 6 years ago

Hi @ceaglest.

I have problem with playing audio file while call is active. I don't use localVideoTrack just localAudioTrack. When I enter into the call my microphone doesn't work and often speaker also doesn't work. I don't know what can be problem, because when i enter the call without avplayer instance everything works well. Thank's for help.

All the best, Nemanja

gileze33 commented 4 years ago

Did this ever get added to the default audio options? We are still seeing similar issues and can't find any way to configure it

ceaglest commented 4 years ago

Hi @gileze33,

The ability to mix multiple streams of audio is not part of TVIDefaultAudioDevice at this time. We have an example that demonstrates using AVAudioEngine to mix an audio file with audio from the SDK. We are currently updating the example (https://github.com/twilio/video-quickstart-ios/pull/464) to improve compatibility with bluetooth audio, and the changes should be merged this week.

Best, Chris

MichaelDanielTom commented 4 years ago

@ceaglest Do you know if it's possible to easily adapt that engine to play with an HLS livestream? Right now we have a livestream (HLS with video and audio) that's playing from another source, and when you connect to the Twilio Room, we want that livestream to keep playing, and the Room to continue to have full duplex playback + recording. Note that we don't want to transmit any of the audio from the livestream to the Room, we just want it to continue playing alongside any Room audio locally.

A little more on the situation: We have the livestream playing, and everything is fine. We then initiate a connection to a Twilio Room, and the livestream video and audio pause for a second, after which we’re successfully connected to the Room, with all Room input and output working fine, and the livestream audio and video restarting alongside the room audio. While connected to the Room, the livestream audio quality is significantly reduced, whether being played out of the speakers or through bluetooth.

I guess the main question is how to 1) prevent any pause in the livestream from happening when connecting to the Room, and 2) maintain the livestream’s audio quality while being played locally alongside the Room audio. Would an adapted version of the engine you mentioned solve these, or is there an easier way?

liyamahendra commented 3 years ago

Hi @piyushtank ,

In commit 76421c7102eb6fdf6eff24dd063e5bdf45c71d07 commit, the support was added to continuously play music inside a room while the video call is active.

I've the lasted code, the music plays on the device, however, I'm not able to hear music on the other end.

Some details about my test:

The app crashes on one device, at the below assertion:

AudioBufferList *mixedAudioBufferList = context->mixedAudioBufferList;
assert(mixedAudioBufferList != NULL);

Any idea what could be wrong?

Thanks!

liyamahendra commented 3 years ago

@piyushtank @ceaglest Would appreciate if you can please review the previous comment. Thanks in advance!

piyushtank commented 3 years ago

@liyamahendra The ExampleAVAudioEngineDevice demonstrates the file playing use case. You should select ExampleAVAudioEngine Device not CoreAudio Device in the sample app.

liyamahendra commented 3 years ago

@piyushtank thank you for your reply.

I realize I had used the wrong wordings in my below message:

Ran the app on two iPhones. Entered the same room name on both devices; selected AVAudioEngine Device from the action sheet that opens when CoreAudio Device is tapped.

In my test which I performed, I did select AVAudioEngine Device (it doesn't show "ExampleAVAudioEngine Device").

IMG_1CFD50C6B6BF-1

Any idea why the sample crashes on one device, as soon as someone enters the room?

piyushtank commented 3 years ago

@liyamahendra Can you share the crash logs?

liyamahendra commented 3 years ago

Following are the debug logs from Xcode:

2021-03-20 12:45:49.989054+0530 AudioDeviceExample[378:10581] This device uses a maximum slice size of 1156 frames.
2021-03-20 12:45:50.007148+0530 AudioDeviceExample[378:10581] CoreAudio Device selected
2021-03-20 12:45:50.034058+0530 AudioDeviceExample[378:10581] This device uses a maximum slice size of 3072 frames.
2021-03-20 12:45:50.081732+0530 AudioDeviceExample[378:10581] Video track created.
2021-03-20 12:45:50.086896+0530 AudioDeviceExample[378:10581] [LayoutConstraints] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. 
    Try this: 
        (1) look at each constraint and try to figure out which you don't expect; 
        (2) find the code that added the unwanted constraint or constraints and fix it. 
(
    "<NSLayoutConstraint:0x28216e210 UITextField:0x10530f4d0.lastBaseline == UILabel:0x105310940.lastBaseline   (active)>",
    "<NSLayoutConstraint:0x28216e350 V:[UILabel:0x105310940]-(21)-[UIButton:0x10530f1f0'Connect']   (active)>",
    "<NSLayoutConstraint:0x28216e3a0 V:[UITextField:0x10530f4d0]-(16)-[UIButton:0x10530f1f0'Connect']   (active)>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x28216e350 V:[UILabel:0x105310940]-(21)-[UIButton:0x10530f1f0'Connect']   (active)>

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.
2021-03-20 12:45:57.794477+0530 AudioDeviceExample[378:10581] [LayoutConstraints] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. 
    Try this: 
        (1) look at each constraint and try to figure out which you don't expect; 
        (2) find the code that added the unwanted constraint or constraints and fix it. 
(
    "<NSLayoutConstraint:0x28211ea80 UIView:0x10720e520.width == - 16   (active)>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x28211ea80 UIView:0x10720e520.width == - 16   (active)>

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.
2021-03-20 12:45:59.964100+0530 AudioDeviceExample[378:10581] CoreAudio Device Selected
2021-03-20 12:45:59.984922+0530 AudioDeviceExample[378:10581] Video track created.
2021-03-20 12:46:02.952081+0530 AudioDeviceExample[378:10581] Connecting to test
2021-03-20 12:46:04.134452+0530 AudioDeviceExample[378:10581] Connected to room test as mahendra.
2021-03-20 12:46:04.382209+0530 AudioDeviceExample[378:10811] A route change ocurred while the AudioUnit was started. Checking the active audio format.
2021-03-20 12:46:04.385458+0530 AudioDeviceExample[378:10581] Subscribed to Ff9bded3Cd4BbEdAFE36feCA915Fe1E4 audio track for Participant hemanshu
Assertion failed: (mixedAudioBufferList != NULL), function ExampleAVAudioEngineDeviceRecordCallback, file /Users/mahendraliya/Documents/_dev/2021/james-king/code/video-quickstart-ios/AudioDeviceExample/AudioDevices/ExampleAVAudioEngineDevice.m, line 816.
(lldb) 

================

Following is the crash log from the device:

{"app_name":"AudioDeviceExample","timestamp":"2021-03-14 20:26:25.00 +0530","app_version":"1.0","slice_uuid":"43a96b96-9d63-3993-bdff-034471369c68","adam_id":0,"build_version":"1","platform":2,"bundleID":"com.twilio.AudioDeviceExample","share_with_app_devs":1,"is_first_party":0,"bug_type":"109","os_version":"iPhone OS 14.4 (18D52)","incident_id":"4601F5C0-FCDA-4AAB-8633-C5352B026CFF","name":"AudioDeviceExample"}
Incident Identifier: 4601F5C0-FCDA-4AAB-8633-C5352B026CFF
CrashReporter Key:   5fc033f8b20421c6c3e8e35592aea8727c0ec604
Hardware Model:      iPhone13,2
Process:             AudioDeviceExample [7798]
Path:                /private/var/containers/Bundle/Application/6EF6EDD7-7094-418E-A0AD-5AEC36FC2224/AudioDeviceExample.app/AudioDeviceExample
Identifier:          com.twilio.AudioDeviceExample
Version:             1 (1.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           com.twilio.AudioDeviceExample [1232]

Date/Time:           2021-03-14 20:26:25.5887 +0530
Launch Time:         2021-03-14 20:26:25.3645 +0530
OS Version:          iPhone OS 14.4 (18D52)
Release Type:        User
Baseband Version:    1.42.03
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  0

Application Specific Information:
abort() called

Last Exception Backtrace:
(0x19110d86c 0x1a6128c50 0x1910064a4 0x19453638c 0x194536294 0x1ab495db0 0x193ff510c 0x102c56bbc 0x102c56f40 0x19400f9e0 0x19452a644 0x19452ab18 0x193ffb610 0x1932dd804 0x1932d6f54 0x1932d4f50 0x193fc7de0 0x193fc8088 0x1940049cc 0x193fc7924 0x1932de6f0 0x1932debac 0x1932dff88 0x1932c1a18 0x19400fec4 0x19452a644 0x19452ab18 0x19453f30c 0x194484640 0x1944afb08 0x193ae1f28 0x19108949c 0x1910886e4 0x191082aa0 0x19108221c 0x1a8c4e784 0x193ac2ee8 0x193ac875c 0x102c72f6c 0x190d426b0)

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libsystem_kernel.dylib          0x00000001bf062414 0x1bf03a000 + 164884
1   libsystem_pthread.dylib         0x00000001dcbbcb50 0x1dcbba000 + 11088
2   libsystem_c.dylib               0x000000019a53bb74 0x19a4c5000 + 486260
3   libc++abi.dylib                 0x00000001a622ecf8 0x1a621b000 + 81144
4   libc++abi.dylib                 0x00000001a621fe4c 0x1a621b000 + 20044
5   libobjc.A.dylib                 0x00000001a6128f64 0x1a6122000 + 28516
6   libc++abi.dylib                 0x00000001a622e0e0 0x1a621b000 + 78048
7   libc++abi.dylib                 0x00000001a6231150 0x1a621b000 + 90448
8   libobjc.A.dylib                 0x00000001a6128e1c 0x1a6122000 + 28188
9   CoreFoundation                  0x0000000191082308 0x190fe8000 + 631560
10  GraphicsServices                0x00000001a8c4e784 0x1a8c4b000 + 14212
11  UIKitCore                       0x0000000193ac2ee8 0x192efa000 + 12357352
12  UIKitCore                       0x0000000193ac875c 0x192efa000 + 12379996
13  AudioDeviceExample              0x0000000102c72f6c 0x102c40000 + 208748
14  libdyld.dylib                   0x0000000190d426b0 0x190d41000 + 5808

Thread 1:
0   libsystem_pthread.dylib         0x00000001dcbc4764 0x1dcbba000 + 42852

Thread 2:
0   libsystem_pthread.dylib         0x00000001dcbc4764 0x1dcbba000 + 42852

Thread 3:
0   libsystem_pthread.dylib         0x00000001dcbc4764 0x1dcbba000 + 42852

Thread 4:
0   libsystem_pthread.dylib         0x00000001dcbc4764 0x1dcbba000 + 42852

Thread 5:
0   libsystem_pthread.dylib         0x00000001dcbc4764 0x1dcbba000 + 42852

Thread 6 name:  com.apple.uikit.eventfetch-thread
Thread 6:
0   libsystem_kernel.dylib          0x00000001bf03e2d0 0x1bf03a000 + 17104
1   libsystem_kernel.dylib          0x00000001bf03d660 0x1bf03a000 + 13920
2   CoreFoundation                  0x0000000191088c30 0x190fe8000 + 658480
3   CoreFoundation                  0x0000000191082c14 0x190fe8000 + 633876
4   CoreFoundation                  0x000000019108221c 0x190fe8000 + 631324
5   Foundation                      0x0000000192331df0 0x192329000 + 36336
6   Foundation                      0x0000000192331cbc 0x192329000 + 36028
7   UIKitCore                       0x0000000193b76c48 0x192efa000 + 13093960
8   Foundation                      0x00000001924a3a34 0x192329000 + 1550900
9   libsystem_pthread.dylib         0x00000001dcbbbcb0 0x1dcbba000 + 7344
10  libsystem_pthread.dylib         0x00000001dcbc4778 0x1dcbba000 + 42872

Thread 7:
0   libsystem_pthread.dylib         0x00000001dcbc4764 0x1dcbba000 + 42852

Thread 8:
0   libsystem_pthread.dylib         0x00000001dcbc4764 0x1dcbba000 + 42852

Thread 9:
0   libsystem_kernel.dylib          0x00000001bf03e30c 0x1bf03a000 + 17164
1   caulk                           0x00000001d7d9e900 0x1d7d86000 + 100608
2   caulk                           0x00000001d7d930ac 0x1d7d86000 + 53420
3   caulk                           0x00000001d7d98398 0x1d7d86000 + 74648
4   caulk                           0x00000001d7d9857c 0x1d7d86000 + 75132
5   libsystem_pthread.dylib         0x00000001dcbbbcb0 0x1dcbba000 + 7344
6   libsystem_pthread.dylib         0x00000001dcbc4778 0x1dcbba000 + 42872

Thread 10 name:  MediaFactoryImpl::worker
Thread 10:
0   libsystem_kernel.dylib          0x00000001bf0621ac 0x1bf03a000 + 164268
1   libsystem_pthread.dylib         0x00000001dcbbf468 0x1dcbba000 + 21608
2   TwilioVideo                     0x00000001034c690c 0x103014000 + 4925708
3   TwilioVideo                     0x00000001034c67d8 0x103014000 + 4925400
4   TwilioVideo                     0x0000000103492378 0x103014000 + 4711288
5   TwilioVideo                     0x00000001034a02c8 0x103014000 + 4768456
6   TwilioVideo                     0x000000010349f8ec 0x103014000 + 4765932
7   TwilioVideo                     0x00000001034a0c30 0x103014000 + 4770864
8   libsystem_pthread.dylib         0x00000001dcbbbcb0 0x1dcbba000 + 7344
9   libsystem_pthread.dylib         0x00000001dcbc4778 0x1dcbba000 + 42872

Thread 11 name:  MediaFactoryImpl::signaling 0x0x280d9afb0
Thread 11:
0   libsystem_kernel.dylib          0x00000001bf0621ac 0x1bf03a000 + 164268
1   libsystem_pthread.dylib         0x00000001dcbbf468 0x1dcbba000 + 21608
2   TwilioVideo                     0x00000001034c690c 0x103014000 + 4925708
3   TwilioVideo                     0x00000001034c67d8 0x103014000 + 4925400
4   TwilioVideo                     0x0000000103492378 0x103014000 + 4711288
5   TwilioVideo                     0x00000001034a02c8 0x103014000 + 4768456
6   TwilioVideo                     0x000000010349f8ec 0x103014000 + 4765932
7   TwilioVideo                     0x00000001034a0c30 0x103014000 + 4770864
8   libsystem_pthread.dylib         0x00000001dcbbbcb0 0x1dcbba000 + 7344
9   libsystem_pthread.dylib         0x00000001dcbc4778 0x1dcbba000 + 42872

Thread 12 name:  MediaFactoryImpl::networking 0x0x280d9afb0
Thread 12:
0   libsystem_kernel.dylib          0x00000001bf06270c 0x1bf03a000 + 165644
1   TwilioVideo                     0x0000000103499520 0x103014000 + 4740384
2   TwilioVideo                     0x00000001034a02c8 0x103014000 + 4768456
3   TwilioVideo                     0x000000010349f8ec 0x103014000 + 4765932
4   TwilioVideo                     0x00000001034a0c30 0x103014000 + 4770864
5   libsystem_pthread.dylib         0x00000001dcbbbcb0 0x1dcbba000 + 7344
6   libsystem_pthread.dylib         0x00000001dcbc4778 0x1dcbba000 + 42872

Thread 13 name:  AVAudioSession Notify Thread
Thread 13:
0   libsystem_kernel.dylib          0x00000001bf03e2d0 0x1bf03a000 + 17104
1   libsystem_kernel.dylib          0x00000001bf03d660 0x1bf03a000 + 13920
2   CoreFoundation                  0x0000000191088c30 0x190fe8000 + 658480
3   CoreFoundation                  0x0000000191082c14 0x190fe8000 + 633876
4   CoreFoundation                  0x000000019108221c 0x190fe8000 + 631324
5   AudioSession                    0x0000000198bcb0c4 0x198bbe000 + 53444
6   AudioSession                    0x0000000198bcd25c 0x198bbe000 + 62044
7   libsystem_pthread.dylib         0x00000001dcbbbcb0 0x1dcbba000 + 7344
8   libsystem_pthread.dylib         0x00000001dcbc4778 0x1dcbba000 + 42872

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x000000016d1bee00   x5: 0x000000016d1bf3b0   x6: 0x000000000000006e   x7: 0x0000000000000900
    x8: 0x00000000000005b9   x9: 0xcd327e5143e9d654  x10: 0x0000000000000002  x11: 0x0000000000000003
   x12: 0x0000000000000000  x13: 0x0000000000000001  x14: 0x0000000000000010  x15: 0x0000000000000004
   x16: 0x0000000000000148  x17: 0x0000000102fcf8c0  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x0000000000000507  x21: 0x0000000102fcf9a0  x22: 0x0000000000000001  x23: 0x0000000281d941b0
   x24: 0x0000000000000000  x25: 0x0000000000000001  x26: 0x0000000eb1e31100  x27: 0x00000001f4000000
   x28: 0x0000000000000001   fp: 0x000000016d1bf310   lr: 0x00000001dcbbcb50
    sp: 0x000000016d1bf2f0   pc: 0x00000001bf062414 cpsr: 0x40000000
   esr: 0x56000080  Address size fault

Binary Images:
0x102c40000 - 0x102c7ffff AudioDeviceExample arm64  <43a96b969d633993bdff034471369c68> /var/containers/Bundle/Application/6EF6EDD7-7094-418E-A0AD-5AEC36FC2224/AudioDeviceExample.app/AudioDeviceExample
0x102dd8000 - 0x102de3fff libobjc-trampolines.dylib arm64e  <0be796322ebd3748ac5506ab8b4fc60d> /usr/lib/libobjc-trampolines.dylib
0x102f24000 - 0x102f93fff dyld arm64e  <1f4d7499ee603c5d9d542cd29e4e537c> /usr/lib/dyld
0x103014000 - 0x10397ffff TwilioVideo arm64  <9173fadfc4533fd3a8dda743c5e5c4e9> /var/containers/Bundle/Application/6EF6EDD7-7094-418E-A0AD-5AEC36FC2224/AudioDeviceExample.app/Frameworks/TwilioVideo.framework/TwilioVideo
0x190cfe000 - 0x190d40fff libdispatch.dylib arm64e  <b92757b104343e9ba3acb6da6b81945c> /usr/lib/system/libdispatch.dylib
0x190d41000 - 0x190d7bfff libdyld.dylib arm64e  <21b19919133438bcb233896e929945e0> /usr/lib/system/libdyld.dylib
0x190d7c000 - 0x190fe7fff libicucore.A.dylib arm64e  <cb72d6a6ceef313b88e7842da8de15cc> /usr/lib/libicucore.A.dylib
0x190fe8000 - 0x1913a1fff CoreFoundation arm64e  <727f2644eb4e3d57bc2ee6803ba92366> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1913a2000 - 0x19154dfff CoreServices arm64e  <c46f42d698c9323b8cee8e04f50bce45> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x19154e000 - 0x191596fff WirelessDiagnostics arm64e  <6b8356e76aae3c4e94213e796c6d7912> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x191597000 - 0x191613fff SystemConfiguration arm64e  <97ad4485538f3f389fcdb3fb4df441c3> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x191614000 - 0x19170bfff CoreTelephony arm64e  <810c9ed7d97438e19ca18fac779bab84> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x19170c000 - 0x191ba3fff CFNetwork arm64e  <0ebb3119a8ce35da96245b5528802fc8> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x191ba4000 - 0x1922b1fff libnetwork.dylib arm64e  <39506b46189e3e828f32ab8326fcc2c7> /usr/lib/libnetwork.dylib
0x1922b2000 - 0x192328fff Accounts arm64e  <8cc93a19e5983eeb8afb506477688616> /System/Library/Frameworks/Accounts.framework/Accounts
0x192329000 - 0x1925e4fff Foundation arm64e  <7698bf3e0cf631c085e9562714f01276> /System/Library/Frameworks/Foundation.framework/Foundation
0x1925e5000 - 0x192947fff ImageIO arm64e  <9fc48c6739e1399bb4ad52db3b37f607> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x192961000 - 0x192ef9fff CoreGraphics arm64e  <f5b44b3793af3d1fb053789a8626498a> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x192efa000 - 0x1943a7fff UIKitCore arm64e  <8518eae3832b3ff09fa59dbe3041f26c> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1943a8000 - 0x1943cafff libAccessibility.dylib arm64e  <f62ac3057abf36c3a35156d384047c97> /usr/lib/libAccessibility.dylib
0x1943cb000 - 0x194651fff QuartzCore arm64e  <8510f13908243686a9aa3e198539a021> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x194652000 - 0x1946bdfff BackBoardServices arm64e  <7f77d33c3c1f3cca979ae1332798a25f> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1946be000 - 0x19474bfff TextInput arm64e  <61a52060d5843d1ca4f1864b5fb5617c> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1947b5000 - 0x194b83fff AppleMediaServices arm64e  <dd75e0038deb3e07937d85951ba9c25a> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x194b84000 - 0x194d00fff libswiftFoundation.dylib arm64e  <e1d532c2354331b2830a611eecc21277> /usr/lib/swift/libswiftFoundation.dylib
0x194d01000 - 0x195132fff libswiftCore.dylib arm64e  <de79398bb4423166b6ca1650b7155d82> /usr/lib/swift/libswiftCore.dylib
0x195133000 - 0x19514bfff UIKitServices arm64e  <513a8906528a35739a45c91ea1817430> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1954ce000 - 0x195685fff CoreText arm64e  <58b7adf717bf3fb093fd084cb70cba54> /System/Library/Frameworks/CoreText.framework/CoreText
0x195686000 - 0x1956a0fff ExtensionKit arm64e  <ab582630eb713eaa93594d139804e0cb> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x1956b6000 - 0x19573afff BaseBoard arm64e  <d0fa26f104f73d73aaa6337d19ac0677> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x19573b000 - 0x195966fff CoreDuet arm64e  <f4cb4e21d1bf356d903f9ef48dc892b8> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x195967000 - 0x195ac9fff Contacts arm64e  <387594fd3d2c321183e16487cc92d086> /System/Library/Frameworks/Contacts.framework/Contacts
0x195aca000 - 0x19701ffff GeoServices arm64e  <c8392d1038ae3d6a84861c27beb42409> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x197020000 - 0x1970b5fff CoreLocation arm64e  <27c07cfbfe903a308300038163f75a62> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1970b6000 - 0x197268fff CloudKit arm64e  <91285302d0043991af90fe2b0f3727d0> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x197269000 - 0x1975e7fff CoreData arm64e  <e4983c77f15e3012bf00a3fc6f2eb012> /System/Library/Frameworks/CoreData.framework/CoreData
0x198354000 - 0x19835efff libswiftCoreGraphics.dylib arm64e  <05d0f019b7a430f5b754bd60ea5b8559> /usr/lib/swift/libswiftCoreGraphics.dylib
0x19835f000 - 0x19839efff AppSupport arm64e  <c9ca542cc2653802be879628070dc0a4> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x19839f000 - 0x1984c8fff ManagedConfiguration arm64e  <73f74ef2dd093981b1d0834e9906ea6e> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1984c9000 - 0x19853afff IMFoundation arm64e  <07b9b450b39930cca73871bd618fea4b> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x19853b000 - 0x19864bfff IDS arm64e  <f269d2be875533f481fd40c9d96b34c3> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x19864c000 - 0x198799fff Security arm64e  <248431aabfe8399dad0ea942783d0e4b> /System/Library/Frameworks/Security.framework/Security
0x19879a000 - 0x198bbdfff MediaPlayer arm64e  <e7f1d156c6923b30906faf6183ed22e8> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x198bbe000 - 0x198bd6fff AudioSession arm64e  <ec9f661dcafc3a16b372bb4a803636e8> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x198bd7000 - 0x198d77fff AVFCore arm64e  <0294540d081033fdbad051943cb01d86> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x198d78000 - 0x199324fff Intents arm64e  <397b9f43ab043a72bc5ca59dfddd48fa> /System/Library/Frameworks/Intents.framework/Intents
0x199374000 - 0x19968dfff CoreImage arm64e  <bbd5ff0b4792336fb8482f5c0c6c692c> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x19968e000 - 0x19974bfff ColorSync arm64e  <cc269c1b128030d29443c45d8cb5addb> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x19974c000 - 0x199787fff CoreVideo arm64e  <a41932f1812e3928b8188feef048018d> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x199788000 - 0x199f74fff MediaToolbox arm64e  <334f787e71c73676b9136c5f2a3436dc> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x199f75000 - 0x19a075fff CoreMedia arm64e  <063231877fe13d2d9c430fdad845e776> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x19a076000 - 0x19a2e1fff AudioToolbox arm64e  <62b836837f2237f89cd6aed24461df2c> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x19a2e2000 - 0x19a332fff CoreHaptics arm64e  <bbd7402fc1b33e1a9258307051360494> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x19a394000 - 0x19a49efff UIFoundation arm64e  <9b241bd011ab38c2a1ac19f09ec6e1b1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x19a49f000 - 0x19a4c4fff libsystem_info.dylib arm64e  <4141392213e530b7907d6662a1eab27e> /usr/lib/system/libsystem_info.dylib
0x19a4c5000 - 0x19a543fff libsystem_c.dylib arm64e  <961a8fb0de8a3567b4375d99cd549fae> /usr/lib/system/libsystem_c.dylib
0x19a544000 - 0x19a58ffff RunningBoardServices arm64e  <697a1a06cadc3e7fa852a474d80108cb> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x19a590000 - 0x19b6cafff JavaScriptCore arm64e  <1b9a9eccfde13d02abe735d29542d02a> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x19bc9c000 - 0x19bd2dfff ContactsFoundation arm64e  <34d587d357cc331889693ed5a7fa99a8> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x19bd2e000 - 0x19bf7cfff HealthKit arm64e  <d7a313170d383d33bc7736dd1660fa02> /System/Library/Frameworks/HealthKit.framework/HealthKit
0x19bf7d000 - 0x19bfa0fff ProactiveEventTracker arm64e  <ed1cd576029232f3a16693a874dd3a03> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x19bfa1000 - 0x19bfebfff Lexicon arm64e  <0056c7867b0c3bf38f9aae60c44beb0e> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x19c05a000 - 0x19c0aafff CoreDuetContext arm64e  <6c4bdd0f96c1332584aa8536f7849456> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x19c0ab000 - 0x19c156fff IOKit arm64e  <92c9b0a3c0473a55b17b4c81f6b4f054> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x19c157000 - 0x19c167fff DataMigration arm64e  <051256fd02fd3d5381c55bef2910a0af> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x19c168000 - 0x19c1c5fff SpringBoardServices arm64e  <c150acc3bd2a3fa181fa7e4d4deb9175> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x19c1c6000 - 0x19c1d8fff ContextKit arm64e  <628c4e5157e93d208e565b3760e93ca8> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x19c1d9000 - 0x19c44cfff CoreMotion arm64e  <dd8e0d47a8cd3194a28b3bb6dfc7253c> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x19c44d000 - 0x19c592fff EventKit arm64e  <374caf4729133e16933429279ffba9ca> /System/Library/Frameworks/EventKit.framework/EventKit
0x19caee000 - 0x19cd8cfff MediaRemote arm64e  <6506f7f32da538a9ae8083629db3d55b> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x19cd8d000 - 0x19cf35fff CoreUtils arm64e  <a95e26b7bc623727aebd37b8ade7dda9> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x19cf4d000 - 0x19cfbdfff CoreSpotlight arm64e  <22dc7b9c417e35459569bcc9bb02cadb> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x19d58b000 - 0x19d651fff CoreUI arm64e  <da638c18e6ee36a3ba87a6cecb3189eb> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x19d652000 - 0x19d69dfff SafariSafeBrowsing arm64e  <108e9e600c8339b6821710ada22d8046> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x19d69e000 - 0x19e097fff WebKit arm64e  <5a020775d4b539fb927c219d24e9ed43> /System/Library/Frameworks/WebKit.framework/WebKit
0x19e098000 - 0x1a09fffff WebCore arm64e  <a9759e560e3f3dddb7d3f88a3250823e> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1a0a00000 - 0x1a0a5ffff libMobileGestalt.dylib arm64e  <48e77331a983378c8eb4b7cc854f4a89> /usr/lib/libMobileGestalt.dylib
0x1a0a60000 - 0x1a0a7cfff CommonUtilities arm64e  <58bd77e1ead836a181a6f1f736d9bec1> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1a0a7d000 - 0x1a0bebfff IDSFoundation arm64e  <4cd55ce403cf353c8fc9c4fd458dd071> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1a0cf1000 - 0x1a0d9bfff CoreSuggestions arm64e  <b3f2323f1a9e3e8990576b14cd3c9316> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1a0d9c000 - 0x1a0e39fff AddressBookLegacy arm64e  <6df18e10743231e890292b8a5c5fadf1> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1a0e3a000 - 0x1a0e6dfff UserNotifications arm64e  <afe58449cf0234a4bc234ded3712a3d5> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1a0e6e000 - 0x1a0efafff FrontBoardServices arm64e  <a15e664c54bb3ac39d7f0bba7f43ebfe> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1a0efb000 - 0x1a0f1efff libsystem_malloc.dylib arm64e  <bbade3853af53399b1d6180c6d33df9c> /usr/lib/system/libsystem_malloc.dylib
0x1a19cd000 - 0x1a1a5ffff AuthKit arm64e  <2be58b7a584e3226b5551de2b35f61a6> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1a1a60000 - 0x1a1af3fff AppleAccount arm64e  <ec0ddbe85a0939048abc3a03c232150e> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1a1af4000 - 0x1a1bf6fff AVFAudio arm64e  <f41c217c594d3800afaa6724fa74c6e4> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1a1bf7000 - 0x1a1e62fff AudioToolboxCore arm64e  <d1cb61efad603bd3b0d2006e7f6c5476> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x1a22f6000 - 0x1a239dfff ShareSheet arm64e  <5c25c6ab8f5535958e684ab408e3aec9> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x1a248e000 - 0x1a24d8fff PhotoFoundation arm64e  <f66af335fbca3fdfa36bb0fb95984fe2> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1a272a000 - 0x1a2e5bfff PhotoLibraryServices arm64e  <851fb35f210f3e68b5aab636e9e44135> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1a2e5c000 - 0x1a2f1dfff AssetsLibraryServices arm64e  <362f820db3fa3497b65e8a000d1008c9> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1a2f1e000 - 0x1a2f6ffff MobileBackup arm64e  <7370a46dfbb33cdf90900f10f4d1b481> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1a2f70000 - 0x1a2f84fff MSUDataAccessor arm64e  <9140891644fe38208059c1cae5afb001> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x1a2f85000 - 0x1a2fabfff MobileAsset arm64e  <ef35474d2eb63dff9d0e5760ee7bac37> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1a2fac000 - 0x1a2fbbfff libsystem_networkextension.dylib arm64e  <72e9b04cefb3311398130faa22fd28af> /usr/lib/system/libsystem_networkextension.dylib
0x1a3245000 - 0x1a3611fff CoreML arm64e  <f9033ece3eeb35079edb4ea0a1384705> /System/Library/Frameworks/CoreML.framework/CoreML
0x1a3612000 - 0x1a3d97fff Espresso arm64e  <e69d4058a9403d9c8bfb8c79e13f84ff> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1a3d98000 - 0x1a3e95fff VideoToolbox arm64e  <a291cd84788c36a095d8a7e53275e4cd> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1a3fe1000 - 0x1a3ff2fff AXCoreUtilities arm64e  <85b866951b613087b7b25211a67e69ae> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1a4ee8000 - 0x1a505efff Montreal arm64e  <c01e4cb63a353264881d22f16abd0de7> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1a505f000 - 0x1a5174fff LanguageModeling arm64e  <e913087b54783c95a3f30764ec877c0d> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1a5175000 - 0x1a517dfff InternationalSupport arm64e  <05ea5f19fb0b33a5b9f3ceea6808df34> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1a517e000 - 0x1a53d1fff iTunesCloud arm64e  <6ee9c0bdef7834cf8a10a759a67a9ec6> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1a53d2000 - 0x1a5414fff libswiftUIKit.dylib arm64e  <6918464affe03199b2614026e35cd5cf> /usr/lib/swift/libswiftUIKit.dylib
0x1a552f000 - 0x1a55d8fff CalendarDatabase arm64e  <583e4c36c98f31a29e9bfc4ab998029f> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1a570a000 - 0x1a582efff Combine arm64e  <15b9213c595936be871f3f582776b8c4> /System/Library/Frameworks/Combine.framework/Combine
0x1a58bd000 - 0x1a58cefff UniformTypeIdentifiers arm64e  <15720249377a3189b5acde89ce28022a> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x1a58cf000 - 0x1a5951fff CloudDocs arm64e  <5c79358501373d9abc186d693fa39c67> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1a5e73000 - 0x1a5eb1fff MediaServices arm64e  <415230c3259e36d78f62e8f1a9ce73e5> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1a6122000 - 0x1a6158fff libobjc.A.dylib arm64e  <fea23cff02cf34268a4f893396ce92ff> /usr/lib/libobjc.A.dylib
0x1a6159000 - 0x1a61bbfff LoggingSupport arm64e  <0877d599d2bd33008d700d1f8abca399> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1a61bc000 - 0x1a621afff libc++.1.dylib arm64e  <4a0b48d835483ad794c55e54ab10b6fa> /usr/lib/libc++.1.dylib
0x1a621b000 - 0x1a6234fff libc++abi.dylib arm64e  <2c28dce19a893752bcfc907e99183a63> /usr/lib/libc++abi.dylib
0x1a6235000 - 0x1a6277fff SetupAssistant arm64e  <be6f53bb634b373f9982b548a3704b1f> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1a6278000 - 0x1a6292fff OctagonTrust arm64e  <2d16a2c8cf9f3fafab49ac4651023814> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
0x1a63c4000 - 0x1a6407fff CoreAutoLayout arm64e  <942d516f2be635879821a450f305f686> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x1a6408000 - 0x1a6566fff Network arm64e  <9d7e4a86670f3742b6c188f150e74705> /System/Library/Frameworks/Network.framework/Network
0x1a6567000 - 0x1a659dfff MobileKeyBag arm64e  <d1d35c92ad763198947c7c3c37dd1e3e> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1a67e1000 - 0x1a67f5fff BaseBoardUI arm64e  <7e55d9022dc833f28d3849f639a75367> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1a67f6000 - 0x1a68a8fff libvDSP.dylib arm64e  <981103e3468c336db8c5a574394ff73e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1a68a9000 - 0x1a68dcfff libAudioToolboxUtility.dylib arm64e  <c901706dd96638d78a98e632d0103d36> /usr/lib/libAudioToolboxUtility.dylib
0x1a6aba000 - 0x1a6b46fff CoreNLP arm64e  <de7392a4528937b297a4d5c557697c25> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1a6b47000 - 0x1a6c61fff FileProvider arm64e  <d9607b48e828313d88733480c22fbc28> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1a6c62000 - 0x1a6c72fff BiomeStorage arm64e  <509921cb2fa5390596301daff9c71805> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
0x1a6c73000 - 0x1a6c8bfff libswiftDispatch.dylib arm64e  <b6f59dfcf9bb31f8b0d5836177ba9668> /usr/lib/swift/libswiftDispatch.dylib
0x1a6c8c000 - 0x1a6cc2fff DataDetectorsCore arm64e  <a9131f915e3a35ca8d8e03085a2ba08b> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1a6cc3000 - 0x1a6d53fff Symbolication arm64e  <c15bd42b1d303aaf8b543d64f2433b5c> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1a6d54000 - 0x1a6d71fff CrashReporterSupport arm64e  <3f0cb4bfb6f3385db83720e08fba9808> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1a6edd000 - 0x1a70cbfff MPSNeuralNetwork arm64e  <333d91ab35473c47a5edf7be06a3deae> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1a70cc000 - 0x1a7122fff MPSCore arm64e  <b24eee3857a23fef906e34cc3a5a5386> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1a7280000 - 0x1a72edfff CalendarFoundation arm64e  <8e19bc8376fc3ea2840bc8f09e08649c> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1a7351000 - 0x1a743dfff NLP arm64e  <e341c043ae8d353791f5c120b4cdb3c5> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1a7577000 - 0x1a758efff ProtocolBuffer arm64e  <b53be2dce7853a81a741712c7219bd9b> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1a758f000 - 0x1a769cfff AVKit arm64e  <5ef8c42722333fbbbfe902dda8002e0f> /System/Library/Frameworks/AVKit.framework/AVKit
0x1a7810000 - 0x1a781ffff AssertionServices arm64e  <6c4a8e5fe94534898cc33f75e1215b11> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1a7820000 - 0x1a7849fff CloudServices arm64e  <3da5db7d44f8346bab10a1ca4ee427a2> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x1a789c000 - 0x1a797cfff Metal arm64e  <b19644ec655d330fb5022316136a7b66> /System/Library/Frameworks/Metal.framework/Metal
0x1a797d000 - 0x1a7ad1fff MediaExperience arm64e  <4cae8c9c6156321788986d02541aaf56> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1a7edf000 - 0x1a7ef5fff libsystem_trace.dylib arm64e  <3520924c65a7351dadbea07268a9bca7> /usr/lib/system/libsystem_trace.dylib
0x1a8c4b000 - 0x1a8c53fff GraphicsServices arm64e  <1959c615fa0830de8461884a5bbc8037> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1a8c54000 - 0x1a8caafff DeviceManagement arm64e  <ff223305d8f73d8fbe1d335177bfc0c1> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1a8e29000 - 0x1a8e3efff PowerLog arm64e  <e78464dca9813a359e5e19e567103906> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1a8e3f000 - 0x1a8e68fff DuetActivityScheduler arm64e  <6052f6a592943092afe626b8be3e70ed> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1aaa80000 - 0x1aaaeefff ProactiveSupport arm64e  <7e62581a0bba374c8ce4c8478f407c4b> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1aab1c000 - 0x1aab3bfff ApplePushService arm64e  <ba619145be4532f689c5efe49a389479> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1aab3c000 - 0x1aab65fff BoardServices arm64e  <66c745c0795a341aa2c9b01043957b83> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1aad05000 - 0x1aad54fff OSAnalytics arm64e  <b1704e43a44338febb79d6e81b51a2d2> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1aad55000 - 0x1aadb4fff CoreBluetooth arm64e  <07157e457e543ae4ad87685503c2db42> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1aafe5000 - 0x1ab01afff MobileInstallation arm64e  <35568a91b3b536acbdefa885f098b7d0> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1ab01b000 - 0x1ab0a9fff libTelephonyUtilDynamic.dylib arm64e  <e604b2167dae34e5892b42791848d0f3> /usr/lib/libTelephonyUtilDynamic.dylib
0x1ab0aa000 - 0x1ab119fff NanoRegistry arm64e  <0485700048f43d22b3423d2a7d8d7c16> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1ab1fe000 - 0x1ab21cfff CoreMaterial arm64e  <58b98f6de8df3813bb3416c568c45f9c> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1ab293000 - 0x1ab41cfff libsqlite3.dylib arm64e  <2963f7ee43003bb69529587d5302a657> /usr/lib/libsqlite3.dylib
0x1ab41d000 - 0x1ab4e3fff AVFCapture arm64e  <69a24b6680d23b65a9a90ccf8fec7e69> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1ab4e4000 - 0x1ab846fff CMCapture arm64e  <771999efb9ed3182a75311c8d38c44e4> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1ab9a5000 - 0x1abc05fff MobileSpotlightIndex arm64e  <585d247349ed39baac6a3765a35afb53> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1ac046000 - 0x1ac050fff libsystem_notify.dylib arm64e  <cb00557eecb73b8ebee94de4a0b862aa> /usr/lib/system/libsystem_notify.dylib
0x1ac051000 - 0x1ac096fff CryptoTokenKit arm64e  <af5eb1345e713c4aafa2b556abe82367> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1ac104000 - 0x1ac178fff libcorecrypto.dylib arm64e  <7282f135d28937129081a2b32fdb3622> /usr/lib/system/libcorecrypto.dylib
0x1ac179000 - 0x1ac19dfff UserManagement arm64e  <01f1ad278171339aa98d91876ef213d0> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1ac27a000 - 0x1ac290fff libsystem_asl.dylib arm64e  <6861da31b33a393eadeaa36da03ba670> /usr/lib/system/libsystem_asl.dylib
0x1ac51a000 - 0x1ac552fff DataAccessExpress arm64e  <f1a39236ca4432dc9fa73dc8ff054af0> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1ac553000 - 0x1ac58afff CoreServicesStore arm64e  <7f13794ebc913959a201e01a396aa228> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1ac58b000 - 0x1ac5b0fff CoreAnalytics arm64e  <0e3b705972c939ad9a5ca9b487f5c475> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1ac5b1000 - 0x1ac5bcfff SymptomAnalytics arm64e  <99e19311b5263984a27fd8976a1d70d3> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1ac7af000 - 0x1ac7bffff NanoPreferencesSync arm64e  <04761bb803ce3b63aeec6a61cc549b85> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1acff6000 - 0x1ad022fff IconServices arm64e  <d947a9247e9e309fa9eff038d7918f52> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1ad0b1000 - 0x1ad16ffff QuickLook arm64e  <9b078bce485a3f168dd324e34ce1b03d> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x1adafa000 - 0x1addc1fff vImage arm64e  <235be66e7bb831bba92d486371ffc572> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1aedbf000 - 0x1aee18fff ktrace arm64e  <0fd4ace25e6c3e0ca5e18b2aa5f4457f> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1af136000 - 0x1af144fff Celestial arm64e  <1637b47d575e35c19f0a61f21530746b> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1af1f2000 - 0x1af23bfff Pegasus arm64e  <ead3f41d1e4c3e9c88e234bc0d1297fe> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1af23c000 - 0x1af3c4fff WebKitLegacy arm64e  <e2e6d532c92535a88a195438ec912e29> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1af438000 - 0x1af4affff ClassKit arm64e  <df0f8ebb071c3654aeeb6a7fb095eb44> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1b0456000 - 0x1b0460fff IOMobileFramebuffer arm64e  <75b827a40b7e31278af975faf62e320b> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1b0587000 - 0x1b070ffff CloudPhotoLibrary arm64e  <22f8a43f53f43d1e8fdb384c9eb56916> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1b0710000 - 0x1b09dffff MusicLibrary arm64e  <6d49922ed936305ea408c0fd4b58a0cc> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1b09e0000 - 0x1b0a4afff CallKit arm64e  <40172deb9a033fdbb2f9c19402e18198> /System/Library/Frameworks/CallKit.framework/CallKit
0x1b0af5000 - 0x1b0b15fff PrototypeTools arm64e  <ca03807ff927380f9d8798ff437319c6> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1b0b16000 - 0x1b0b43fff PersistentConnection arm64e  <2c14c002f3ea300f8b45706af2444601> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1b0c2d000 - 0x1b0c52fff BiomeStreams arm64e  <481c6bacabb734d5880c954cf3b38dfd> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
0x1b0fdb000 - 0x1b0fecfff libswiftUniformTypeIdentifiers.dylib arm64e  <155016f0aa3c3ac5ad37d01cb29d95d8> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
0x1b162d000 - 0x1b1644fff CoreFollowUp arm64e  <bec84e7880753dff8d3e93807d4ca432> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1b1645000 - 0x1b16bffff Rapport arm64e  <389c3d98cdc83416bc1fcc79d99002f8> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1b17a3000 - 0x1b17b5fff Categories arm64e  <618e0818748638f099cdb24427079637> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1b1a89000 - 0x1b1ab0fff LocationSupport arm64e  <0c0eb39ec3583a85bf0d32b53ba29782> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1b1ab1000 - 0x1b1ae5fff iCalendar arm64e  <e8acbe47844e3ecabfc85ccbbd57c124> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1b1ae6000 - 0x1b1b11fff CoreAccessories arm64e  <aef72f8cdcd030ffbe2664c6c524f066> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
0x1b1c22000 - 0x1b1c4dfff CacheDelete arm64e  <f575b685d1de30229ed41fc8d731c03e> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1b1e23000 - 0x1b1e25fff OSAServicesClient arm64e  <dec50288c55c378bb424658704258c77> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1b1e26000 - 0x1b1e28fff BiomeFoundation arm64e  <6c66263730cd3192aae1a31698bd5142> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
0x1b1e29000 - 0x1b1e83fff ProtectedCloudStorage arm64e  <18d26651ea76381fad99579a036da0e3> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1b1e84000 - 0x1b1ebcfff C2 arm64e  <f8b7dc6192b03c8ea012f71dc32e24c9> /System/Library/PrivateFrameworks/C2.framework/C2
0x1b29fc000 - 0x1b2ab1fff CoreSymbolication arm64e  <4a497d5f199b3a17b912d711e97154d7> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1b2c23000 - 0x1b2c2cfff HearingCore arm64e  <f644c08e0b393f01ab28bb98c45b35cb> /System/Library/PrivateFrameworks/HearingCore.framework/HearingCore
0x1b3299000 - 0x1b32abfff IOSurface arm64e  <2bb4143452ee3bd7822950b3840218b6> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1b32ac000 - 0x1b330efff MobileWiFi arm64e  <cb04e63128a23661a0c5ab073cf2dbf4> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1b37df000 - 0x1b3888fff MMCS arm64e  <506bc412749f3c3b853c299d3d8e9f5a> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1b3902000 - 0x1b393dfff libGLImage.dylib arm64e  <5e1452bc1b723ea9bbee08acd20195f3> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1b393e000 - 0x1b3945fff libsystem_symptoms.dylib arm64e  <ee0315ac9aab3bd4ab86ede010db097a> /usr/lib/system/libsystem_symptoms.dylib
0x1b398d000 - 0x1b3eeefff CoreAudio arm64e  <35f706386c053b64b34f60e273b2a83c> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1b4460000 - 0x1b4474fff MaterialKit arm64e  <81b41c96b2b632519b4bca173398c2b8> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x1b45fc000 - 0x1b460cfff CoreAUC arm64e  <a3045e052c2733a89ad0fdaca05abf4a> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1b4798000 - 0x1b4cb1fff AudioCodecs arm64e  <db8b3f4b3eda3399bf0219b3a6c4f712> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
0x1b5856000 - 0x1b58b6fff ToneLibrary arm64e  <f9b3f381c7a1318fa3fece794d39bf5c> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1b611a000 - 0x1b6127fff MediaSafetyNet arm64e  <54121c6dbfb9370ca7134c3d2139a992> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1b6128000 - 0x1b6165fff TimeSync arm64e  <79da117bf4763bb3901a21e4ae54c148> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1b68d1000 - 0x1b68dafff CoreTime arm64e  <cc7f0c252783371a9e4871e61476bc79> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1b74cb000 - 0x1b74d4fff ContextKitExtraction arm64e  <3b1d92e5f4ac37e8887e97798a3bee96> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1b75b2000 - 0x1b75b4fff libswiftObjectiveC.dylib arm64e  <6d0b9153875939f48ebfc48dfdc4d77c> /usr/lib/swift/libswiftObjectiveC.dylib
0x1b8bd5000 - 0x1b8c59fff CoreDAV arm64e  <16c1d77ae3ca3dfb93bc7e4b3968c7e3> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1b8e41000 - 0x1b8e50fff MobileIcons arm64e  <e8c4f97c59483d7f9f59b26835929137> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1ba582000 - 0x1ba58cfff MallocStackLogging arm64e  <66bfc8d3c6f335519ce3f213ab98480e> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1ba7c9000 - 0x1ba814fff MetadataUtilities arm64e  <a3943301ae45335f8443281c7f346621> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1baf67000 - 0x1bafc6fff CoreLocationProtobuf arm64e  <29e0b3b8c4d133e1a16975c207af057f> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1bb1db000 - 0x1bb20dfff Bom arm64e  <68852959ebe03756837b46f2c1f767ec> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1bb243000 - 0x1bb24afff PushKit arm64e  <ea9b2ff9825f30a29dc38fe3e70fd6de> /System/Library/Frameworks/PushKit.framework/PushKit
0x1bb24b000 - 0x1bb2b8fff PhotosFormats arm64e  <0ec0b49423a43771a4a74ef7ef4cff4c> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1bb451000 - 0x1bb4e1fff Quagga arm64e  <e6bf111821bb3f7abb33d6341b2ed140> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1bb4e2000 - 0x1bb4eafff StudyLog arm64e  <15e63b6cec933fa882889d0cefd8a9ef> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1bc4f7000 - 0x1bc538fff NaturalLanguage arm64e  <fd73fd92ced23b1ab02c6ffdee31eece> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1bc5e5000 - 0x1bcb20fff libAudioDSP.dylib arm64e  <8284a0fdf6fb3831aeba5f41e1f434c3> /System/Library/Frameworks/AudioToolbox.framework/libAudioDSP.dylib
0x1bcb21000 - 0x1bcb2cfff AudioDataAnalysis arm64e  <ea1d0da16f2a39cda8fa128a4fe1a6f9> /System/Library/PrivateFrameworks/AudioDataAnalysis.framework/AudioDataAnalysis
0x1bcfdf000 - 0x1bcffffff MediaStream arm64e  <f95f1741148839569b469a3f51ff3fcf> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1bdc9c000 - 0x1bdcc5fff MediaConversionService arm64e  <9b32aa782eb03333be43746b2d9bf1d2> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1be74f000 - 0x1be75afff AppleIDAuthSupport arm64e  <dd29948306213f7a969ad30268933ae0> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1be76a000 - 0x1be783fff LocalAuthentication arm64e  <a99dfb53f24d3af59e419be0d7d32ec8> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1be784000 - 0x1be78afff IOAccelerator arm64e  <a52c34191fec367088c065bfff85305d> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1beb75000 - 0x1beb7ffff CloudPhotoServices arm64e  <6c7820d939b336adab95af21fa2b751c> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1bf03a000 - 0x1bf06bfff libsystem_kernel.dylib arm64e  <b373b97b671e301ca6b7c9f92e17dca0> /usr/lib/system/libsystem_kernel.dylib
0x1bf2af000 - 0x1bf3b9fff ResponseKit arm64e  <d0249ac5431636e0a2fbf025c48bd652> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1bfa3c000 - 0x1bfa49fff FontServices arm64e  <b081806bbcba335480622196cb0c05dd> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1bfbff000 - 0x1bfc0bfff MediaAccessibility arm64e  <babd3b53c8f63359aa5a98e3bfec3f34> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1c020b000 - 0x1c0219fff SetupAssistantSupport arm64e  <4fe091f2a2e23e78bdd243577f8fffbd> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1c15af000 - 0x1c15bffff libdscsym.dylib arm64e  <1fc227cb8893384b8453555702030bb5> /usr/lib/libdscsym.dylib
0x1c15c0000 - 0x1c15d1fff HangTracer arm64e  <148caf8207a83d1a87b0a476cc755f35> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1c1712000 - 0x1c1726fff PersonalAudio arm64e  <a6a5c33f8e063b138ef9dc138de7f4bd> /System/Library/PrivateFrameworks/PersonalAudio.framework/PersonalAudio
0x1c178f000 - 0x1c184dfff SampleAnalysis arm64e  <38e052d99e2032ce84bfa5e7d96c12aa> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1c184e000 - 0x1c187efff PlugInKit arm64e  <1b06f4b4a9c33af8875c49f515e38d78> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1c192e000 - 0x1c192ffff libSystem.B.dylib arm64e  <7d42c8382a04372e9fccdc7a95ef88f4> /usr/lib/libSystem.B.dylib
0x1c1c53000 - 0x1c1cabfff CalendarDaemon arm64e  <85e7dc5c98123be4acf83e8b6da0e6d8> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1c1da3000 - 0x1c1e13fff libarchive.2.dylib arm64e  <d766b73088553bd28ba75b2d926ffbea> /usr/lib/libarchive.2.dylib
0x1c1e14000 - 0x1c1e38fff libtailspin.dylib arm64e  <98055fb0cc033819bc074fb958f6e656> /usr/lib/libtailspin.dylib
0x1c1e39000 - 0x1c22eefff libBNNS.dylib arm64e  <13ec7750493a31bcad11234e3950686d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1c22ef000 - 0x1c2332fff SharedUtils arm64e  <ef436f1da823338a9dce86f9deacc906> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1c2629000 - 0x1c2736fff CoreMediaStream arm64e  <1cf71464e8143528828edfe3fb6bd4e6> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1c294f000 - 0x1c294ffff AVFoundation arm64e  <1dcd460171643d2ca077cc511181b1ec> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1c2950000 - 0x1c2950fff Accelerate arm64e  <b2f811f636d9398b9e2a080408efed72> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1c2951000 - 0x1c2babfff libBLAS.dylib arm64e  <effe16b216183f3aa06ce58527e217f3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1c2bac000 - 0x1c3056fff libLAPACK.dylib arm64e  <6eea1e2a662630508a2e8b690016e7e0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1c3057000 - 0x1c306bfff libLinearAlgebra.dylib arm64e  <64203c23bfb735adb6823d4fd877c7d6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1c306c000 - 0x1c3070fff libQuadrature.dylib arm64e  <ffc2799051a93d79b60ccf610debaaf4> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1c3071000 - 0x1c30d3fff libSparse.dylib arm64e  <7244ae07ad933247aa101be5ba810cd7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1c30d4000 - 0x1c30e5fff libSparseBLAS.dylib arm64e  <2351d0bc0e6b33068c41c4e1be339920> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1c30e6000 - 0x1c313efff libvMisc.dylib arm64e  <d7f6e639d9e33e0eb5c653903f95ebac> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1c313f000 - 0x1c313ffff vecLib arm64e  <6cec3ecd6c1a3f2f97ae525ff2046274> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1c317c000 - 0x1c318dfff AssetsLibrary arm64e  <5ed3398a0a533c789bace00f231f2d88> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1c318e000 - 0x1c32a2fff libEmbeddedSystemAUs.dylib arm64e  <2c69fc4f0e8c332891d11ad8e6c5d5f8> /System/Library/Frameworks/AudioToolbox.framework/libEmbeddedSystemAUs.dylib
0x1c33b9000 - 0x1c3422fff CoreMIDI arm64e  <9411ca7963a431d7835a511ff2e3fcd3> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1c3983000 - 0x1c39acfff GLKit arm64e  <fe523fc12e733ba6ac0dce7bef9ab320> /System/Library/Frameworks/GLKit.framework/GLKit
0x1c3b47000 - 0x1c3c9afff MLCompute arm64e  <238c5cacb32d3a82b319be8226d72517> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1c3cc3000 - 0x1c3cdcfff MetalKit arm64e  <e2a1b550d07a35c68ba7321e53f7531e> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1c3cdd000 - 0x1c3d63fff MPSImage arm64e  <dddc7ccf8dc635b991a65062b979b2a2> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1c3d64000 - 0x1c3d8afff MPSMatrix arm64e  <19c8ce40ea28340eb5e61151589d9a5b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1c3d8b000 - 0x1c3dc9fff MPSNDArray arm64e  <33d53f36a2aa3e39a9cb6f7ac2723edc> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1c3dca000 - 0x1c3e12fff MPSRayIntersector arm64e  <826f7ecb42153845b6c81434e31d05b8> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1c3e13000 - 0x1c3e13fff MetalPerformanceShaders arm64e  <c3e2c89e6c6b35a79c4acc3c0c8f817a> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1c41b0000 - 0x1c41b0fff MobileCoreServices arm64e  <013cab54d0ec301a82151c17a2a44899> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1c4dae000 - 0x1c4db6fff OpenGLES arm64e  <fa5413d895ef3dada5eed752ca32bb1f> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1c4db7000 - 0x1c4db8fff libCVMSPluginSupport.dylib arm64e  <1ca789cb22ac36e1858b241da4c8dcb7> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1c4db9000 - 0x1c4dbffff libCoreFSCache.dylib arm64e  <2411f21fea7c3656a0990c3ae36e88e8> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1c4dc0000 - 0x1c4dc5fff libCoreVMClient.dylib arm64e  <04bd5aee36673163b188185a5d4f02a3> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1c4dc6000 - 0x1c4dcffff libGFXShared.dylib arm64e  <59b568645cb53655a427478652ed8e27> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1c4f8a000 - 0x1c5051fff PDFKit arm64e  <333f6e509f53397e9ad43cd0c255e123> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1c5061000 - 0x1c509ffff QuickLookThumbnailing arm64e  <b5eb6198584d3520aadb6283de3848c7> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1c530c000 - 0x1c533bfff ReplayKit arm64e  <ec793c07951838e8950bf471db348b81> /System/Library/Frameworks/ReplayKit.framework/ReplayKit
0x1c59f3000 - 0x1c59f3fff UIKit arm64e  <d6833c925bf638189ede3bb4092a0919> /System/Library/Frameworks/UIKit.framework/UIKit
0x1c6c06000 - 0x1c6c09fff AFKUser arm64e  <3f4d68e133773dd2ba45c82c59125f30> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1c6cce000 - 0x1c6f55fff ANECompiler arm64e  <e0e71c2d708d3b4898f9fd7ab1522d88> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1c6f56000 - 0x1c6f6afff ANEServices arm64e  <892263bf8972321bafd567ad02a18d1b> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1c6f6f000 - 0x1c702dfff APFS arm64e  <7edafa643f783bd2a5e33a4a561da182> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1c702e000 - 0x1c7034fff ASEProcessing arm64e  <a9a265754d843c00bf34f91021d26ab0> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1c7868000 - 0x1c786dfff AggregateDictionary arm64e  <abc24f86a76c3527b95a42e60388a17c> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1c79fb000 - 0x1c7ad4fff AirPlaySync arm64e  <ca9355ec78d8371f860be5e39afddcd9> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1c7be0000 - 0x1c7bfcfff AlgosScoreFramework arm64e  <5c7187b493873ec2aaec38217477c23e> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1c7d2e000 - 0x1c7ebefff AppC3D arm64e  <cdce6e81f022306c8d5d3b56d537fe08> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
0x1c7ebf000 - 0x1c7ee2fff AppConduit arm64e  <215852febc063104af8826a31fa23dd9> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1c9306000 - 0x1c9315fff AppleFSCompression arm64e  <34598412dc53349892b4f249fa996350> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1c9322000 - 0x1c9346fff AppleIDSSOAuthentication arm64e  <bc67411f8fa53b03a28846dcc538eadb> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1c9347000 - 0x1c938cfff AppleJPEG arm64e  <5fa8e99c227f39879149a9fa5275b651> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1c9419000 - 0x1c942efff AppleNeuralEngine arm64e  <bd55f5d004113928b0ac4f36af21ade7> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1c9438000 - 0x1c945cfff AppleSauce arm64e  <5c480b789dfb3fe5ba264691c1f88a8d> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1c948d000 - 0x1c94abfff AssetCacheServices arm64e  <bfb5e5591ef335ed94129441dd06b23e> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1c9707000 - 0x1c9720fff BiomePubSub arm64e  <14da5dc31c9f3e5dade4c9ee99c6413a> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
0x1c9a13000 - 0x1c9a22fff BluetoothManager arm64e  <42fc1b4fd49831b58684b707a38436da> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1c9ccf000 - 0x1c9cd9fff CMCaptureCore arm64e  <203549efeb873319bfec7749818fb59b> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1c9cf4000 - 0x1c9d03fff CPMS arm64e  <2a9d048276f339afa95beb6ab9557604> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1c9d04000 - 0x1c9d14fff CTCarrierSpace arm64e  <b74ca8ce92dd36d8bac5e8e16434d97f> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1ca02a000 - 0x1ca035fff CaptiveNetwork arm64e  <438ae3c09d773cd6b3fc8172b7e68a28> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1ca15f000 - 0x1ca19cfff Catalyst arm64e  <ba36879a30563795808705004441b331> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1ca1c2000 - 0x1ca1e7fff CellularPlanManager arm64e  <064d6e44e233300da8d4a9b1a6ac0961> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1ca211000 - 0x1ca261fff ChunkingLibrary arm64e  <c9e1f078a60b391bbd5f740c04a1cc10> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1ca76e000 - 0x1ca771fff ConstantClasses arm64e  <b49b804354873a78b69c730673ae8755> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1ca9c6000 - 0x1caabdfff CoreBrightness arm64e  <8779d983de8d39a898b05f1357369de9> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1cab2b000 - 0x1cab3afff CoreDuetDaemonProtocol arm64e  <bb16b5419c7c399c9eedbcd82ce34ac0> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1cab3d000 - 0x1cab3ffff CoreDuetDebugLogging arm64e  <08c1ced4b6d23b6a9206feae90d408a3> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1cab4e000 - 0x1cab60fff CoreEmoji arm64e  <64bb59468c9d3706b0c84f94eda95fa6> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1cb191000 - 0x1cb195fff CoreOptimization arm64e  <f6ac85de966b3768878e503fa35165fa> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1cb196000 - 0x1cb253fff CorePDF arm64e  <2bb11630a5f03c5dbcfd9166e66dfaab> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1cb254000 - 0x1cb25cfff CorePhoneNumbers arm64e  <a099b15f9ea132f190e6436e5686ee79> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1cb25d000 - 0x1cb2b4fff CorePrediction arm64e  <a3c628d7c7f03cadb700386b9be9d11d> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1cbc88000 - 0x1cbcb2fff CoreSVG arm64e  <012037e7a6183373b8097fa32264a57e> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1cbe89000 - 0x1cbe8dfff DAAPKit arm64e  <a1a27fd6060b31c4b4ab32687b3ebca7> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1cbeab000 - 0x1cbeb8fff DCIMServices arm64e  <3fc921f79004309787e67a5c3a556eca> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1cbecf000 - 0x1cbf0dfff DataDetectorsNaturalLanguage arm64e  <cb584b609c633d46a59f121a4fa34b86> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1cbf6b000 - 0x1cbf95fff DeviceIdentity arm64e  <63ef4b0617b138e19c4d4416228b78c4> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1cc22b000 - 0x1cc267fff DocumentManager arm64e  <c54186de7fa437358a07880d6d4e6d64> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1cc268000 - 0x1cc288fff DocumentManagerCore arm64e  <8081d2b7b5643eb3bc63c7f910bca3c6> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1cc313000 - 0x1cc315fff DragUI arm64e  <886c83486d80388ca9ae580581ff1e3d> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1cc345000 - 0x1cc376fff EAP8021X arm64e  <930411b09df032d98d485232739c903e> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1cc3a6000 - 0x1cc3bbfff Engram arm64e  <23de13adf86432c29fe535af865666b0> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1cc4fc000 - 0x1cc503fff ExtensionFoundation arm64e  <bcb6582e13123c20bb8c2ebbfe35e2ee> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1cc697000 - 0x1cc69ffff FSEvents arm64e  <5b7482d4ab2730748e4209d88f096493> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1cc6c4000 - 0x1ccad8fff FaceCore arm64e  <d3dd1092cc2e3b13b40f94917908b67d> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1ccae1000 - 0x1ccae6fff FeatureFlagsSupport arm64e  <6a50b1c3c520398b8c9a5ffb1d326e75> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1ccc92000 - 0x1ccdd4fff libFontParser.dylib arm64e  <bada6320e5c73542bc4d538145eb0761> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1ccdd5000 - 0x1ccdddfff libGSFont.dylib arm64e  <b44455d72bd63b3e81afc92bdc0734e9> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1ccdde000 - 0x1cce1bfff libGSFontCache.dylib arm64e  <8971ad0fd4d53bc59dc550cf1f2b5eeb> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1cce81000 - 0x1cce8efff libhvf.dylib arm64e  <b0db005b204e337988d25394ba7bbed9> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1cdb50000 - 0x1cdb6ffff GenerationalStorage arm64e  <7fd0e4a64ec0376094fa7fc92b8c6ae3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1cdb70000 - 0x1cdb7dfff GraphVisualizer arm64e  <f930b8e63f773432bb078bbc15423bd2> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1cdb95000 - 0x1cdba9fff HAENotifications arm64e  <21377afaaf9a3f278d0f7e21ac71436d> /System/Library/PrivateFrameworks/HAENotifications.framework/HAENotifications
0x1cdbaa000 - 0x1cdbb6fff HID arm64e  <997e4d59f29c3718ae5900013b2f93c5> /System/Library/PrivateFrameworks/HID.framework/HID
0x1ce255000 - 0x1ce2ccfff HomeSharing arm64e  <ae131199fe4d3e4a99300bae440b8981> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1ce65b000 - 0x1ce664fff IOKitten arm64e  <9ad896dbcfe8393cb7a210b951d9089c> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1ce665000 - 0x1ce667fff IOSurfaceAccelerator arm64e  <bf23e49eebad3a078d4df3a00a4c179b> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1ce692000 - 0x1ce699fff IdleTimerServices arm64e  <7c3d6a90eef83db9b955f7bb61ead2f8> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1ce76e000 - 0x1ce77bfff IntentsFoundation arm64e  <20d10bef741433eda59cc0307c653aeb> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1ce796000 - 0x1ce798fff InternationalTextSearch arm64e  <649157ff631a31c8807722a1352f0e07> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1ce799000 - 0x1ce7b6fff IntlPreferences arm64e  <f43bdccb09cd329fa79a1c90d8e69611> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1cea2f000 - 0x1cea36fff LinguisticData arm64e  <312c5d7f90d3320f8aeb09937d161525> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1cec88000 - 0x1cec88fff Marco arm64e  <d722f0f6d47b378fadbd8fdffe495e31> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1cef99000 - 0x1cf269fff MediaLibraryCore arm64e  <48bff21ece913e6bb6976e753487e23d> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1cf26a000 - 0x1cf2f7fff MediaPlatform arm64e  <255aa9ef15f938789f6a77ccc7c0cad0> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1cf6fe000 - 0x1cf7d0fff MetalTools arm64e  <f44fdf455af739738fe6f0c24b8964f2> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1cf861000 - 0x1cf875fff MobileBluetooth arm64e  <db1a48222a053f558a673506a0dacc38> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1cf8f8000 - 0x1cf8fefff MobileSystemServices arm64e  <6ba8ebc692dd38d180f292d4269cd1f1> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1cfd7e000 - 0x1cfd98fff NetworkStatistics arm64e  <617ea04ac1db345aab671fdb52aa7b17> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1cfe76000 - 0x1cfeb7fff OTSVG arm64e  <00d86fb69cf635faab22b8b6fa7cda34> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1d050c000 - 0x1d0538fff Pasteboard arm64e  <fff33f3abde4393ea6fb3f392c166b49> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1d056a000 - 0x1d0576fff PersonaKit arm64e  <3b65e0756d4a3c9183bb04ba1e0e2949> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1d05bd000 - 0x1d05bdfff PhoneNumbers arm64e  <c5a401f23bfa3388877be39bf699e2c5> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1d078d000 - 0x1d07cdfff PhotosImagingFoundation arm64e  <646c4437d21d3a09bd70f5c0a981e2a8> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1d07ce000 - 0x1d081afff PhysicsKit arm64e  <e22fdd58fdd6302b9f66a17729fd3061> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1d08db000 - 0x1d08e6fff PointerUIServices arm64e  <c71697e82d1d30779cab7c42e76e82f1> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1d1dbe000 - 0x1d1dd4fff QuickLookSupport arm64e  <9c2d84c217a53a08b541eda170d7b4aa> /System/Library/PrivateFrameworks/QuickLookSupport.framework/QuickLookSupport
0x1d1dd9000 - 0x1d1de4fff RTCReporting arm64e  <127230431d943bd1aefc3713879938f2> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1d2133000 - 0x1d2145fff RemoteTextInput arm64e  <4957abae6a4e3edd953919ce547c19d7> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1d21e8000 - 0x1d21ecfff RevealCore arm64e  <44dd2868d96c3cbfabf4d6ad1ba5ef49> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1d3cb2000 - 0x1d3cbcfff SignpostCollection arm64e  <0e1a2eef68dd3fe5aeaa1d3759c46362> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1d3cbd000 - 0x1d3cbdfff SignpostMetrics arm64e  <81374dd6fb9c3fb8b64db78fc1ddd1bc> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1d3cbf000 - 0x1d3d00fff SignpostSupport arm64e  <62f534a6875435c5b919c1ff754031a8> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1d4831000 - 0x1d4831fff SoftLinking arm64e  <2039e1311e783ef6b012310bc4de4222> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1d4d32000 - 0x1d4d70fff StreamingZip arm64e  <2aeb745662cf308d9074f0a44f0680fd> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1d4d78000 - 0x1d4d82fff SymptomDiagnosticReporter arm64e  <77f539309c7931b389d6e7d4f9203187> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1d4db4000 - 0x1d4dd0fff SymptomPresentationFeed arm64e  <c82e7df56dcf3eb5aad8769d4d8e0a74> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1d4e10000 - 0x1d4e20fff TCC arm64e  <5eb3e57592fe366093d4ee98625696e1> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1d5727000 - 0x1d57dbfff TextureIO arm64e  <39b83f8ef7013ac99b77e9994ec66025> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1d5a09000 - 0x1d5a10fff URLFormatting arm64e  <359aa25a10a2333290b93cb58f491102> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1d6cff000 - 0x1d6d00fff WatchdogClient arm64e  <d2e9111e5dc83579be818f4c8b9dde30> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1d6fe5000 - 0x1d7721fff libwebrtc.dylib arm64e  <aa754ea82e973bb382d20b9728efcd8e> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1d7cfd000 - 0x1d7d00fff XCTTargetBootstrap arm64e  <81e7f051ea293b32aa8db6b31043c1b1> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1d7d86000 - 0x1d7da5fff caulk arm64e  <b170cf9d18cf360cb6783d1fa8545de0> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1da31a000 - 0x1da31ffff kperf arm64e  <00833ee7334a357397d803fc54a7e96a> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1da320000 - 0x1da328fff kperfdata arm64e  <5fd952a747393327b7a964c9c3bfa46d> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1da329000 - 0x1da33ffff libEDR arm64e  <36804b020c1c3bab8fed5f225920287a> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1da358000 - 0x1da369fff perfdata arm64e  <c692a64284a03d519388df48cde59922> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1da36a000 - 0x1da39bfff vCard arm64e  <ff37bee46fa2395aae9f6b6a1c2b46dd> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1dacca000 - 0x1dad06fff libAWDSupport.dylib arm64e  <efa3c25aae0538d6a1eac37c389ef4f2> /usr/lib/libAWDSupport.dylib
0x1dad07000 - 0x1db0c2fff libAWDSupportFramework.dylib arm64e  <71246919933032508b91042ce99281ce> /usr/lib/libAWDSupportFramework.dylib
0x1db1d6000 - 0x1db244fff libAudioIssueDetector.dylib arm64e  <c419810a5d013a9ca29488c1c49fa283> /usr/lib/libAudioIssueDetector.dylib
0x1db245000 - 0x1db254fff libAudioStatistics.dylib arm64e  <d43dc9402a6c3daa9994658116e61065> /usr/lib/libAudioStatistics.dylib
0x1db3fa000 - 0x1db42dfff libCRFSuite.dylib arm64e  <2ae9058b25ce31468ab4f02615f16d47> /usr/lib/libCRFSuite.dylib
0x1db42e000 - 0x1db42ffff libCTGreenTeaLogger.dylib arm64e  <216ec5a25c553a51abc186cfb4a0b607> /usr/lib/libCTGreenTeaLogger.dylib
0x1db430000 - 0x1db43afff libChineseTokenizer.dylib arm64e  <dd9080fb42473af6a1be351790a0920c> /usr/lib/libChineseTokenizer.dylib
0x1db6e9000 - 0x1db6f0fff libIOAccessoryManager.dylib arm64e  <ae227a34431e30879f8414847998135a> /usr/lib/libIOAccessoryManager.dylib
0x1db6f1000 - 0x1db6f8fff libIOReport.dylib arm64e  <4da98ad919f939e4b6d7db4d956aba56> /usr/lib/libIOReport.dylib
0x1db774000 - 0x1db77bfff libMatch.1.dylib arm64e  <4e79655369f33fbf9e66c74da713576d> /usr/lib/libMatch.1.dylib
0x1db898000 - 0x1db899fff libThaiTokenizer.dylib arm64e  <79a2d59378b13e2d868fc11ab23b4d6c> /usr/lib/libThaiTokenizer.dylib
0x1dbb0f000 - 0x1dbb11fff libapp_launch_measurement.dylib arm64e  <c9185c8b5e8c3dcc87f4d4e8211bfcc9> /usr/lib/libapp_launch_measurement.dylib
0x1dbb12000 - 0x1dbb28fff libapple_nghttp2.dylib arm64e  <aa7df81a69c13795a30386bf158fdd61> /usr/lib/libapple_nghttp2.dylib
0x1dbb29000 - 0x1dbbbafff libate.dylib arm64e  <191d61e4155c3b16a602d59611c1653e> /usr/lib/libate.dylib
0x1dbc4c000 - 0x1dbc5cfff libbsm.0.dylib arm64e  <67259e0c8b2a3ff3a21be629e0f686ac> /usr/lib/libbsm.0.dylib
0x1dbc5d000 - 0x1dbc69fff libbz2.1.0.dylib arm64e  <1ece9cb83cd633c79f28a480997339dc> /usr/lib/libbz2.1.0.dylib
0x1dbc6a000 - 0x1dbc6afff libcharset.1.dylib arm64e  <b28f9d663d723a4198566fd8d095045a> /usr/lib/libcharset.1.dylib
0x1dbc6b000 - 0x1dbc7cfff libcmph.dylib arm64e  <e74d75feb9aa3351ace0b11b0048a262> /usr/lib/libcmph.dylib
0x1dbc7d000 - 0x1dbc94fff libcompression.dylib arm64e  <0f27f2f9302f37978c084cd6cec38432> /usr/lib/libcompression.dylib
0x1dbc95000 - 0x1dbcabfff libcoretls.dylib arm64e  <82b845672c153d149c2e5f7d52829fcc> /usr/lib/libcoretls.dylib
0x1dbcac000 - 0x1dbcadfff libcoretls_cfhelpers.dylib arm64e  <2fc084f0e6cb38ccb3441c80ad1393d7> /usr/lib/libcoretls_cfhelpers.dylib
0x1dbcd1000 - 0x1dbcd8fff libcupolicy.dylib arm64e  <7b39fce102fa3f45892ffdb80f422f4f> /usr/lib/libcupolicy.dylib
0x1dbcd9000 - 0x1dbce0fff libdns_services.dylib arm64e  <4cac384f00653034afbbcf8288b0bfd1> /usr/lib/libdns_services.dylib
0x1dbcff000 - 0x1dbcfffff libenergytrace.dylib arm64e  <cbea27377f49368ab116286ed2f32786> /usr/lib/libenergytrace.dylib
0x1dbd00000 - 0x1dbd19fff libexpat.1.dylib arm64e  <db63f6bc6fda397792284f85556f7818> /usr/lib/libexpat.1.dylib
0x1dbd43000 - 0x1dbd47fff libgermantok.dylib arm64e  <585ec8a40b0e32e88dba53f35a07c70f> /usr/lib/libgermantok.dylib
0x1dbd48000 - 0x1dbd4dfff libheimdal-asn1.dylib arm64e  <ff93656c73c637e083a88a38141ca58c> /usr/lib/libheimdal-asn1.dylib
0x1dbd4e000 - 0x1dbe43fff libiconv.2.dylib arm64e  <03e7a7e4dde835508741edd69270af5f> /usr/lib/libiconv.2.dylib
0x1dbe62000 - 0x1dbe63fff liblangid.dylib arm64e  <1255de5ea4983685bb6973604d732267> /usr/lib/liblangid.dylib
0x1dbe64000 - 0x1dbe6ffff liblockdown.dylib arm64e  <23c07c0fc5093e37bfd7a0e276ea3d98> /usr/lib/liblockdown.dylib
0x1dbe70000 - 0x1dbe88fff liblzma.5.dylib arm64e  <9046f47632bb38bba83c47f76e71d306> /usr/lib/liblzma.5.dylib
0x1dbeb7000 - 0x1dbf0cfff libmecab.dylib arm64e  <1248e78f670a3e80a0dd39837cf782d7> /usr/lib/libmecab.dylib
0x1dc145000 - 0x1dc158fff libmis.dylib arm64e  <b5dd4a39682634028ad0a01b9c3fa881> /usr/lib/libmis.dylib
0x1dc519000 - 0x1dc553fff libpcap.A.dylib arm64e  <989fc8a318983af69064be81e007c38d> /usr/lib/libpcap.A.dylib
0x1dc554000 - 0x1dc562fff libperfcheck.dylib arm64e  <f03916c9f26d3073ad528e15e1a2d7f6> /usr/lib/libperfcheck.dylib
0x1dc56a000 - 0x1dc57cfff libprequelite.dylib arm64e  <1849a2dc033a3aaa8d60fcf4b10b499c> /usr/lib/libprequelite.dylib
0x1dc57d000 - 0x1dc58ffff libprotobuf-lite.dylib arm64e  <53f0e1389e0530bc9131dd569d28ecad> /usr/lib/libprotobuf-lite.dylib
0x1dc590000 - 0x1dc5f2fff libprotobuf.dylib arm64e  <d81292f3b0bb3852b0b247bd8cbc24a6> /usr/lib/libprotobuf.dylib
0x1dc653000 - 0x1dc66bfff libresolv.9.dylib arm64e  <51b76938e8c13d458dd30429749fef91> /usr/lib/libresolv.9.dylib
0x1dc66c000 - 0x1dc66efff libsandbox.1.dylib arm64e  <09633f29d77035d9893f2a49dde7ca48> /usr/lib/libsandbox.1.dylib
0x1dc6b8000 - 0x1dc6bbfff libutil.dylib arm64e  <d77e2807eed438349e164bb8d9e1edcc> /usr/lib/libutil.dylib
0x1dc6bc000 - 0x1dc7a7fff libxml2.2.dylib arm64e  <55df15ddfd323d458d67b61f9d0f9463> /usr/lib/libxml2.2.dylib
0x1dc7ac000 - 0x1dc7d5fff libxslt.1.dylib arm64e  <6e2a5981e8ff37888498d7fd33116bfd> /usr/lib/libxslt.1.dylib
0x1dc7d6000 - 0x1dc7e7fff libz.1.dylib arm64e  <9e35153333503f8bb9b567ec5881c5ef> /usr/lib/libz.1.dylib
0x1dc82c000 - 0x1dc833fff libswiftAVFoundation.dylib arm64e  <357ce744bac53e1981c234c8c88c391a> /usr/lib/swift/libswiftAVFoundation.dylib
0x1dc8cc000 - 0x1dc8d4fff libswiftCoreAudio.dylib arm64e  <78e58bf78d5534518c05a0e700f82207> /usr/lib/swift/libswiftCoreAudio.dylib
0x1dc8da000 - 0x1dc8dafff libswiftCoreFoundation.dylib arm64e  <8eb23177992d3ae683a427f98761d366> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1dc8db000 - 0x1dc8dbfff libswiftCoreImage.dylib arm64e  <2c10a28b00333e82b2cb5dae5ee94b14> /usr/lib/swift/libswiftCoreImage.dylib
0x1dc8df000 - 0x1dc8e8fff libswiftCoreMIDI.dylib arm64e  <ea44cca3ea2a3b82be49f13a49169f2f> /usr/lib/swift/libswiftCoreMIDI.dylib
0x1dc8ed000 - 0x1dc927fff libswiftCoreMedia.dylib arm64e  <73bc3d9ed67b37a08967474be3a185b8> /usr/lib/swift/libswiftCoreMedia.dylib
0x1dc934000 - 0x1dc93dfff libswiftDarwin.dylib arm64e  <53a5784711cb3c77a42392362dfa2dbb> /usr/lib/swift/libswiftDarwin.dylib
0x1dc95c000 - 0x1dc960fff libswiftMetal.dylib arm64e  <e086d5a31279331888f7a487f3d0e96a> /usr/lib/swift/libswiftMetal.dylib
0x1dc9d4000 - 0x1dc9d5fff libswiftQuartzCore.dylib arm64e  <f2ac15a75270309796527276d0e70cd5> /usr/lib/swift/libswiftQuartzCore.dylib
0x1dca29000 - 0x1dca3cfff libswiftsimd.dylib arm64e  <161b6c40fcf13f8cb348d82a3f7e620b> /usr/lib/swift/libswiftsimd.dylib
0x1dca3d000 - 0x1dca42fff libcache.dylib arm64e  <7567dfaa324e306aa66fc2dda88b033b> /usr/lib/system/libcache.dylib
0x1dca43000 - 0x1dca50fff libcommonCrypto.dylib arm64e  <25abfbdfed4431f7a628bd742e231f31> /usr/lib/system/libcommonCrypto.dylib
0x1dca51000 - 0x1dca54fff libcompiler_rt.dylib arm64e  <d33e74102bae373585edeb219279aa43> /usr/lib/system/libcompiler_rt.dylib
0x1dca55000 - 0x1dca5dfff libcopyfile.dylib arm64e  <fae70da0ebad33f293ac496dcbe46fea> /usr/lib/system/libcopyfile.dylib
0x1dcb45000 - 0x1dcb45fff liblaunch.dylib arm64e  <2484228087bc30c68b69739b80187b10> /usr/lib/system/liblaunch.dylib
0x1dcb46000 - 0x1dcb4bfff libmacho.dylib arm64e  <4228e603576133778acefc84d49a4d2f> /usr/lib/system/libmacho.dylib
0x1dcb4c000 - 0x1dcb4efff libremovefile.dylib arm64e  <904853f042653abe93730a3ecdf39678> /usr/lib/system/libremovefile.dylib
0x1dcb4f000 - 0x1dcb50fff libsystem_blocks.dylib arm64e  <f285e167aaa73ab7a092085ca4d1a0c5> /usr/lib/system/libsystem_blocks.dylib
0x1dcb51000 - 0x1dcb53fff libsystem_collections.dylib arm64e  <ea85747378323fa18286e5b16bc56a4e> /usr/lib/system/libsystem_collections.dylib
0x1dcb54000 - 0x1dcb58fff libsystem_configuration.dylib arm64e  <230a7783b6ac3c7fba6991bdfa91823d> /usr/lib/system/libsystem_configuration.dylib
0x1dcb59000 - 0x1dcb6bfff libsystem_containermanager.dylib arm64e  <01ba22f7abce3319860fb76d10a0d6d9> /usr/lib/system/libsystem_containermanager.dylib
0x1dcb6c000 - 0x1dcb6dfff libsystem_coreservices.dylib arm64e  <f83a3238b8303072ab9113587ed26129> /usr/lib/system/libsystem_coreservices.dylib
0x1dcb6e000 - 0x1dcb77fff libsystem_darwin.dylib arm64e  <63485fa6fe9235b783a00554e0194eba> /usr/lib/system/libsystem_darwin.dylib
0x1dcb78000 - 0x1dcb80fff libsystem_dnssd.dylib arm64e  <591126c3ffdb3df8afb3cb5f5c3e79a0> /usr/lib/system/libsystem_dnssd.dylib
0x1dcb81000 - 0x1dcb83fff libsystem_featureflags.dylib arm64e  <a5ca1f870aef3eee876e0c077d7638ee> /usr/lib/system/libsystem_featureflags.dylib
0x1dcb84000 - 0x1dcbb1fff libsystem_m.dylib arm64e  <c9e29eee8f90377795c625952802e491> /usr/lib/system/libsystem_m.dylib
0x1dcbb2000 - 0x1dcbb8fff libsystem_platform.dylib arm64e  <88fa2f54074d32c49f4879eb67e67b7b> /usr/lib/system/libsystem_platform.dylib
0x1dcbb9000 - 0x1dcbb9fff libsystem_product_info_filter.dylib arm64e  <563ac8a6230f305bbada77870fec6204> /usr/lib/system/libsystem_product_info_filter.dylib
0x1dcbba000 - 0x1dcbc5fff libsystem_pthread.dylib arm64e  <c939a2abd3b13b0a83c57ce2f4f339a9> /usr/lib/system/libsystem_pthread.dylib
0x1dcbc6000 - 0x1dcbc9fff libsystem_sandbox.dylib arm64e  <d7ea594452b73c8882c4726694052a14> /usr/lib/system/libsystem_sandbox.dylib
0x1dcbca000 - 0x1dcbd4fff libunwind.dylib arm64e  <d08ac1cff13c37cf93066cc664058cf0> /usr/lib/system/libunwind.dylib
0x1dcbd5000 - 0x1dcc0bfff libxpc.dylib arm64e  <cc048c8e1cad36c88a9615966103bd3a> /usr/lib/system/libxpc.dylib
0x1df053000 - 0x1df065fff SpotlightLinguistics arm64e  <2c2506e0b4133cd5a272174205658e8c> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics

============

Apart from these, attaching a screencast showing the crash.

https://user-images.githubusercontent.com/911879/111862551-0d7a4900-897c-11eb-8473-066d14ff5c1a.mp4

Kindly let me know if this helps and if you need any more details.

Have a nice weekend!

liyamahendra commented 3 years ago

@piyushtank is the information I shared sufficient? Do you need any more details please?

piyushtank commented 3 years ago

@

Assertion failed: (mixedAudioBufferList != NULL), function ExampleAVAudioEngineDeviceRecordCallback, file /Users/mahendraliya/Documents/_dev/2021/james-king/code/video-quickstart-ios/AudioDeviceExample/AudioDevices/ExampleAVAudioEngineDevice.m, line 816.

Can you enable Video SDK logs and share please?

        TwilioVoiceSDK.setLogLevel(.debug)
        TwilioVoiceSDK.setLogLevel(.debug, module: .core)
        TwilioVoiceSDK.setLogLevel(.debug, module: .webRTC)
liyamahendra commented 3 years ago

@piyushtank I'm getting an error saying Cannot find 'TwilioVoiceSDK' in scope. Are you sure you meant TwilioVoiceSDK and not TwilioVideoSDK?

Please let me know.

image
piyushtank commented 3 years ago

@liyamahendra yeah I meant TwilioVideoSDK. Thanks for catching it.

liyamahendra commented 3 years ago

@piyushtank - here are the logs from debug console:

2021-03-23 10:51:25.477416+0530 AudioDeviceExample[2197:685669] This device uses a maximum slice size of 1156 frames.
2021-03-23 10:51:25.498214+0530 AudioDeviceExample[2197:685669] CoreAudio Device selected
2021-03-23 10:51:25.525862+0530 AudioDeviceExample[2197:685669] This device uses a maximum slice size of 3072 frames.
2021-03-23 10:51:25.541392+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call create
2021-03-23 10:51:25.542461+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call create
2021-03-23 10:51:25.542505+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call create
2021-03-23 10:51:25.542527+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](0x1008238c0): Creating peer connection signaling thread ...
2021-03-23 10:51:25.542555+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](0x1008238c0): Creating peer connection networking thread ...
2021-03-23 10:51:25.542601+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](0x1008238c0): Creating peer connection factory ...
2021-03-23 10:51:25.619074+0530 AudioDeviceExample[2197:685902] ERROR:Twilio:[WebRTC](MediaFactoryImpl::worker): (adm_helpers.cc:57): Failed to set stereo playout mode.
2021-03-23 10:51:25.619672+0530 AudioDeviceExample[2197:685902] ERROR:Twilio:[WebRTC](MediaFactoryImpl::worker): (adm_helpers.cc:74): Failed to query stereo recording.
2021-03-23 10:51:25.619717+0530 AudioDeviceExample[2197:685902] ERROR:Twilio:[WebRTC](MediaFactoryImpl::worker): (adm_helpers.cc:77): Failed to set stereo recording mode.
2021-03-23 10:51:25.621380+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](0x1008238c0): Done creating peer connection factory.
2021-03-23 10:51:25.621424+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): Done creating AudioMediaFactoryImpl.
2021-03-23 10:51:25.621498+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call getSignalingThread
2021-03-23 10:51:25.621527+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call getSignalingThread
2021-03-23 10:51:25.621552+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call getWorkerThread
2021-03-23 10:51:25.621577+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call getWorkerThread
2021-03-23 10:51:25.621659+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](0x1008238c0): API Call createVideoTrack
2021-03-23 10:51:25.621689+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](0x1008238c0): Creating a video track ...
2021-03-23 10:51:25.622194+0530 AudioDeviceExample[2197:685669] Video track created.
2021-03-23 10:51:25.623493+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](0x1008238c0): Start capturing with device: <AVCaptureFigVideoDevice: 0x105716e80 [Front Camera][com.apple.avfoundation.avcapturedevice.built-in_video:1]> format: <<TVIVideoFormat: 0x28104ed00> size: {640, 480}, fps: 30, format: 420f>.
2021-03-23 10:51:25.624410+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](0x1008238c0): Prepare for capturing.
2021-03-23 10:51:25.624507+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Platform](0x1008238c0): Starting capture pipeline ...
2021-03-23 10:51:25.628146+0530 AudioDeviceExample[2197:685669] [LayoutConstraints] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. 
    Try this: 
        (1) look at each constraint and try to figure out which you don't expect; 
        (2) find the code that added the unwanted constraint or constraints and fix it. 
(
    "<NSLayoutConstraint:0x283321360 UITextField:0x10560a490.lastBaseline == UILabel:0x10561c3d0.lastBaseline   (active)>",
    "<NSLayoutConstraint:0x2833214a0 V:[UILabel:0x10561c3d0]-(21)-[UIButton:0x105618d90'Connect']   (active)>",
    "<NSLayoutConstraint:0x2833214f0 V:[UITextField:0x10560a490]-(16)-[UIButton:0x105618d90'Connect']   (active)>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x2833214a0 V:[UILabel:0x10561c3d0]-(21)-[UIButton:0x105618d90'Connect']   (active)>

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.
2021-03-23 10:51:25.655154+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Platform](0x16f9bb000): Adding device input: <AVCaptureDeviceInput: 0x2810484a0 [Front Camera]>
2021-03-23 10:51:25.656902+0530 AudioDeviceExample[2197:685886] INFO:Twilio:[Platform](0x16f9bb000): Best device format was: <AVCaptureDeviceFormat: 0x2812197b0 'vide'/'420f'  640x 480, { 1- 60 fps}, HRSI:4032x3024, fov:73.292, max zoom:189.00 (upscales @6.30), ISO:23.0-2208.0, SS:0.000021-1.000000, supports wide color>
2021-03-23 10:51:25.850591+0530 AudioDeviceExample[2197:685886] INFO:Twilio:[Platform](0x16f9bb000): ... Finished starting capture.
2021-03-23 10:51:25.850896+0530 AudioDeviceExample[2197:685886] INFO:Twilio:[Platform](0x16f9bb000): AVCaptureSession started running
2021-03-23 10:51:25.863890+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Platform](0x16f92f000): Video device will start running: <AVCaptureFigVideoDevice: 0x105716e80 [Front Camera][com.apple.avfoundation.avcapturedevice.built-in_video:1]>.
2021-03-23 10:51:27.462309+0530 AudioDeviceExample[2197:685669] [LayoutConstraints] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. 
    Try this: 
        (1) look at each constraint and try to figure out which you don't expect; 
        (2) find the code that added the unwanted constraint or constraints and fix it. 
(
    "<NSLayoutConstraint:0x283343070 UIView:0x106a0c950.width == - 16   (active)>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x283343070 UIView:0x106a0c950.width == - 16   (active)>

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKitCore/UIView.h> may also be helpful.
2021-03-23 10:51:29.054610+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](0x1008238c0): -[TVILocalVideoTrack dealloc]
2021-03-23 10:51:29.054956+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](Thread 0x0x106f08780): ~CoreVideoSource
2021-03-23 10:51:29.055052+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](Thread 0x0x106f08780): -[TVIMediaFactory dealloc]
2021-03-23 10:51:29.055128+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getWorkerThread
2021-03-23 10:51:29.055200+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getWorkerThread
2021-03-23 10:51:29.055305+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): ~MediaFactoryImpl
2021-03-23 10:51:29.055370+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): ~AudioMediaFactoryImpl
2021-03-23 10:51:29.056070+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](Thread 0x0x106f08780): -[TVIVideoTrack dealloc]
2021-03-23 10:51:29.057987+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](Thread 0x0x106f08780): Stop capturing.
2021-03-23 10:51:29.058104+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Platform](Thread 0x0x106f08780): Stopping capture pipeline ...
2021-03-23 10:51:29.058235+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](Thread 0x0x106f08780): -[TVICameraSource dealloc]
2021-03-23 10:51:29.727790+0530 AudioDeviceExample[2197:685669] CoreAudio Device Selected
2021-03-23 10:51:29.728590+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call create
2021-03-23 10:51:29.728713+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call create
2021-03-23 10:51:29.728791+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call create
2021-03-23 10:51:29.728846+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Creating peer connection signaling thread ...
2021-03-23 10:51:29.728921+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Creating peer connection networking thread ...
2021-03-23 10:51:29.729038+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Creating peer connection factory ...
2021-03-23 10:51:29.734498+0530 AudioDeviceExample[2197:686044] ERROR:Twilio:[WebRTC](MediaFactoryImpl::worker): (adm_helpers.cc:57): Failed to set stereo playout mode.
2021-03-23 10:51:29.734660+0530 AudioDeviceExample[2197:686044] ERROR:Twilio:[WebRTC](MediaFactoryImpl::worker): (adm_helpers.cc:77): Failed to set stereo recording mode.
2021-03-23 10:51:29.734807+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Done creating peer connection factory.
2021-03-23 10:51:29.734861+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): Done creating AudioMediaFactoryImpl.
2021-03-23 10:51:29.734913+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call createAudioSource
2021-03-23 10:51:29.734952+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call createAudioSource
2021-03-23 10:51:29.735061+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call createAudioTrack
2021-03-23 10:51:29.735108+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call createAudioTrack
2021-03-23 10:51:29.735144+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Adding audio track ...
2021-03-23 10:51:29.735546+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getSignalingThread
2021-03-23 10:51:29.735596+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getSignalingThread
2021-03-23 10:51:29.735630+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getWorkerThread
2021-03-23 10:51:29.735662+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getWorkerThread
2021-03-23 10:51:29.735704+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call createVideoTrack
2021-03-23 10:51:29.735747+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Creating a video track ...
2021-03-23 10:51:29.735829+0530 AudioDeviceExample[2197:685669] Video track created.
2021-03-23 10:51:29.736180+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](Thread 0x0x106f08780): Start capturing with device: <AVCaptureFigVideoDevice: 0x105716e80 [Front Camera][com.apple.avfoundation.avcapturedevice.built-in_video:1]> format: <<TVIVideoFormat: 0x281071880> size: {640, 480}, fps: 30, format: 420f>.
2021-03-23 10:51:29.736279+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Platform](Thread 0x0x106f08780): Prepare for capturing.
2021-03-23 10:51:29.736344+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Platform](Thread 0x0x106f08780): Starting capture pipeline ...
2021-03-23 10:51:29.737544+0530 AudioDeviceExample[2197:685889] DEBUG:Twilio:[Platform](0x16fb5f000): Adding device input: <AVCaptureDeviceInput: 0x281068420 [Front Camera]>
2021-03-23 10:51:29.738379+0530 AudioDeviceExample[2197:685889] INFO:Twilio:[Platform](0x16fb5f000): Best device format was: <AVCaptureDeviceFormat: 0x2812197b0 'vide'/'420f'  640x 480, { 1- 60 fps}, HRSI:4032x3024, fov:73.292, max zoom:189.00 (upscales @6.30), ISO:23.0-2208.0, SS:0.000021-1.000000, supports wide color>
2021-03-23 10:51:29.739427+0530 AudioDeviceExample[2197:685887] INFO:Twilio:[Platform](0x16fa47000): ... Capture pipeline did stop.
2021-03-23 10:51:29.739495+0530 AudioDeviceExample[2197:685887] DEBUG:Twilio:[Platform](0x16fa47000): Teardown video output pipeline ...
2021-03-23 10:51:29.739817+0530 AudioDeviceExample[2197:685887] DEBUG:Twilio:[Platform](0x16fa47000): Finished video output pipeline teardown.
2021-03-23 10:51:29.739966+0530 AudioDeviceExample[2197:685887] DEBUG:Twilio:[Platform](0x16fa47000): Video pipeline did finish running
2021-03-23 10:51:29.740624+0530 AudioDeviceExample[2197:685887] INFO:Twilio:[Platform](0x16fa47000): AVCaptureSession stopped running
2021-03-23 10:51:29.741385+0530 AudioDeviceExample[2197:685887] DEBUG:Twilio:[Platform](0x16fa47000): -[TVICameraCapturePipeline dealloc]
2021-03-23 10:51:29.968410+0530 AudioDeviceExample[2197:685889] INFO:Twilio:[Platform](0x16fb5f000): ... Finished starting capture.
2021-03-23 10:51:29.968676+0530 AudioDeviceExample[2197:685889] INFO:Twilio:[Platform](0x16fb5f000): AVCaptureSession started running
2021-03-23 10:51:29.969438+0530 AudioDeviceExample[2197:685887] DEBUG:Twilio:[Platform](0x16fa47000): Video device will start running: <AVCaptureFigVideoDevice: 0x105716e80 [Front Camera][com.apple.avfoundation.avcapturedevice.built-in_video:1]>.
2021-03-23 10:51:41.863076+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call connect
2021-03-23 10:51:41.863388+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): Creating dedicated notifier queue ...
2021-03-23 10:51:41.864764+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): RoomSignalingImpl::RoomSignalingImpl()
2021-03-23 10:51:41.865951+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): Opening connection 3068de00-2515-4a2c-ab1d-e0d1a49730ba to wss://global.vss.twilio.com/signaling.
2021-03-23 10:51:41.866458+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getTrackId
2021-03-23 10:51:41.866665+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getTrackId
2021-03-23 10:51:41.867107+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Initialize connection 3068de00-2515-4a2c-ab1d-e0d1a49730ba.
2021-03-23 10:51:41.867499+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call getTrackId
2021-03-23 10:51:41.867621+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call getTrackId
2021-03-23 10:51:41.867793+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call getName
2021-03-23 10:51:41.867904+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call isEnabled
2021-03-23 10:51:41.868128+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getWebRtcTrack
2021-03-23 10:51:41.868131+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call getTrackId
2021-03-23 10:51:41.868333+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call getTrackId
2021-03-23 10:51:41.868468+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call getName
2021-03-23 10:51:41.868583+0530 AudioDeviceExample[2197:685886] DEBUG:Twilio:[Core](0x16f9bb000): API Call isEnabled
2021-03-23 10:51:41.868586+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Building a SSL Context
2021-03-23 10:51:41.868739+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getWebRtcTrack
2021-03-23 10:51:41.869236+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): RoomSignalingImpl: State transition successful: kInit -> kConnecting
2021-03-23 10:51:41.869558+0530 AudioDeviceExample[2197:685669] Connecting to test
2021-03-23 10:51:41.870121+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Loading a custom certificate bundle
2021-03-23 10:51:41.874293+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Adding a cipher list: ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-GCM-SHA384:
2021-03-23 10:51:41.875558+0530 AudioDeviceExample[2197:686110] INFO:Twilio:[Core](0x16f8a3000): Will connect to host global.vss.twilio.com.
2021-03-23 10:51:41.932077+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Resolved host global.vss.twilio.com to the following IPs:
 - 13.127.55.204
 - 13.235.180.115
2021-03-23 10:51:41.932549+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Connecting to 13.127.55.204...
2021-03-23 10:51:41.953800+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Connected to 13.127.55.204.
2021-03-23 10:51:41.954053+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Established a TCP connection with 13.127.55.204.
2021-03-23 10:51:42.003535+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Completed a TLS handshake with 13.127.55.204.
2021-03-23 10:51:42.004850+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Sending WebSocket handshake:
GET /signaling HTTP/1.1

Host: global.vss.twilio.com

Upgrade: websocket

Connection: upgrade

Sec-WebSocket-Key: PnmbWeeTIoSLC6nLsWOReQ==

Sec-WebSocket-Version: 13

Sec-WebSocket-Extensions: permessage-deflate; server_max_window_bits=15; client_max_window_bits=15

User-Agent: Boost.Beast/290 twilio-video-cpp/6.0.2
2021-03-23 10:51:42.030665+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Received WebSocket response:
HTTP/1.1 101 Switching Protocols

Date: Tue, 23 Mar 2021 05:21:42 GMT

Connection: upgrade

Sec-WebSocket-Extensions: permessage-deflate

Sec-WebSocket-Accept: XvCcy9xI9i7IxNchpPojrtjqQ+w=

Upgrade: WebSocket
2021-03-23 10:51:42.031095+0530 AudioDeviceExample[2197:686110] INFO:Twilio:[Core](0x16f8a3000): Completed WebSocket handshake with 13.127.55.204.
2021-03-23 10:51:42.033598+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): AppleReachability::AppleReachability()
2021-03-23 10:51:42.033775+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Sending message (537 bytes):
{"body":{"edge":"roaming","token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0eSI6InR3aWxpby1mcGE7dj0xIn0.eyJqdGkiOiJTS2FhYTk5MzJjMTlmYzI5MTc2Y2E5MGNiNTdjNjc3MzFjLTE2MTY0NzY3ODEiLCJpc3MiOiJTS2FhYTk5MzJjMTlmYzI5MTc2Y2E5MGNiNTdjNjc3MzFjIiwic3ViIjoiQUNjMjA0NDZiMDk5MmI0NWU2YmJkMWQxYjdkMGE0YzU1NCIsImV4cCI6MTYxNjQ4MDM4MSwiZ3JhbnRzIjp7ImlkZW50aXR5IjoibWFoZW5kcmEiLCJ2aWRlbyI6e319fQ.ueTdyheRJZgw5s-NjkLp80gKWW7mumL485EQnHQIgx8","type":"ice","version":2},"id":"3068de00-2515-4a2c-ab1d-e0d1a49730ba\u0000","timeout":5000,"type":"hello","version":2}
2021-03-23 10:51:42.033812+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Creating zeroAddrReachability
2021-03-23 10:51:42.084289+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Received message:
{"negotiatedTimeout":5000,"type":"welcome"}
2021-03-23 10:51:42.084901+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Connection 3068de00-2515-4a2c-ab1d-e0d1a49730ba is ready.
2021-03-23 10:51:42.085265+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): AppleReachability::onConnectionEstablished, socket_fd = 15
2021-03-23 10:51:42.130252+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): AppleReachability started listening on address pair on 15 socket
2021-03-23 10:51:42.810097+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Received message:
{"body":{"version":1,"type":"iced","participants":[],"ice_servers":[{"urls":"turn:mumbai.turn.twilio.com:3478?transport=udp","username":"cc23ee2cc24274786e9bbfd60f9089cd070c7f96b678b525197bdc1e1614ceb9","credential":"Yya1TfP6KN8YFEj+z0+pXlYjXNixrLFQM07AXqUf9pg="},{"urls":"turns:mumbai.turn.twilio.com:443?transport=tcp","username":"cc23ee2cc24274786e9bbfd60f9089cd070c7f96b678b525197bdc1e1614ceb9","credential":"Yya1TfP6KN8YFEj+z0+pXlYjXNixrLFQM07AXqUf9pg="}]},"type":"msg"}
2021-03-23 10:51:42.811418+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): API Call getSignalingThread
2021-03-23 10:51:42.811787+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): API Call getSignalingThread
2021-03-23 10:51:42.812027+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): API Call getNetworkingThread
2021-03-23 10:51:42.812242+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Starting the Network Manager
2021-03-23 10:51:42.812688+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): API Call RTCIceServers
2021-03-23 10:51:42.812971+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): API Call RTCIceServer
2021-03-23 10:51:42.813184+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): API Call RTCIceServer
2021-03-23 10:51:42.813395+0530 AudioDeviceExample[2197:686045] INFO:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): Creating peer connection ...
2021-03-23 10:51:42.821788+0530 AudioDeviceExample[2197:686045] INFO:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): Adding local stream to peer connection ...
2021-03-23 10:51:42.822419+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Open -> Updating. Process an event
2021-03-23 10:51:42.822602+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): Create local offer: C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:42.823134+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (used_ids.h:55): Duplicate id found. Reassigning from 104 to 127
2021-03-23 10:51:42.823274+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (used_ids.h:55): Duplicate id found. Reassigning from 106 to 125
2021-03-23 10:51:42.823435+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (used_ids.h:55): Duplicate id found. Reassigning from 103 to 124
2021-03-23 10:51:42.823556+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (used_ids.h:55): Duplicate id found. Reassigning from 105 to 123
2021-03-23 10:51:42.823696+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (used_ids.h:55): Duplicate id found. Reassigning from 1 to 14
2021-03-23 10:51:42.823815+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (used_ids.h:55): Duplicate id found. Reassigning from 3 to 13
2021-03-23 10:51:42.824883+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): onCreateSessionLocalDescription C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:42.845316+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): SDP Utils: New SSRC group 492175587 2256288655 --- Original SSRC group 492175587 2256288655
2021-03-23 10:51:42.846072+0530 AudioDeviceExample[2197:685885] INFO:Twilio:[Core](0x16f92f000): Setting use dtx
2021-03-23 10:51:42.847003+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): PeerConnection state: Updating -> Waiting
2021-03-23 10:51:42.847796+0530 AudioDeviceExample[2197:685885] INFO:Twilio:[Core](0x16f92f000): Removing use dtx from fmtp tine
2021-03-23 10:51:42.847931+0530 AudioDeviceExample[2197:685885] INFO:Twilio:[Core](0x16f92f000): Local offer is ready for C594021B0AbCa8CfDFC5A519BCEE0cdB.
2021-03-23 10:51:42.847990+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Queue Description: 1 for PeerConnection: C594021B0AbCa8CfDFC5A519BCEE0cdB.
2021-03-23 10:51:42.848480+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Sending message (5294 bytes):
{"body":{"format":"planb","ice_servers":"success","media_signaling":null,"name":"test","participant":{"revision":1,"tracks":[{"enabled":true,"id":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","kind":"audio","name":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","priority":"standard"},{"enabled":true,"id":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","kind":"video","name":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","priority":"standard"}]},"peer_connections":[{"description":{"revision":1,"sdp":"v=0\r\no=- 1503762801008141224 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS d213F4CB8198f1Ea21aA3a9Fc4DFdA62\r\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:7t5t\r\na=ice-pwd:OXLPdVJk4eyfM2t/Pw7GF1I8\r\na=ice-options:trickle\r\na=fingerprint:sha-256 23:13:DD:B5:6F:73:94:1B:87:12:34:45:9F:F9:71:86:27:F4:C6:7B:2C:9E:67:5F:C7:C7:B2:EA:3B:EE:EC:14\r\na=setup:actpass\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:9 G722/8000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:110 telephone-event/48000\r\na=rtpmap:112 telephone-event/32000\r\na=rtpmap:113 telephone-event/16000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:838097548 cname:8dNgNsqxUYyAolrC\r\na=ssrc:838097548 msid:d213F4CB8198f1Ea21aA3a9Fc4DFdA62 77d2DeFAc0F51Efe57Ba18bdfbeD2b3e\r\na=ssrc:838097548 mslabel:d213F4CB8198f1Ea21aA3a9Fc4DFdA62\r\na=ssrc:838097548 label:77d2DeFAc0F51Efe57Ba18bdfbeD2b3e\r\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 98 99 100 101 102 124 127 123 125\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:7t5t\r\na=ice-pwd:OXLPdVJk4eyfM2t/Pw7GF1I8\r\na=ice-options:trickle\r\na=fingerprint:sha-256 23:13:DD:B5:6F:73:94:1B:87:12:34:45:9F:F9:71:86:27:F4:C6:7B:2C:9E:67:5F:C7:C7:B2:EA:3B:EE:EC:14\r\na=setup:actpass\r\na=mid:video\r\na=extmap:14 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:13 urn:3gpp:video-orientation\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\r\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\r\na=extmap:8 http://tools.ietf.org/html/draft-ietf-avtext-framemarking-07\r\na=extmap:9 http://www.webrtc.org/experiments/rtp-hdrext/color-space\r\na=sendrecv\r\na=rtcp-mux\r\na=rtcp-rsize\r\na=rtpmap:96 VP8/90000\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtpmap:97 rtx/90000\r\na=fmtp:97 apt=96\r\na=rtpmap:98 VP9/90000\r\na=rtcp-fb:98 goog-remb\r\na=rtcp-fb:98 transport-cc\r\na=rtcp-fb:98 ccm fir\r\na=rtcp-fb:98 nack\r\na=rtcp-fb:98 nack pli\r\na=fmtp:98 profile-id=0\r\na=rtpmap:99 rtx/90000\r\na=fmtp:99 apt=98\r\na=rtpmap:100 H264/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=fmtp:100 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=640c1f\r\na=rtpmap:101 rtx/90000\r\na=fmtp:101 apt=100\r\na=rtpmap:102 H264/90000\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 transport-cc\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\r\na=rtpmap:124 rtx/90000\r\na=fmtp:124 apt=102\r\na=rtpmap:127 red/90000\r\na=rtpmap:123 rtx/90000\r\na=fmtp:123 apt=127\r\na=rtpmap:125 ulpfec/90000\r\na=ssrc-group:FID 492175587 2256288655\r\na=ssrc:492175587 cname:8dNgNsqxUYyAolrC\r\na=ssrc:492175587 msid:d213F4CB8198f1Ea21aA3a9Fc4DFdA62 F06fBfa2BFA4a3EB3D09140D97bFbBb9\r\na=ssrc:492175587 mslabel:d213F4CB8198f1Ea21aA3a9Fc4DFdA62\r\na=ssrc:492175587 label:F06fBfa2BFA4a3EB3D09140D97bFbBb9\r\na=ssrc:2256288655 cname:8dNgNsqxUYyAolrC\r\na=ssrc:2256288655 msid:d213F4CB8198f1Ea21aA3a9Fc4DFdA62 F06fBfa2BFA4a3EB3D09140D97bFbBb9\r\na=ssrc:2256288655 mslabel:d213F4CB8198f1Ea21aA3a9Fc4DFdA62\r\na=ssrc:2256288655 label:F06fBfa2BFA4a3EB3D09140D97bFbBb9\r\n","type":"offer"},"id":"C594021B0AbCa8CfDFC5A519BCEE0cdB"}],"publisher":{"hw_device_arch":"arm64","hw_device_manufacturer":"Apple","hw_device_model":"iPhone13,2","name":"twilio-video-ios","platform_name":"iOS","platform_version":"14.4.1","sdk_version":"4.3.0"},"token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0eSI6InR3aWxpby1mcGE7dj0xIn0.eyJqdGkiOiJTS2FhYTk5MzJjMTlmYzI5MTc2Y2E5MGNiNTdjNjc3MzFjLTE2MTY0NzY3ODEiLCJpc3MiOiJTS2FhYTk5MzJjMTlmYzI5MTc2Y2E5MGNiNTdjNjc3MzFjIiwic3ViIjoiQUNjMjA0NDZiMDk5MmI0NWU2YmJkMWQxYjdkMGE0YzU1NCIsImV4cCI6MTYxNjQ4MDM4MSwiZ3JhbnRzIjp7ImlkZW50aXR5IjoibWFoZW5kcmEiLCJ2aWRlbyI6e319fQ.ueTdyheRJZgw5s-NjkLp80gKWW7mumL485EQnHQIgx8","type":"connect","version":2},"type":"msg"}
2021-03-23 10:51:43.457259+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Received message:
{"body":{"version":2,"type":"connected","peer_connections":[{"id":"C594021B0AbCa8CfDFC5A519BCEE0cdB","description":{"type":"answer","sdp":"v=0\r\no=- 3825465703 3825465703 IN IP4 0.0.0.0\r\ns=VMc985c82be70812537a5ab75cb64f0f1c\r\nt=0 0\r\na=ice-lite\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video\r\nm=audio 12864 UDP/TLS/RTP/SAVPF 111 0\r\nc=IN IP4 3.235.111.251\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=rtcp:12864 IN IP4 3.235.111.251\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:0 PCMU/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=candidate:2 1 UDP 2013266430 3.235.111.251 12864 typ host\r\na=candidate:2 2 UDP 2013266429 3.235.111.251 11036 typ host\r\na=rtcp-mux\r\na=setup:active\r\na=mid:audio\r\na=recvonly\r\na=ice-ufrag:lNjg\r\na=ice-pwd:2icop9X40X1xbEt4BPsatL\r\na=fingerprint:sha-256 E3:43:2A:B5:A2:BF:33:FB:D3:BC:E8:B5:9E:35:2C:9D:39:C6:31:B8:2B:C0:74:D0:80:C4:E2:2A:46:F2:DB:73\r\nm=video 12864 UDP/TLS/RTP/SAVPF 96 102 127 125\r\nc=IN IP4 3.235.111.251\r\na=rtcp-rsize\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=rtcp:12864 IN IP4 3.235.111.251\r\na=rtpmap:96 VP8/90000\r\na=rtpmap:102 H264/90000\r\na=rtpmap:127 red/90000\r\na=rtpmap:125 ulpfec/90000\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\r\na=candidate:2 1 UDP 2013266430 3.235.111.251 12864 typ host\r\na=candidate:2 2 UDP 2013266429 3.235.111.251 11036 typ host\r\na=rtcp-mux\r\na=setup:active\r\na=mid:video\r\na=recvonly\r\na=ice-ufrag:lNjg\r\na=ice-pwd:2icop9X40X1xbEt4BPsatL\r\na=fingerprint:sha-256 E3:43:2A:B5:A2:BF:33:FB:D3:BC:E8:B5:9E:35:2C:9D:39:C6:31:B8:2B:C0:74:D0:80:C4:E2:2A:46:F2:DB:73\r\n","revision":1}}],"sid":"RM263a2632774bdbedc30b62949e7525df","name":"test","participant":{"sid":"PA0d7fc34d7a392a25cf0d15cba750cbaa","identity":"mahendra","tracks":[{"kind":"video","priority":"standard","id":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","enabled":true,"sid":"MTf24710e2462bd4313f10cf178e340845","name":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","state":"ready"},{"kind":"audio","priority":"standard","id":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","enabled":true,"sid":"MT339263e30c5b76ec4c8d3d0ead567799","name":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","state":"ready"}],"revision":1,"state":"connected"},"participants":[{"sid":"PA065bb3c80020598b5ad02575a8b588a5","identity":"hemanshu","tracks":[{"kind":"audio","priority":"standard","id":"f7bE2bb8D6aF05AcFc4eECC25FeCe757","enabled":true,"sid":"MTba40c205a696fff84fcb8492ccbe3112","name":"f7bE2bb8D6aF05AcFc4eECC25FeCe757","state":"ready"}],"revision":1,"state":"connected"}],"recording":{"enabled":false,"revision":1,"is_recording":false},"subscribed":{"revision":0,"tracks":[]},"published":{"revision":1,"tracks":[{"kind":"video","priority":"standard","id":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","enabled":true,"sid":"MTf24710e2462bd4313f10cf178e340845","name":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","state":"ready"},{"kind":"audio","priority":"standard","id":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","enabled":true,"sid":"MT339263e30c5b76ec4c8d3d0ead567799","name":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","state":"ready"}]},"session":"c20446b0992b45e6bbd1d1b7d0a4c554263a2632774bdbedc30b62949e7525df0d7fc34d7a392a25cf0d15cba750cbaa0cd32c842657766c7cbe282a06316be2","options":{"media_region":"us1","signaling_region":"in1","session_timeout":30,"signaling_edge":"mumbai"}},"type":"msg"}
2021-03-23 10:51:43.460798+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Received message:
{"body":{"version":2,"type":"update","peer_connections":[{"id":"C594021B0AbCa8CfDFC5A519BCEE0cdB","description":{"type":"offer","sdp":"v=0\r\no=- 3825465703 3825465704 IN IP4 0.0.0.0\r\ns=VMc985c82be70812537a5ab75cb64f0f1c\r\nc=IN IP4 0.0.0.0\r\nt=0 0\r\na=ice-lite\r\na=msid-semantic: WMS *\r\na=group:BUNDLE audio video\r\nm=audio 1 UDP/TLS/RTP/SAVPF 111 0\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:0 PCMU/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=candidate:2 1 UDP 2013266430 3.235.111.251 12864 typ host\r\na=candidate:2 2 UDP 2013266429 3.235.111.251 11036 typ host\r\na=rtcp-mux\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:lNjg\r\na=ice-pwd:2icop9X40X1xbEt4BPsatL\r\na=fingerprint:sha-256 E3:43:2A:B5:A2:BF:33:FB:D3:BC:E8:B5:9E:35:2C:9D:39:C6:31:B8:2B:C0:74:D0:80:C4:E2:2A:46:F2:DB:73\r\na=ssrc:4016235777 cname:user796102329@host-8f151fff\r\na=ssrc:4016235777 msid:default 8ab9aefe-84d5-44f2-93ea-f202249e47f9\r\nm=video 1 UDP/TLS/RTP/SAVPF 96 102 127 125\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:96 VP8/90000\r\na=rtpmap:102 H264/90000\r\na=rtpmap:127 red/90000\r\na=rtpmap:125 ulpfec/90000\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-rsize\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 ccm fir\r\na=candidate:2 1 UDP 2013266430 3.235.111.251 12864 typ host\r\na=candidate:2 2 UDP 2013266429 3.235.111.251 11036 typ host\r\na=rtcp-mux\r\na=setup:actpass\r\na=mid:video\r\na=recvonly\r\na=ice-ufrag:lNjg\r\na=ice-pwd:2icop9X40X1xbEt4BPsatL\r\na=fingerprint:sha-256 E3:43:2A:B5:A2:BF:33:FB:D3:BC:E8:B5:9E:35:2C:9D:39:C6:31:B8:2B:C0:74:D0:80:C4:E2:2A:46:F2:DB:73\r\n","revision":2}}],"sid":"RM263a2632774bdbedc30b62949e7525df","name":"test","participant":{"sid":"PA0d7fc34d7a392a25cf0d15cba750cbaa","identity":"mahendra","tracks":[{"kind":"video","priority":"standard","id":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","enabled":true,"sid":"MTf24710e2462bd4313f10cf178e340845","name":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","state":"ready"},{"kind":"audio","priority":"standard","id":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","enabled":true,"sid":"MT339263e30c5b76ec4c8d3d0ead567799","name":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","state":"ready"}],"revision":1,"state":"connected"},"participants":[{"sid":"PA065bb3c80020598b5ad02575a8b588a5","identity":"hemanshu","tracks":[{"kind":"audio","priority":"standard","id":"f7bE2bb8D6aF05AcFc4eECC25FeCe757","enabled":true,"sid":"MTba40c205a696fff84fcb8492ccbe3112","name":"f7bE2bb8D6aF05AcFc4eECC25FeCe757","state":"ready"}],"revision":1,"state":"connected"}],"recording":{"enabled":false,"revision":1,"is_recording":false},"subscribed":{"revision":1,"tracks":[{"id":"8ab9aefe-84d5-44f2-93ea-f202249e47f9","sid":"MTba40c205a696fff84fcb8492ccbe3112"}]},"published":{"revision":1,"tracks":[{"kind":"video","priority":"standard","id":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","enabled":true,"sid":"MTf24710e2462bd4313f10cf178e340845","name":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","state":"ready"},{"kind":"audio","priority":"standard","id":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","enabled":true,"sid":"MT339263e30c5b76ec4c8d3d0ead567799","name":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","state":"ready"}]}},"type":"msg"}
2021-03-23 10:51:43.460878+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): onConnectedOrSynced
2021-03-23 10:51:43.461558+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): RoomSignalingImpl: State transition successful: kConnecting -> kConnected
2021-03-23 10:51:43.462317+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): PeerConnection state: Waiting -> Updating
2021-03-23 10:51:43.462344+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call setTracks
2021-03-23 10:51:43.462733+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): RemoteParticipantImpl::RemoteParticipantImpl: hemanshu, sid: PA065bb3c80020598b5ad02575a8b588a5
2021-03-23 10:51:43.463048+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Remote participant hemanshu added an audio track with sid: MTba40c205a696fff84fcb8492ccbe3112, name: f7bE2bb8D6aF05AcFc4eECC25FeCe757, enabled: 1, priority: 1
2021-03-23 10:51:43.463238+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getRemoteParticipants
2021-03-23 10:51:43.463834+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call setObserver
2021-03-23 10:51:43.464029+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getRemoteAudioTracks
2021-03-23 10:51:43.465747+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getRemoteVideoTracks
2021-03-23 10:51:43.467414+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getRemoteDataTracks
2021-03-23 10:51:43.467537+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getLocalParticipant
2021-03-23 10:51:43.467939+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call setObserver
2021-03-23 10:51:43.468054+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getLocalAudioTracks
2021-03-23 10:51:43.468188+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getLocalTrack
2021-03-23 10:51:43.468361+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getLocalDataTracks
2021-03-23 10:51:43.468610+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getLocalVideoTracks
2021-03-23 10:51:43.469353+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getLocalTrack
2021-03-23 10:51:43.467205+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Process remote answer at revision 1.
2021-03-23 10:51:43.470351+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Process remote sdp for: C594021B0AbCa8CfDFC5A519BCEE0cdB revision is: 1.
2021-03-23 10:51:43.470850+0530 AudioDeviceExample[2197:685885] INFO:Twilio:[Core](0x16f92f000): Setting use dtx
2021-03-23 10:51:43.471838+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Preferred video codec is VP8
2021-03-23 10:51:43.472014+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): Applying local description to: C594021B0AbCa8CfDFC5A519BCEE0cdB rev: 1
2021-03-23 10:51:43.474749+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getName
2021-03-23 10:51:43.474943+0530 AudioDeviceExample[2197:685669] Connected to room test as mahendra.
2021-03-23 10:51:43.476617+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): onSetSessionLocalDescription: C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:43.476741+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Starting ICE Gathering timer...
2021-03-23 10:51:43.476909+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): void twilio::media::NetworkMonitor::onNetworksChanged()
2021-03-23 10:51:43.477032+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: en0, Cost: 10, Type : Wifi, Preference : 127, Active : 1, id: 1, prefix : 192.168.1.x and key : en0%192.168.1.x/24
2021-03-23 10:51:43.477186+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: en2, Cost: 10, Type : Wifi, Preference : 126, Active : 1, id: 2, prefix : 169.254.0.x and key : en2%169.254.0.x/16
2021-03-23 10:51:43.477196+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): Applying remote description to: C594021B0AbCa8CfDFC5A519BCEE0cdB rev: 1
2021-03-23 10:51:43.477323+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: pdp_ip0, Cost: 900, Type : Cellular, Preference : 125, Active : 1, id: 13, prefix : 2401:4900:53fa:dd4c:: and key : pdp_ip0%2401:4900:53fa:dd4c::/64
2021-03-23 10:51:43.477457+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: pdp_ip1, Cost: 900, Type : Cellular, Preference : 124, Active : 1, id: 14, prefix : 2401:4900:5480:1c32:: and key : pdp_ip1%2401:4900:5480:1c32::/64
2021-03-23 10:51:43.477570+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: pdp_ip0, Cost: 900, Type : Cellular, Preference : 123, Active : 1, id: 12, prefix : 100.85.165.x and key : pdp_ip0%100.85.165.x/32
2021-03-23 10:51:43.477780+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: ipsec4, Cost: 50, Type : VPN, Preference : 122, Active : 1, id: 6, prefix : fd74:6572:6d6e:7573:c:9807:c05:193a and key : ipsec4%fd74:6572:6d6e:7573:c:9807:c05:193a/128
2021-03-23 10:51:43.477982+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: ipsec4, Cost: 50, Type : VPN, Preference : 121, Active : 1, id: 7, prefix : fd74:6572:6d6e:7573:d:9807:c05:193a and key : ipsec4%fd74:6572:6d6e:7573:d:9807:c05:193a/128
2021-03-23 10:51:43.478100+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: ipsec5, Cost: 50, Type : VPN, Preference : 120, Active : 1, id: 9, prefix : fd74:6572:6d6e:7573:: and key : ipsec5%fd74:6572:6d6e:7573::/64
2021-03-23 10:51:43.478224+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: ipsec0, Cost: 50, Type : VPN, Preference : 119, Active : 1, id: 3, prefix : 2401:4900:5480:1c32:: and key : ipsec0%2401:4900:5480:1c32::/64
2021-03-23 10:51:43.478344+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: ipsec2, Cost: 50, Type : VPN, Preference : 118, Active : 1, id: 4, prefix : 2401:4900:5480:1c32:: and key : ipsec2%2401:4900:5480:1c32::/64
2021-03-23 10:51:43.478463+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: ipsec3, Cost: 50, Type : VPN, Preference : 117, Active : 1, id: 5, prefix : 2401:4900:5480:1c32:: and key : ipsec3%2401:4900:5480:1c32::/64
2021-03-23 10:51:43.478563+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: ipsec5, Cost: 50, Type : VPN, Preference : 116, Active : 1, id: 8, prefix : 10.254.254.x and key : ipsec5%10.254.254.x/32
2021-03-23 10:51:43.478650+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: lo0, Cost: 0, Type : Loopback, Preference : 115, Active : 1, id: 11, prefix : ::1 and key : lo0%::1/128
2021-03-23 10:51:43.478736+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): Network Name: lo0, Cost: 0, Type : Loopback, Preference : 114, Active : 1, id: 10, prefix : 127.0.0.x and key : lo0%127.0.0.x/8
2021-03-23 10:51:43.478815+0530 AudioDeviceExample[2197:686046] DEBUG:Twilio:[Core](MediaFactoryImpl::networking 0x0x283b0b020): New preferred network reported by manager: key: en0%192.168.1.x/24, type: Wifi, cost: 10, id: 1
2021-03-23 10:51:43.482102+0530 AudioDeviceExample[2197:686044] WARN:Twilio:[WebRTC](MediaFactoryImpl::worker): (webrtc_video_engine.cc:2096): RTX SSRCs configured but there's no configured RTX payload type. Ignoring.
2021-03-23 10:51:43.482907+0530 AudioDeviceExample[2197:686044] WARN:Twilio:[WebRTC](MediaFactoryImpl::worker): (balanced_degradation_settings.cc:96): Unsupported size, value ignored.
2021-03-23 10:51:43.484405+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (peer_connection.cc:6497): Candidate has an unknown component: Cand[:2:2:udp:2013266429:3.235.111.x:11036:local::0:lNjg:2icop9X40X1xbEt4BPsatL:0:0:0] for mid audio
2021-03-23 10:51:43.484539+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (jsep_transport_controller.cc:342): Not adding candidate because the JsepTransport doesn't exist. Ignore it.
2021-03-23 10:51:43.484835+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (jsep_transport_controller.cc:342): Not adding candidate because the JsepTransport doesn't exist. Ignore it.
2021-03-23 10:51:43.485183+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Done processing onSetSessionLocalDescription: C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:43.485349+0530 AudioDeviceExample[2197:685885] INFO:Twilio:[Core](0x16f92f000): Ice Gathering for C594021B0AbCa8CfDFC5A519BCEE0cdB.
2021-03-23 10:51:43.485575+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): ICE connection state transitioned from New -> Checking
2021-03-23 10:51:43.485679+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): PeerConnection C594021B0AbCa8CfDFC5A519BCEE0cdB Ice connection state transitioned from New -> Checking
2021-03-23 10:51:43.485766+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Room Media state changed to Checking
2021-03-23 10:51:43.485844+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Gathered a candidate = udp 2401:4900:53fa:dd4c:15e5:ca6d:d335:8eed 59421 typ local generation 0 network-id 13
2021-03-23 10:51:43.485912+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Gathered a candidate = udp 2401:4900:5480:1c32:595b:ed2f:e3c9:77fd 63966 typ local generation 0 network-id 14
2021-03-23 10:51:43.485982+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): onSetSessionRemoteDescription: C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:43.486191+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Queue ICE candidate revision: 1 for PeerConnection: C594021B0AbCa8CfDFC5A519BCEE0cdB.
2021-03-23 10:51:43.486294+0530 AudioDeviceExample[2197:685885] INFO:Twilio:[Core](0x16f92f000): Publish ICE candidate revision: 1 for PeerConnection: C594021B0AbCa8CfDFC5A519BCEE0cdB.
2021-03-23 10:51:43.486493+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Process remote offer.
2021-03-23 10:51:43.486575+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Process remote sdp for: C594021B0AbCa8CfDFC5A519BCEE0cdB revision is: 2.
2021-03-23 10:51:43.486696+0530 AudioDeviceExample[2197:686110] DEBUG:Twilio:[Core](0x16f8a3000): Sending message (635 bytes):
{"body":{"participant":{"revision":1,"tracks":[{"enabled":true,"id":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","kind":"audio","name":"77d2DeFAc0F51Efe57Ba18bdfbeD2b3e","priority":"standard"},{"enabled":true,"id":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","kind":"video","name":"F06fBfa2BFA4a3EB3D09140D97bFbBb9","priority":"standard"}]},"peer_connections":[{"ice":{"candidates":[],"complete":true,"revision":1,"ufrag":"7t5t"},"id":"C594021B0AbCa8CfDFC5A519BCEE0cdB"}],"session":"c20446b0992b45e6bbd1d1b7d0a4c554263a2632774bdbedc30b62949e7525df0d7fc34d7a392a25cf0d15cba750cbaa0cd32c842657766c7cbe282a06316be2","type":"update","version":2},"type":"msg"}
2021-03-23 10:51:43.486804+0530 AudioDeviceExample[2197:685885] INFO:Twilio:[Core](0x16f92f000): Setting use dtx
2021-03-23 10:51:43.487311+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): Applying remote description to: C594021B0AbCa8CfDFC5A519BCEE0cdB rev: 2
2021-03-23 10:51:43.497839+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (stun_port.cc:450): Port[9031400:audio:1:0:local:Net[ipsec5:fd74:6572:6d6e:x:x:x:x:x/64:VPN/Unknown:id=9]]: StunPort: stun host lookup received error 0
2021-03-23 10:51:43.497934+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.497998+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (stun_port.cc:450): Port[b831200:audio:1:0:local:Net[pdp_ip0:2401:4900:53fa:x:x:x:x:x/64:Cellular:id=13]]: StunPort: stun host lookup received error 0
2021-03-23 10:51:43.498053+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.498165+0530 AudioDeviceExample[2197:686046] ERROR:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (stun_port.cc:596): sendto : [0x00000041] No route to host
2021-03-23 10:51:43.498213+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.498265+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (stun_port.cc:450): Port[9030e00:audio:1:0:local:Net[ipsec4:fd74:6572:6d6e:x:x:x:x:x/128:VPN/Unknown:id=7]]: StunPort: stun host lookup received error 0
2021-03-23 10:51:43.498788+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.498799+0530 AudioDeviceExample[2197:685887] DEBUG:Twilio:[Core](0x16fa47000): Creating a builtin video encoder for VP8
2021-03-23 10:51:43.498842+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (stun_port.cc:450): Port[9030800:audio:1:0:local:Net[ipsec4:fd74:6572:6d6e:x:x:x:x:x/128:VPN/Unknown:id=6]]: StunPort: stun host lookup received error 0
2021-03-23 10:51:43.499283+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.499697+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.499863+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.499982+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.500087+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (stun_port.cc:450): Port[9027200:audio:1:0:local:Net[pdp_ip1:2401:4900:5480:x:x:x:x:x/64:Cellular:id=14]]: StunPort: stun host lookup received error 0
2021-03-23 10:51:43.500128+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.531030+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.532681+0530 AudioDeviceExample[2197:686046] ERROR:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (stun_port.cc:308): Port[b82fa00:audio:1:0:local:Net[en2:169.254.0.x/16:Wifi:id=2]]: UDP send of 96 bytes failed with error 65
2021-03-23 10:51:43.532776+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (connection.cc:445): Conn[b835e00:audio:Net[en2:169.254.0.x/16:Wifi:id=2]:bIc6MKrr:1:0:local:udp:169.254.205.x:50572->fefE5pGJ:1:2013266430:local:udp:3.235.111.x:12864|C--W|-|0|0|8646913479229062655|-]: Failed to send STUN ping  err=-1 id=6a2f72765950664370596b75
2021-03-23 10:51:43.534172+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[589d400:audio:1:0:relay:Net[pdp_ip1:2401:4900:5480:x:x:x:x:x/64:Cellular:id=14]]: TURN host lookup received error 0
2021-03-23 10:51:43.534271+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.535112+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.536277+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[58a1600:audio:1:0:relay:Net[ipsec4:fd74:6572:6d6e:x:x:x:x:x/128:VPN/Unknown:id=7]]: TURN host lookup received error 0
2021-03-23 10:51:43.536365+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.537480+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[589cc00:audio:1:0:relay:Net[pdp_ip0:2401:4900:53fa:x:x:x:x:x/64:Cellular:id=13]]: TURN host lookup received error 0
2021-03-23 10:51:43.537585+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.538929+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.539647+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[58a1e00:audio:1:0:relay:Net[ipsec5:fd74:6572:6d6e:x:x:x:x:x/64:VPN/Unknown:id=9]]: TURN host lookup received error 0
2021-03-23 10:51:43.539739+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.539872+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.540971+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[589c400:audio:1:0:relay:Net[pdp_ip0:2401:4900:53fa:x:x:x:x:x/64:Cellular:id=13]]: TURN host lookup received error 0
2021-03-23 10:51:43.541057+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.541916+0530 AudioDeviceExample[2197:686046] ERROR:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (basic_packet_socket_factory.cc:171): TCP connect failed with error 65
2021-03-23 10:51:43.542042+0530 AudioDeviceExample[2197:686046] ERROR:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:369): Failed to create TURN client socket
2021-03-23 10:51:43.542118+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.542196+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[58a2600:audio:1:0:relay:Net[ipsec5:fd74:6572:6d6e:x:x:x:x:x/64:VPN/Unknown:id=9]]: TURN host lookup received error 0
2021-03-23 10:51:43.542262+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.543508+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.544267+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[58a0e00:audio:1:0:relay:Net[ipsec4:fd74:6572:6d6e:x:x:x:x:x/128:VPN/Unknown:id=6]]: TURN host lookup received error 0
2021-03-23 10:51:43.544355+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.544953+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[58a0600:audio:1:0:relay:Net[ipsec4:fd74:6572:6d6e:x:x:x:x:x/128:VPN/Unknown:id=6]]: TURN host lookup received error 0
2021-03-23 10:51:43.545055+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.545214+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.545301+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[581c800:audio:1:0:relay:Net[ipsec4:fd74:6572:6d6e:x:x:x:x:x/128:VPN/Unknown:id=7]]: TURN host lookup received error 0
2021-03-23 10:51:43.545370+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.545470+0530 AudioDeviceExample[2197:686046] ERROR:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:848): Port[589b400:audio:1:0:relay:Net[en2:169.254.0.x/16:Wifi:id=2]]: Failed to send TURN message, error: 65
2021-03-23 10:51:43.545552+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.545630+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (turn_port.cc:826): Port[589dc00:audio:1:0:relay:Net[pdp_ip1:2401:4900:5480:x:x:x:x:x/64:Cellular:id=14]]: TURN host lookup received error 0
2021-03-23 10:51:43.545701+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (thread.cc:787): Waiting for the thread to join, but blocking calls have been disallowed
2021-03-23 10:51:43.715073+0530 AudioDeviceExample[2197:686044] A route change ocurred while the AudioUnit was started. Checking the active audio format.
2021-03-23 10:51:43.717916+0530 AudioDeviceExample[2197:686044] WARN:Twilio:[WebRTC](MediaFactoryImpl::worker): (balanced_degradation_settings.cc:96): Unsupported size, value ignored.
2021-03-23 10:51:43.718358+0530 AudioDeviceExample[2197:686045] WARN:Twilio:[WebRTC](MediaFactoryImpl::signaling 0x0x283b0b020): (peer_connection.cc:6497): Candidate has an unknown component: Cand[:2:2:udp:2013266429:3.235.111.x:11036:local::0:lNjg:2icop9X40X1xbEt4BPsatL:0:0:0] for mid audio
2021-03-23 10:51:43.718416+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (jsep_transport_controller.cc:342): Not adding candidate because the JsepTransport doesn't exist. Ignore it.
2021-03-23 10:51:43.718488+0530 AudioDeviceExample[2197:686046] WARN:Twilio:[WebRTC](MediaFactoryImpl::networking 0x0x283b0b020): (jsep_transport_controller.cc:342): Not adding candidate because the JsepTransport doesn't exist. Ignore it.
2021-03-23 10:51:43.718997+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Gathered a candidate = udp 117.99.104.162 65015 typ stun generation 0 network-id 1 raddr 0.0.0.0 rport 0
2021-03-23 10:51:43.719017+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call isTrackEnabled
2021-03-23 10:51:43.719047+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): Gathered a candidate = udp 106.205.250.205 42628 typ stun generation 0 network-id 12 raddr 0.0.0.0 rport 0
2021-03-23 10:51:43.719580+0530 AudioDeviceExample[2197:685885] DEBUG:Twilio:[Core](0x16f92f000): onSetSessionRemoteDescription: C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:43.719677+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getTrackName
2021-03-23 10:51:43.719715+0530 AudioDeviceExample[2197:685669] INFO:Twilio:[Core](Thread 0x0x106f08780): Subscribed to Participant's hemanshu audio track with sid MTba40c205a696fff84fcb8492ccbe3112
2021-03-23 10:51:43.719794+0530 AudioDeviceExample[2197:686045] DEBUG:Twilio:[Core](MediaFactoryImpl::signaling 0x0x283b0b020): Create local answer: C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:43.719898+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getRemoteTrack
2021-03-23 10:51:43.720830+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getRemoteTrack
2021-03-23 10:51:43.720973+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getTrackSid
2021-03-23 10:51:43.721107+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getTrackSid
2021-03-23 10:51:43.721255+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getWebRtcTrack
2021-03-23 10:51:43.721919+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getTrackName
2021-03-23 10:51:43.721979+0530 AudioDeviceExample[2197:685669] DEBUG:Twilio:[Core](Thread 0x0x106f08780): API Call getIdentity
2021-03-23 10:51:43.721994+0530 AudioDeviceExample[2197:685887] DEBUG:Twilio:[Core](0x16fa47000): onCreateSessionLocalDescription C594021B0AbCa8CfDFC5A519BCEE0cdB
2021-03-23 10:51:43.722095+0530 AudioDeviceExample[2197:685669] Subscribed to f7bE2bb8D6aF05AcFc4eECC25FeCe757 audio track for Participant hemanshu
Assertion failed: (mixedAudioBufferList != NULL), function ExampleAVAudioEngineDeviceRecordCallback, file /Users/mahendraliya/Documents/_dev/2021/james-king/code/video-quickstart-ios/AudioDeviceExample/AudioDevices/ExampleAVAudioEngineDevice.m, line 816.
(lldb) 
liyamahendra commented 3 years ago

@piyushtank were the updated logs I shared helpful? Do you need any more details please?

liyamahendra commented 3 years ago

Hi @piyushtank, are the details I shared helpful? Please let me know if you need any assistance from my side.

piyushtank commented 3 years ago

@liyamahendra Its throwing an assertion failure at this line -

Assertion failed: (mixedAudioBufferList != NULL), function ExampleAVAudioEngineDeviceRecordCallback, file /Users/mahendraliya/Documents/_dev/2021/james-king/code/video-quickstart-ios/AudioDeviceExample/AudioDevices/ExampleAVAudioEngineDevice.m, line 816.

Since we are not able to reproduce the crash, can you make sure initializeCapturer is called and this line was executed before?

liyamahendra commented 3 years ago

@piyushtank thank you for replying back!

what would be the ideal method to ensure what you suggested? Would you mind briefly mentioning the steps please? So that it’s done properly as expected?

piyushtank commented 3 years ago

@liyamahendra you may wanna add logs at places where mixedAudioBufferList is assigned and set to nil. You can use breakpoints as well.

liyamahendra commented 3 years ago

Yes, the breakpoint gets hit at the line you pointed out. Attached is the screenshot showing the same.

Screenshot 2021-04-09 at 5 25 38 PM
liyamahendra commented 3 years ago

@piyushtank did you get a chance to see my previous comment?

liyamahendra commented 3 years ago

This clearly doesn't seem to work as expected. @piyushtank would you advise I drop using this feature in the app?

@ceaglest do you've any comments please?