perf.txt 376 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032
  1. # To display the perf.data header info, please use --header/--header-only options.
  2. #
  3. #
  4. # Total Lost Samples: 0
  5. #
  6. # Samples: 2M of event 'cycles:u'
  7. # Event count (approx.): 1234882596807
  8. #
  9. # Overhead Command Shared Object Symbol
  10. # ........ ............... ....................... .............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
  11. #
  12. 11.28% EgoSystem EgoSystem [.] YUY2ToUVRow_NEON
  13. |
  14. ---YUY2ToUVRow_NEON
  15. ConvertToI420
  16. GSMLCapturer::Run
  17. std::__invoke_impl<void, void (GSMLCapturer::*&)(), GSMLCapturer*&>
  18. std::__invoke<void (GSMLCapturer::*&)(), GSMLCapturer*&>
  19. std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>::__call<void, , 0ul>
  20. std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>::operator()<, void>
  21. std::__invoke_impl<void, std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>>
  22. std::__invoke<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>>
  23. std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > >::_M_invoke<0ul>
  24. std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > >::operator()
  25. std::thread::_State_impl<std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > > >::_M_run
  26. 0xffffa9ff5f9c
  27. start_thread
  28. thread_start
  29. 10.76% EncoderQueue EgoSystem [.] thread_encoding_proc
  30. |
  31. ---thread_encoding_proc
  32. start_thread
  33. thread_start
  34. 9.49% EgoSystem EgoSystem [.] YUY2ToYRow_NEON
  35. |
  36. ---YUY2ToYRow_NEON
  37. ConvertToI420
  38. GSMLCapturer::Run
  39. std::__invoke_impl<void, void (GSMLCapturer::*&)(), GSMLCapturer*&>
  40. std::__invoke<void (GSMLCapturer::*&)(), GSMLCapturer*&>
  41. std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>::__call<void, , 0ul>
  42. std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>::operator()<, void>
  43. std::__invoke_impl<void, std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>>
  44. std::__invoke<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>>
  45. std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > >::_M_invoke<0ul>
  46. std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > >::operator()
  47. std::thread::_State_impl<std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > > >::_M_run
  48. 0xffffa9ff5f9c
  49. start_thread
  50. thread_start
  51. 5.34% EncoderQueue EgoSystem [.] vp8_pack_tokens
  52. |
  53. ---vp8_pack_tokens
  54. |
  55. --5.34%--vp8_pack_bitstream
  56. vp8_get_compressed_data
  57. vp8e_encode
  58. vpx_codec_encode
  59. webrtc::LibvpxVp8Encoder::Encode
  60. webrtc::VideoStreamEncoder::EncodeVideoFrame
  61. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  62. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  63. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  64. event_base_loop
  65. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  66. rtc::PlatformThread::StartThread
  67. start_thread
  68. thread_start
  69. 4.90% EncoderQueue EgoSystem [.] vp8_short_fdct8x4_neon
  70. |
  71. ---vp8_short_fdct8x4_neon
  72. |
  73. --4.54%--vp8cx_encode_inter_macroblock
  74. |
  75. |--2.95%--thread_encoding_proc
  76. | start_thread
  77. | thread_start
  78. |
  79. --1.58%--encode_mb_row
  80. vp8_encode_frame
  81. vp8_get_compressed_data
  82. vp8e_encode
  83. vpx_codec_encode
  84. webrtc::LibvpxVp8Encoder::Encode
  85. webrtc::VideoStreamEncoder::EncodeVideoFrame
  86. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  87. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  88. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  89. event_base_loop
  90. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  91. rtc::PlatformThread::StartThread
  92. start_thread
  93. thread_start
  94. 4.03% EncoderQueue EgoSystem [.] vp8_fast_quantize_b_neon
  95. |
  96. ---vp8_fast_quantize_b_neon
  97. |
  98. --3.71%--vp8_encode_inter16x16
  99. vp8cx_encode_inter_macroblock
  100. |
  101. |--2.41%--thread_encoding_proc
  102. | start_thread
  103. | thread_start
  104. |
  105. --1.30%--encode_mb_row
  106. vp8_encode_frame
  107. vp8_get_compressed_data
  108. vp8e_encode
  109. vpx_codec_encode
  110. webrtc::LibvpxVp8Encoder::Encode
  111. webrtc::VideoStreamEncoder::EncodeVideoFrame
  112. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  113. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  114. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  115. event_base_loop
  116. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  117. rtc::PlatformThread::StartThread
  118. start_thread
  119. thread_start
  120. 4.00% EncoderQueue EgoSystem [.] encode_mb_row
  121. |
  122. ---encode_mb_row
  123. |
  124. --4.00%--vp8_encode_frame
  125. vp8_get_compressed_data
  126. vp8e_encode
  127. vpx_codec_encode
  128. webrtc::LibvpxVp8Encoder::Encode
  129. webrtc::VideoStreamEncoder::EncodeVideoFrame
  130. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  131. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  132. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  133. event_base_loop
  134. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  135. rtc::PlatformThread::StartThread
  136. start_thread
  137. thread_start
  138. 3.90% EncoderQueue EgoSystem [.] vp8_tokenize_mb
  139. |
  140. ---vp8_tokenize_mb
  141. |
  142. |--2.25%--0x1
  143. |
  144. |--0.74%--thread_encoding_proc
  145. | start_thread
  146. | thread_start
  147. |
  148. --0.54%--0
  149. 3.59% EncoderQueue EgoSystem [.] vp8_pick_inter_mode
  150. |
  151. ---vp8_pick_inter_mode
  152. |
  153. --3.55%--vp8cx_encode_inter_macroblock
  154. |
  155. |--2.37%--thread_encoding_proc
  156. | start_thread
  157. | thread_start
  158. |
  159. --1.17%--encode_mb_row
  160. vp8_encode_frame
  161. vp8_get_compressed_data
  162. vp8e_encode
  163. vpx_codec_encode
  164. webrtc::LibvpxVp8Encoder::Encode
  165. webrtc::VideoStreamEncoder::EncodeVideoFrame
  166. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  167. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  168. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  169. event_base_loop
  170. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  171. rtc::PlatformThread::StartThread
  172. start_thread
  173. thread_start
  174. 3.02% EncoderQueue EgoSystem [.] vp8_copy_mem16x16_neon
  175. |
  176. ---vp8_copy_mem16x16_neon
  177. |
  178. |--1.69%--vp8_denoiser_denoise_mb
  179. | vp8_pick_inter_mode
  180. | vp8cx_encode_inter_macroblock
  181. | |
  182. | |--1.11%--thread_encoding_proc
  183. | | start_thread
  184. | | thread_start
  185. | |
  186. | --0.58%--encode_mb_row
  187. | vp8_encode_frame
  188. | vp8_get_compressed_data
  189. | vp8e_encode
  190. | vpx_codec_encode
  191. | webrtc::LibvpxVp8Encoder::Encode
  192. | webrtc::VideoStreamEncoder::EncodeVideoFrame
  193. | webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  194. | webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  195. | webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  196. | event_base_loop
  197. | webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  198. | rtc::PlatformThread::StartThread
  199. | start_thread
  200. | thread_start
  201. |
  202. --0.68%--start_thread
  203. thread_start
  204. 2.52% EncoderQueue EgoSystem [.] vpx_variance16x16_neon
  205. |
  206. ---vpx_variance16x16_neon
  207. |
  208. |--1.41%--vp8_pick_inter_mode
  209. | vp8cx_encode_inter_macroblock
  210. | |
  211. | --0.94%--thread_encoding_proc
  212. | start_thread
  213. | thread_start
  214. |
  215. --0.72%--vp8cx_encode_inter_macroblock
  216. 2.40% EncoderQueue libc-2.31.so [.] __memcpy_generic
  217. |
  218. ---__memcpy_generic
  219. |
  220. |--1.17%--vp8_get_compressed_data
  221. | vp8e_encode
  222. | vpx_codec_encode
  223. | webrtc::LibvpxVp8Encoder::Encode
  224. | webrtc::VideoStreamEncoder::EncodeVideoFrame
  225. | webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  226. | webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  227. | webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  228. | event_base_loop
  229. | webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  230. | rtc::PlatformThread::StartThread
  231. | start_thread
  232. | thread_start
  233. |
  234. --1.01%--vp8_lookahead_push
  235. vp8_receive_raw_frame
  236. vp8e_encode
  237. vpx_codec_encode
  238. webrtc::LibvpxVp8Encoder::Encode
  239. webrtc::VideoStreamEncoder::EncodeVideoFrame
  240. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  241. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  242. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  243. event_base_loop
  244. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  245. rtc::PlatformThread::StartThread
  246. start_thread
  247. thread_start
  248. 1.73% EncoderQueue EgoSystem [.] vp8_denoiser_denoise_mb
  249. |
  250. ---vp8_denoiser_denoise_mb
  251. |
  252. --1.72%--vp8_pick_inter_mode
  253. vp8cx_encode_inter_macroblock
  254. |
  255. |--1.19%--thread_encoding_proc
  256. | start_thread
  257. | thread_start
  258. |
  259. --0.53%--encode_mb_row
  260. vp8_encode_frame
  261. vp8_get_compressed_data
  262. vp8e_encode
  263. vpx_codec_encode
  264. webrtc::LibvpxVp8Encoder::Encode
  265. webrtc::VideoStreamEncoder::EncodeVideoFrame
  266. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  267. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  268. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  269. event_base_loop
  270. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  271. rtc::PlatformThread::StartThread
  272. start_thread
  273. thread_start
  274. 1.70% EncoderQueue EgoSystem [.] vp8_denoiser_filter_neon
  275. |
  276. ---vp8_denoiser_filter_neon
  277. |
  278. --1.70%--vp8_denoiser_denoise_mb
  279. vp8_pick_inter_mode
  280. vp8cx_encode_inter_macroblock
  281. |
  282. |--1.12%--thread_encoding_proc
  283. | start_thread
  284. | thread_start
  285. |
  286. --0.57%--encode_mb_row
  287. vp8_encode_frame
  288. vp8_get_compressed_data
  289. vp8e_encode
  290. vpx_codec_encode
  291. webrtc::LibvpxVp8Encoder::Encode
  292. webrtc::VideoStreamEncoder::EncodeVideoFrame
  293. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  294. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  295. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  296. event_base_loop
  297. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  298. rtc::PlatformThread::StartThread
  299. start_thread
  300. thread_start
  301. 1.69% EncoderQueue EgoSystem [.] vpx_subtract_block_neon
  302. |
  303. ---vpx_subtract_block_neon
  304. |
  305. --1.67%--vp8cx_encode_inter_macroblock
  306. |
  307. |--1.11%--thread_encoding_proc
  308. | start_thread
  309. | thread_start
  310. |
  311. --0.56%--encode_mb_row
  312. vp8_encode_frame
  313. vp8_get_compressed_data
  314. vp8e_encode
  315. vpx_codec_encode
  316. webrtc::LibvpxVp8Encoder::Encode
  317. webrtc::VideoStreamEncoder::EncodeVideoFrame
  318. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  319. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  320. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  321. event_base_loop
  322. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  323. rtc::PlatformThread::StartThread
  324. start_thread
  325. thread_start
  326. 1.55% EncoderQueue EgoSystem [.] vp8_copy_mem8x8_neon
  327. |
  328. ---vp8_copy_mem8x8_neon
  329. |
  330. |--0.59%--vp8_denoiser_denoise_mb
  331. | vp8_pick_inter_mode
  332. | vp8cx_encode_inter_macroblock
  333. |
  334. --0.53%--vp8_encode_inter16x16
  335. vp8cx_encode_inter_macroblock
  336. 1.24% EncoderQueue EgoSystem [.] vp8cx_encode_inter_macroblock
  337. |
  338. ---vp8cx_encode_inter_macroblock
  339. |
  340. --0.81%--thread_encoding_proc
  341. start_thread
  342. thread_start
  343. 1.19% EncoderQueue EgoSystem [.] vp8_encode_inter16x16
  344. |
  345. ---vp8_encode_inter16x16
  346. |
  347. --1.17%--vp8cx_encode_inter_macroblock
  348. |
  349. --0.77%--thread_encoding_proc
  350. start_thread
  351. thread_start
  352. 1.07% EncoderQueue EgoSystem [.] vp8_sixtap_predict16x16_neon
  353. |
  354. ---vp8_sixtap_predict16x16_neon
  355. |
  356. --1.07%--vp8_build_inter16x16_predictors_mb
  357. |
  358. --1.05%--vp8_encode_inter16x16
  359. vp8cx_encode_inter_macroblock
  360. |
  361. --0.67%--thread_encoding_proc
  362. start_thread
  363. thread_start
  364. 1.07% EncoderQueue EgoSystem [.] vpx_sub_pixel_variance16x16_neon
  365. |
  366. ---vpx_sub_pixel_variance16x16_neon
  367. |
  368. --0.74%--evaluate_inter_mode
  369. vp8_pick_inter_mode
  370. vp8cx_encode_inter_macroblock
  371. 1.04% EncoderQueue EgoSystem [.] vp8_dequant_idct_add_y_block_neon
  372. |
  373. ---vp8_dequant_idct_add_y_block_neon
  374. |
  375. --0.69%--thread_encoding_proc
  376. start_thread
  377. thread_start
  378. 1.00% EncoderQueue EgoSystem [.] vp8_loop_filter_vertical_edge_y_neon
  379. |
  380. ---vp8_loop_filter_vertical_edge_y_neon
  381. |
  382. --0.72%--vp8_loop_filter_frame
  383. vp8_loopfilter_frame
  384. thread_loopfilter
  385. start_thread
  386. thread_start
  387. 0.94% EncoderQueue EgoSystem [.] vp8_find_near_mvs
  388. |
  389. ---vp8_find_near_mvs
  390. |
  391. --0.74%--vp8_pick_inter_mode
  392. vp8cx_encode_inter_macroblock
  393. 0.93% EncoderQueue EgoSystem [.] vp8_encode_bool
  394. |
  395. ---vp8_encode_bool
  396. |
  397. --0.75%--vp8_pack_bitstream
  398. vp8_get_compressed_data
  399. vp8e_encode
  400. vpx_codec_encode
  401. webrtc::LibvpxVp8Encoder::Encode
  402. webrtc::VideoStreamEncoder::EncodeVideoFrame
  403. webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  404. webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  405. webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  406. event_base_loop
  407. webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  408. rtc::PlatformThread::StartThread
  409. start_thread
  410. thread_start
  411. 0.91% EncoderQueue EgoSystem [.] vp8_sixtap_predict8x8_neon
  412. |
  413. ---vp8_sixtap_predict8x8_neon
  414. 0.71% EncoderQueue libc-2.31.so [.] __GI___memset_generic
  415. |
  416. ---__GI___memset_generic
  417. 0.70% EgoSystem EgoSystem [.] CopyRow_NEON
  418. |
  419. ---CopyRow_NEON
  420. I420Scale
  421. webrtc::I420Buffer::CropAndScaleFrom
  422. GSMLCapturer::Run
  423. std::__invoke_impl<void, void (GSMLCapturer::*&)(), GSMLCapturer*&>
  424. std::__invoke<void (GSMLCapturer::*&)(), GSMLCapturer*&>
  425. std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>::__call<void, , 0ul>
  426. std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>::operator()<, void>
  427. std::__invoke_impl<void, std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>>
  428. std::__invoke<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()>>
  429. std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > >::_M_invoke<0ul>
  430. std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > >::operator()
  431. std::thread::_State_impl<std::thread::_Invoker<std::tuple<std::_Bind<void (GSMLCapturer::*(GSMLCapturer*))()> > > >::_M_run
  432. 0xffffa9ff5f9c
  433. start_thread
  434. thread_start
  435. 0.64% EncoderQueue EgoSystem [.] vp8_mbloop_filter_vertical_edge_y_neon
  436. |
  437. ---vp8_mbloop_filter_vertical_edge_y_neon
  438. |
  439. --0.52%--vp8_loop_filter_frame
  440. vp8_loopfilter_frame
  441. thread_loopfilter
  442. start_thread
  443. thread_start
  444. 0.53% EncoderQueue EgoSystem [.] evaluate_inter_mode
  445. |
  446. ---evaluate_inter_mode
  447. |
  448. --0.52%--vp8_pick_inter_mode
  449. vp8cx_encode_inter_macroblock
  450. 0.53% EncoderQueue EgoSystem [.] pick_intra_mbuv_mode
  451. |
  452. ---pick_intra_mbuv_mode
  453. 0.53% EncoderQueue EgoSystem [.] vp8_find_near_mvs_bias
  454. |
  455. ---vp8_find_near_mvs_bias
  456. |
  457. --0.51%--vp8_pick_inter_mode
  458. vp8cx_encode_inter_macroblock
  459. 0.47% EncoderQueue EgoSystem [.] vp8_mbloop_filter_vertical_edge_uv_neon
  460. 0.47% EncoderQueue EgoSystem [.] vp8_build_intra_predictors_mby_s
  461. 0.46% EncoderQueue EgoSystem [.] vp8cx_mb_init_quantizer
  462. 0.44% EncoderQueue EgoSystem [.] vp8_get_compressed_data
  463. 0.39% EncoderQueue EgoSystem [.] vp8_quantize_mb
  464. 0.38% EncoderQueue EgoSystem [.] vpx_mse16x16_neon
  465. 0.33% EncoderQueue EgoSystem [.] vp8_cost_mv_ref
  466. 0.32% EncoderQueue EgoSystem [.] vp8_loop_filter_horizontal_edge_y_neon
  467. 0.32% EncoderQueue EgoSystem [.] check_dot_artifact_candidate
  468. 0.29% EncoderQueue EgoSystem [.] vpx_dc_predictor_16x16_neon
  469. 0.28% EncoderQueue EgoSystem [.] vp8_build_inter16x16_predictors_mb
  470. 0.25% EncoderQueue EgoSystem [.] vp8_short_walsh4x4_neon
  471. 0.22% pc_network_thre EgoSystem [.] _vpaes_encrypt_2x
  472. 0.22% EncoderQueue EgoSystem [.] vp8_loop_filter_frame
  473. 0.21% AudioEncoder EgoSystem [.] silk_noise_shape_quantizer_del_dec
  474. 0.21% EncoderQueue EgoSystem [.] vp8_mbloop_filter_horizontal_edge_y_neon
  475. 0.20% EncoderQueue EgoSystem [.] vp8_dequant_idct_add_uv_block_neon
  476. 0.20% EncoderQueue EgoSystem [.] vp8_loop_filter_vertical_edge_uv_neon
  477. 0.19% EncoderQueue EgoSystem [.] vp8_yv12_extend_frame_borders_c
  478. 0.19% EncoderQueue EgoSystem [.] vp8_mbloop_filter_horizontal_edge_uv_neon
  479. 0.19% EncoderQueue EgoSystem [.] vp8_pack_bitstream
  480. 0.19% EncoderQueue EgoSystem [.] vp8_build_inter_predictors_mb
  481. 0.18% EncoderQueue EgoSystem [.] vp8_mv_ref_probs
  482. 0.18% EncoderQueue EgoSystem [.] vp8_hex_search
  483. 0.16% EncoderQueue EgoSystem [.] vp8_compute_skin_block
  484. 0.16% EncoderQueue EgoSystem [.] vpx_sad16x16_neon
  485. 0.15% pc_network_thre EgoSystem [.] sha1_block_data_order
  486. 0.15% webrtc_audio_mo EgoSystem [.] webrtc::SincResampler::Convolve_NEON
  487. 0.13% EncoderQueue EgoSystem [.] vp8_setup_intra_recon
  488. 0.13% EncoderQueue EgoSystem [.] vpx_skin_pixel
  489. 0.12% EncoderQueue EgoSystem [.] memset@plt
  490. 0.11% webrtc_audio_mo EgoSystem [.] webrtc::MatchedFilter::Update
  491. 0.11% EncoderQueue EgoSystem [.] write_component_probs
  492. 0.10% EncoderQueue EgoSystem [.] vp8_encode_frame
  493. 0.10% AudioEncoder EgoSystem [.] silk_warped_autocorrelation_FIX_c
  494. 0.09% EncoderQueue EgoSystem [.] vp8_short_inv_walsh4x4_neon
  495. 0.09% webrtc_audio_mo EgoSystem [.] webrtc::aec3::MatchedFilterCore_NEON
  496. 0.09% EncoderQueue EgoSystem [.] vp8_tree_probs_from_distribution
  497. 0.09% EncoderQueue EgoSystem [.] vp8_loop_filter_mbv_neon
  498. 0.09% EncoderQueue EgoSystem [.] vp8_find_best_half_pixel_step
  499. 0.08% EncoderQueue EgoSystem [.] vp8_loop_filter_horizontal_edge_uv_neon
  500. 0.08% EncoderQueue EgoSystem [.] vp8_loop_filter_mbh_neon
  501. 0.07% EncoderQueue EgoSystem [.] vp8_update_gf_useage_maps
  502. 0.07% EncoderQueue EgoSystem [.] cost
  503. 0.07% EncoderQueue EgoSystem [.] vp8_loop_filter_bv_neon
  504. 0.07% PacerThread libc-2.31.so [.] _int_malloc
  505. 0.06% EncoderQueue EgoSystem [.] vp8_loop_filter_partial_frame
  506. 0.06% EncoderQueue EgoSystem [.] vp8_update_coef_probs
  507. 0.05% EncoderQueue EgoSystem [.] write_mb_features
  508. 0.05% EncoderQueue EgoSystem [.] vp8_transform_intra_mby
  509. 0.05% EncoderQueue EgoSystem [.] vp8_short_inv_walsh4x4_1_c
  510. 0.05% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_swp4_rel
  511. 0.04% EncoderQueue EgoSystem [.] vp8_loop_filter_bh_neon
  512. 0.04% webrtc_audio_mo EgoSystem [.] WebRtcSpl_AllPassQMF
  513. 0.04% pc_network_thre libc-2.31.so [.] _int_malloc
  514. 0.04% PacerThread libc-2.31.so [.] malloc_consolidate
  515. 0.04% SharedModThread EgoSystem [.] webrtc::ProcessThreadImpl::Process
  516. 0.04% webrtc_audio_mo EgoSystem [.] webrtc::ResidualEchoDetector::AnalyzeCaptureAudio
  517. 0.04% PacerThread libc-2.31.so [.] __aarch64_swp4_rel
  518. 0.04% EncoderQueue EgoSystem [.] vp8_quantize_mby
  519. 0.03% EncoderQueue libc-2.31.so [.] _int_malloc
  520. 0.03% PacerThread libpthread-2.31.so [.] __aarch64_swp4_rel
  521. 0.03% PacerThread EgoSystem [.] webrtc::PacingController::ProcessPackets
  522. 0.03% PacerThread libpthread-2.31.so [.] __aarch64_cas4_acq
  523. 0.03% PacerThread EgoSystem [.] webrtc::ProcessThreadImpl::Process
  524. 0.03% Thread 0x0x326b [vdso] [.] __kernel_clock_gettime
  525. 0.03% rtp_send_contro libpthread-2.31.so [.] __aarch64_cas4_acq
  526. 0.03% Thread 0x0x326b libc-2.31.so [.] _int_free
  527. 0.03% rtp_send_contro libc-2.31.so [.] __aarch64_cas8_rel
  528. 0.03% EncoderQueue EgoSystem [.] vpx_variance8x8_neon
  529. 0.03% PacerThread libpthread-2.31.so [.] __pthread_mutex_lock
  530. 0.03% EncoderQueue EgoSystem [.] vp8_estimate_entropy_savings
  531. 0.03% PacerThread libc-2.31.so [.] malloc
  532. 0.03% pc_network_thre EgoSystem [.] srtp_protect_mki
  533. 0.03% Thread 0x0x326b EgoSystem [.] rtc::AsyncClosure::~AsyncClosure
  534. 0.03% webrtc_audio_mo EgoSystem [.] webrtc::CascadedBiQuadFilter::Process
  535. 0.03% pc_network_thre libpthread-2.31.so [.] __aarch64_cas4_acq
  536. 0.03% pc_network_thre EgoSystem [.] rtc::AsyncClosure::AsyncClosure
  537. 0.03% pc_network_thre libpthread-2.31.so [.] __aarch64_swp4_rel
  538. 0.03% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_cas4_acq
  539. 0.03% EncoderQueue EgoSystem [.] vp8_encode_bool
  540. 0.02% webrtc_audio_mo EgoSystem [.] webrtc::aec3::ApplyFilter_Neon
  541. 0.02% rtp_send_contro EgoSystem [.] event_base_loop
  542. 0.02% PacerThread libc-2.31.so [.] __memcpy_generic
  543. 0.02% EncoderQueue libc-2.31.so [.] malloc_consolidate
  544. 0.02% AudioEncoder EgoSystem [.] silk_LPC_analysis_filter
  545. 0.02% rtp_send_contro EgoSystem [.] std::map<unsigned int, webrtc::Samples::Stats, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, webrtc::Samples::Stats> > >::operator[]
  546. 0.02% Thread 0x0x326b libc-2.31.so [.] cfree@GLIBC_2.17
  547. 0.02% EncoderQueue libc-2.31.so [.] malloc
  548. 0.02% EncoderQueue EgoSystem [.] vp8_build_intra_predictors_mbuv_s
  549. 0.02% EncoderQueue EgoSystem [.] vp8_copy_and_extend_frame
  550. 0.02% webrtc_audio_mo EgoSystem [.] webrtc::CascadedBiQuadFilter::Process
  551. 0.02% AudioEncoder EgoSystem [.] silk_NLSF_del_dec_quant
  552. 0.02% EncoderQueue EgoSystem [.] vp8_transform_mbuv
  553. 0.02% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::LeadingAudioPacketEnqueueTime
  554. 0.02% PacerThread [vdso] [.] __kernel_clock_gettime
  555. 0.02% PacerThread EgoSystem [.] webrtc::RtpSenderEgress::SendPacket
  556. 0.02% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::SendProcessingUsage1::FrameSent
  557. 0.02% EncoderQueue EgoSystem [.] vp8cx_pick_filter_level_fast
  558. 0.02% PacerThread libpthread-2.31.so [.] pthread_cond_timedwait@@GLIBC_2.17
  559. 0.02% rtp_send_contro libc-2.31.so [.] cfree@GLIBC_2.17
  560. 0.02% PacerThread libc-2.31.so [.] _int_free
  561. 0.02% rtp_send_contro libc-2.31.so [.] malloc
  562. 0.02% Thread 0x0x326b EgoSystem [.] rtc::AsyncInvoker::OnMessage
  563. 0.02% rtp_send_contro libpthread-2.31.so [.] __aarch64_swp4_rel
  564. 0.02% EncoderQueue libc-2.31.so [.] __aarch64_swp4_rel
  565. 0.02% PacerThread EgoSystem [.] webrtc::PacketRouter::SendPacket
  566. 0.02% AudioEncoder EgoSystem [.] silk_burg_modified_c
  567. 0.02% rtp_send_contro libc-2.31.so [.] _int_free
  568. 0.02% EgoSystem EgoSystem [.] GSMLCapturer::Run
  569. 0.02% Thread 0x0x326b EgoSystem [.] rtc::Thread::Dispatch
  570. 0.02% Thread 0x0x326b libc-2.31.so [.] __aarch64_cas8_rel
  571. 0.02% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::_Rb_tree_rebalance_for_erase
  572. 0.02% PacerThread libc-2.31.so [.] unlink_chunk.isra.0
  573. 0.02% rtp_send_contro [unknown] [k] 0xffffd213435dcfa4
  574. 0.02% rtp_send_contro [vdso] [.] __kernel_clock_gettime
  575. 0.02% PacerThread EgoSystem [.] webrtc::RtpSenderEgress::UpdateDelayStatistics
  576. 0.02% rtp_send_contro libpthread-2.31.so [.] __pthread_mutex_lock
  577. 0.02% EncoderQueue EgoSystem [.] cyclic_background_refresh
  578. 0.02% PacerThread EgoSystem [.] std::_Rb_tree<long, std::pair<long const, int>, std::_Select1st<std::pair<long const, int> >, std::less<long>, std::allocator<std::pair<long const, int> > >::_M_emplace_unique<std::pair<long, int> >
  579. 0.02% pc_network_thre [vdso] [.] __kernel_clock_gettime
  580. 0.02% Thread 0x0x326b libpthread-2.31.so [.] __pthread_mutex_lock
  581. 0.02% pc_network_thre EgoSystem [.] vpaes_ctr32_encrypt_blocks
  582. 0.01% EgoSystem libc-2.31.so [.] __GI___printf_fp_l
  583. 0.01% PacerThread libstdc++.so.6.0.28 [.] std::_Rb_tree_insert_and_rebalance
  584. 0.01% rtp_send_contro EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  585. 0.01% rtp_send_contro EgoSystem [.] epoll_dispatch
  586. 0.01% pc_network_thre libc-2.31.so [.] __aarch64_swp4_rel
  587. 0.01% webrtc_audio_mo libc-2.31.so [.] __memcpy_generic
  588. 0.01% EgoSystem libc-2.31.so [.] _int_malloc
  589. 0.01% Thread 0x0x326b EgoSystem [.] rtc::FireAndForgetAsyncClosure<cricket::BaseChannel::SignalSentPacket_n(rtc::SentPacket const&)::$_10>::Execute
  590. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::RenderSignalAnalyzer::Update
  591. 0.01% EncoderQueue EgoSystem [.] vp8_quantize_mbuv
  592. 0.01% rtp_send_contro libc-2.31.so [.] __libc_disable_asynccancel
  593. 0.01% EncoderQueue EgoSystem [.] webrtc::LibvpxVp8Encoder::GetEncodedPartitions
  594. 0.01% PacerThread EgoSystem [.] webrtc::RtpPacketHistory::PutRtpPacket
  595. 0.01% EgoSystem libc-2.31.so [.] __vfprintf_internal
  596. 0.01% rtp_send_contro libc-2.31.so [.] _int_malloc
  597. 0.01% PacerThread EgoSystem [.] webrtc::TransportFeedbackDemuxer::AddPacket
  598. 0.01% EncoderQueue libc-2.31.so [.] unlink_chunk.isra.0
  599. 0.01% pc_network_thre [unknown] [k] 0xffffd213435dcfa4
  600. 0.01% PacerThread libc-2.31.so [.] cfree@GLIBC_2.17
  601. 0.01% PacerThread libstdc++.so.6.0.28 [.] std::_Rb_tree_rebalance_for_erase
  602. 0.01% pc_network_thre libc-2.31.so [.] malloc
  603. 0.01% pc_network_thre EgoSystem [.] rtc::RefCountedObject<rtc::Event>::AddRef
  604. 0.01% AudioEncoder EgoSystem [.] silk_biquad_alt_stride1
  605. 0.01% pc_network_thre EgoSystem [.] webrtc::RtpTransport::OnSentPacket
  606. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::SincResampler::Resample
  607. 0.01% EncoderQueue EgoSystem [.] vp8_encode_bool
  608. 0.01% pc_network_thre libc-2.31.so [.] __aarch64_cas4_acq
  609. 0.01% pc_network_thre libpthread-2.31.so [.] __pthread_mutex_lock
  610. 0.01% EncoderQueue EgoSystem [.] vp8cx_init_mbrthread_data
  611. 0.01% AudioEncoder EgoSystem [.] celt_encode_with_ec
  612. 0.01% AudioEncoder libc-2.31.so [.] __memcpy_generic
  613. 0.01% rtp_send_contro EgoSystem [.] event_active
  614. 0.01% EncoderQueue libpthread-2.31.so [.] __pthread_mutex_lock
  615. 0.01% EncoderQueue EgoSystem [.] webrtc::RTPSenderVideo::SendVideo
  616. 0.01% PacerThread [unknown] [k] 0xffffd213435dcfa4
  617. 0.01% webrtc_audio_mo libc-2.31.so [.] __GI___memset_generic
  618. 0.01% rtp_send_contro EgoSystem [.] webrtc::TransportFeedbackAdapter::ProcessSentPacket
  619. 0.01% PacerThread EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::Release
  620. 0.01% EncoderQueue libc-2.31.so [.] _int_free
  621. 0.01% pc_network_thre EgoSystem [.] _vpaes_encrypt_core
  622. 0.01% AudioEncoder EgoSystem [.] celt_pitch_xcorr_c
  623. 0.01% pc_network_thre EgoSystem [.] rtc::PhysicalSocketServer::WaitEpoll
  624. 0.01% Thread 0x0x326b EgoSystem [.] webrtc::PeerConnection::OnSentPacket_w
  625. 0.01% Thread 0x0x326b EgoSystem [.] rtc::Thread::Get
  626. 0.01% AudioEncoder EgoSystem [.] transient_analysis
  627. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::SuppressionFilter::ApplyGain
  628. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::aec3::AdaptPartitions_Neon
  629. 0.01% pc_network_thre libc-2.31.so [.] _int_free
  630. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::NoiseSuppressor::Process
  631. 0.01% EncoderQueue EgoSystem [.] vp8_encode_intra16x16mby
  632. 0.01% EncoderQueue EgoSystem [.] webrtc::RateStatistics::Update
  633. 0.01% EncoderQueue [vdso] [.] __kernel_clock_gettime
  634. 0.01% PacerThread libc-2.31.so [.] __aarch64_swp8_acq
  635. 0.01% pc_network_thre EgoSystem [.] cricket::BaseChannel::SignalSentPacket_n
  636. 0.01% PacerThread EgoSystem [.] std::_Rb_tree<webrtc::RtpPacketHistory::StoredPacket*, webrtc::RtpPacketHistory::StoredPacket*, std::_Identity<webrtc::RtpPacketHistory::StoredPacket*>, webrtc::RtpPacketHistory::MoreUseful, std::allocator<webrtc::RtpPacketHistory::StoredPacket*> >::_M_insert_unique<webrtc::RtpPacketHistory::StoredPacket*>
  637. 0.01% EncoderQueue libpthread-2.31.so [.] __pthread_disable_asynccancel
  638. 0.01% pc_network_thre EgoSystem [.] cricket::BaseChannel::SendPacket
  639. 0.01% pc_network_thre EgoSystem [.] cricket::DtlsTransport::SendPacket
  640. 0.01% EncoderQueue EgoSystem [.] webrtc::LibvpxVp8Encoder::Encode
  641. 0.01% PacerThread libc-2.31.so [.] __aarch64_cas4_acq
  642. 0.01% EncoderQueue EgoSystem [.] VP8_UVSSE
  643. 0.01% EgoSystem libc-2.31.so [.] __libc_disable_asynccancel
  644. 0.01% AudioEncoder EgoSystem [.] opus_fft_impl
  645. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::SubtractorOutput::ComputeMetrics
  646. 0.01% rtp_send_contro EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::RunTimer
  647. 0.01% rtp_send_contro EgoSystem [.] std::_Rb_tree<long, std::pair<long const, webrtc::PacketFeedback>, std::_Select1st<std::pair<long const, webrtc::PacketFeedback> >, std::less<long>, std::allocator<std::pair<long const, webrtc::PacketFeedback> > >::_M_emplace_unique<std::pair<long, webrtc::PacketFeedback> >
  648. 0.01% Thread 0x0x326b libc-2.31.so [.] malloc
  649. 0.01% pc_network_thre EgoSystem [.] rtc::Thread::Dispatch
  650. 0.01% rtp_send_contro EgoSystem [.] webrtc::TransportFeedbackAdapter::AddPacket
  651. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::cft1st_128_neon
  652. 0.01% EncoderQueue EgoSystem [.] vp8_set_speed_features
  653. 0.01% EncoderQueue EgoSystem [.] event_base_loop
  654. 0.01% Thread 0x0x326b [unknown] [k] 0xffffd213435dcfa4
  655. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::SuppressionGain::LowerBandGain
  656. 0.01% EncoderQueue libc-2.31.so [.] cfree@GLIBC_2.17
  657. 0.01% pc_network_thre EgoSystem [.] bitvector_left_shift
  658. 0.01% EgoSystem EgoSystem [.] rtc::VideoBroadcaster::OnFrame
  659. 0.01% SharedModThread [vdso] [.] __kernel_clock_gettime
  660. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::AudioBuffer::CopyFrom
  661. 0.01% PacerThread EgoSystem [.] cricket::WebRtcVideoChannel::SendRtp
  662. 0.01% EncoderQueue EgoSystem [.] vp8_encode_intra16x16mbuv
  663. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::cftmdl_128_neon
  664. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::EchoRemoverImpl::ProcessCapture
  665. 0.01% EgoSystem libc-2.31.so [.] malloc
  666. 0.01% AudioEncoder EgoSystem [.] silk_A2NLSF
  667. 0.01% EncoderQueue EgoSystem [.] webrtc::RoundRobinPacketQueue::Push
  668. 0.01% pc_network_thre EgoSystem [.] rtc::Thread::Get
  669. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::OouraFft::bitrv2_128
  670. 0.01% EncoderQueue EgoSystem [.] vpx_dc_predictor_8x8_neon
  671. 0.01% rtp_send_contro EgoSystem [.] event_queue_remove
  672. 0.01% EncoderQueue EgoSystem [.] vp8e_encode
  673. 0.01% threaded-ml libpulse.so.0.21.2 [.] pa_mainloop_dispatch
  674. 0.01% rtp_send_contro EgoSystem [.] std::_Rb_tree<rtc::NetworkRoute, std::pair<rtc::NetworkRoute const, webrtc::DataSize>, std::_Select1st<std::pair<rtc::NetworkRoute const, webrtc::DataSize> >, webrtc::InFlightBytesTracker::NetworkRouteComparator, std::allocator<std::pair<rtc::NetworkRoute const, webrtc::DataSize> > >::find
  675. 0.01% PacerThread EgoSystem [.] webrtc::RtpPacket::AllocateRawExtension
  676. 0.01% pc_network_thre libc-2.31.so [.] malloc_consolidate
  677. 0.01% pc_network_thre EgoSystem [.] EVP_CipherInit_ex
  678. 0.01% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::EncodeVideoFrame
  679. 0.01% AudioEncoder EgoSystem [.] opus_encode_native
  680. 0.01% pc_network_thre EgoSystem [.] webrtc::SrtpTransport::SendRtpPacket
  681. 0.01% rtp_send_contro EgoSystem [.] webrtc::TransportFeedbackAdapter::ProcessTransportFeedbackInner
  682. 0.01% EncoderQueue libpthread-2.31.so [.] __new_sem_wait_slow.constprop.0
  683. 0.01% EncoderQueue EgoSystem [.] vp8_extend_mb_row
  684. 0.01% PacerThread libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  685. 0.01% PacerThread EgoSystem [.] webrtc::RtpPacket::HasExtension
  686. 0.01% pc_network_thre EgoSystem [.] EVP_MD_CTX_copy_ex
  687. 0.01% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::MaybeEncodeVideoFrame
  688. 0.01% AudioEncoder EgoSystem [.] clt_mdct_forward_c
  689. 0.01% Thread 0x0x326b EgoSystem [.] rtc::TaskQueue::PostTask
  690. 0.01% rtp_send_contro libstdc++.so.6.0.28 [.] std::_Rb_tree_rebalance_for_erase
  691. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::ComfortNoiseGenerator::Compute
  692. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::AudioTransportImpl::RecordedDataIsAvailable
  693. 0.01% EncoderQueue libm-2.31.so [.] powf@@GLIBC_2.27
  694. 0.01% PacerThread EgoSystem [.] webrtc::ForwardErrorCorrection::EncodeFec
  695. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::DownmixInterleavedToMono<short>
  696. 0.01% AudioEncoder EgoSystem [.] silk_resampler_private_down_FIR
  697. 0.01% pc_network_thre libc-2.31.so [.] cfree@GLIBC_2.17
  698. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::Subtractor::Process
  699. 0.01% EncoderQueue EgoSystem [.] vpx_codec_control_
  700. 0.01% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::SendPacket
  701. 0.01% rtp_send_contro EgoSystem [.] rtc::RefCountedObject<webrtc::PendingTaskSafetyFlag>::Release
  702. 0.01% PacerThread EgoSystem [.] cricket::BaseChannel::SendPacket
  703. 0.01% rtp_send_contro EgoSystem [.] webrtc::GoogCcNetworkController::OnSentPacket
  704. 0.01% pc_network_thre EgoSystem [.] cricket::DtlsTransport::OnSentPacket
  705. 0.01% EncoderQueue EgoSystem [.] event_active
  706. 0.01% pc_network_thre EgoSystem [.] rtc::AsyncUDPSocket::GetLocalAddress
  707. 0.01% EncoderQueue EgoSystem [.] vp8_yv12_copy_frame_c
  708. 0.01% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::OnSentPacket(rtc::SentPacket const&)::$_6>::Run
  709. 0.01% Thread 0x0x326b EgoSystem [.] rtc::CopyOnWriteBuffer::~CopyOnWriteBuffer
  710. 0.01% EgoSystem EgoSystem [.] CUpdateThread::run
  711. 0.01% EgoSystem [unknown] [k] 0xffffd213435dcfa4
  712. 0.01% Thread 0x0x326b EgoSystem [.] webrtc::SendDelayStats::GetSendDelayCounter
  713. 0.01% pc_network_thre EgoSystem [.] webrtc::RtpTransport::IsWritable
  714. 0.01% PacerThread EgoSystem [.] webrtc::RtpSenderEgress::SendPacketToNetwork
  715. 0.01% pc_network_thre EgoSystem [.] CRYPTO_ctr128_encrypt_ctr32
  716. 0.01% pc_network_thre EgoSystem [.] cricket::UDPPort::OnSentPacket
  717. 0.01% rtp_send_contro EgoSystem [.] std::_Rb_tree<rtc::NetworkRoute, std::pair<rtc::NetworkRoute const, webrtc::DataSize>, std::_Select1st<std::pair<rtc::NetworkRoute const, webrtc::DataSize> >, webrtc::InFlightBytesTracker::NetworkRouteComparator, std::allocator<std::pair<rtc::NetworkRoute const, webrtc::DataSize> > >::find
  718. 0.01% pc_network_thre EgoSystem [.] cricket::ProxyConnection::Send
  719. 0.01% pc_network_thre EgoSystem [.] srtp_aes_icm_openssl_set_iv
  720. 0.01% rtp_send_contro EgoSystem [.] webrtc::RateStatistics::Update
  721. 0.01% EncoderQueue EgoSystem [.] vp8_pick_frame_size
  722. 0.01% Thread 0x0x326b EgoSystem [.] webrtc::internal::Call::OnSentPacket
  723. 0.01% EncoderQueue [vdso] [.] __kernel_gettimeofday
  724. 0.01% PacerThread EgoSystem [.] rtc::Event::Wait
  725. 0.01% Thread 0x0x326b EgoSystem [.] webrtc::TransportFeedbackDemuxer::OnTransportFeedback
  726. 0.01% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::OnSentPacket
  727. 0.01% EncoderQueue EgoSystem [.] webrtc::DefaultTemporalLayers::NextFrameConfig
  728. 0.01% EncoderQueue EgoSystem [.] webrtc::RtpVideoSender::OnEncodedImage
  729. 0.01% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResource::encoder_queue
  730. 0.01% EncoderQueue EgoSystem [.] vp8_build_block_offsets
  731. 0.01% Thread 0x0x326b EgoSystem [.] webrtc::RtpPacketHistory::CullAcknowledgedPackets
  732. 0.01% pc_network_thre EgoSystem [.] cricket::Port::CopyPortInformationToPacketInfo
  733. 0.01% pc_network_thre EgoSystem [.] cricket::SrtpSession::ProtectRtp
  734. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::PoleZeroFilter::Filter
  735. 0.01% rtp_send_contro EgoSystem [.] webrtc::RateStatistics::Rate
  736. 0.01% EncoderQueue libpthread-2.31.so [.] pthread_testcancel
  737. 0.01% EncoderQueue EgoSystem [.] vp8_subtract_mbuv
  738. 0.01% AudioEncoder libc-2.31.so [.] __GI___memset_generic
  739. 0.01% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_ldadd4_rel
  740. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::WienerFilter::Update
  741. 0.01% EncoderQueue EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::Run
  742. 0.01% EgoSystem libstdc++.so.6.0.28 [.] std::chrono::_V2::system_clock::now
  743. 0.01% PacerThread EgoSystem [.] rtc::CopyOnWriteBuffer::UnshareAndEnsureCapacity
  744. 0.01% EncoderQueue EgoSystem [.] pick_intra4x4mby_modes
  745. 0.01% SharedModThread EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::Process
  746. 0.01% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::Pop
  747. 0.01% PacerThread EgoSystem [.] webrtc::PacedSender::ModuleProxy::Process
  748. 0.01% AudioEncoder EgoSystem [.] silk_LPC_inverse_pred_gain_c
  749. 0.01% pc_network_thre libc-2.31.so [.] __memcpy_generic
  750. 0.01% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::OnSendEncodedImage
  751. 0.01% EncoderQueue libpthread-2.31.so [.] __aarch64_swp4_rel
  752. 0.01% AudioEncoder EgoSystem [.] silk_resampler_private_AR2
  753. 0.01% EgoSystem libc-2.31.so [.] clock_nanosleep@@GLIBC_2.17
  754. 0.01% AudioEncoder EgoSystem [.] silk_schur64
  755. 0.01% EncoderQueue EgoSystem [.] webrtc::EncoderSimulcastProxy::GetEncoderInfo
  756. 0.01% EncoderQueue EgoSystem [.] webrtc::LibvpxVp8Encoder::GetEncoderInfo
  757. 0.01% EgoSystem libc-2.31.so [.] __aarch64_cas4_acq
  758. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::RenderDelayBufferImpl::Insert
  759. 0.01% pc_network_thre EgoSystem [.] rtc::AsyncUDPSocket::SendTo
  760. 0.01% pc_network_thre EgoSystem [.] aes_ctr_cipher
  761. 0.01% webrtc_audio_mo EgoSystem [.] WebRtcVad_CalculateFeatures
  762. 0.01% EgoSystem [vdso] [.] __kernel_clock_gettime
  763. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::FloatS16ToS16
  764. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::ProcessCaptureStreamLocked
  765. 0.01% PacerThread EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::AddRef
  766. 0.01% EncoderQueue libpthread-2.31.so [.] __aarch64_cas4_acq
  767. 0.01% EgoSystem EgoSystem [.] YUY2ToI420
  768. 0.01% EgoSystem EgoSystem [.] webrtc::VideoStreamEncoder::OnFrame
  769. 0.01% PacerThread EgoSystem [.] rtc::TaskQueue::PostTask
  770. 0.01% PacerThread EgoSystem [.] rtc::PhysicalSocketServer::WakeUp
  771. 0.01% PacerThread EgoSystem [.] webrtc::SendDelayStats::OnSendPacket
  772. 0.01% Thread 0x0x326b libpthread-2.31.so [.] pthread_cond_timedwait@@GLIBC_2.17
  773. 0.01% webrtc_audio_mo EgoSystem [.] webrtc::AecState::Update
  774. 0.01% AudioEncoder EgoSystem [.] webrtc::RmsLevel::Analyze
  775. 0.01% pc_network_thre libpthread-2.31.so [.] pthread_cond_broadcast@@GLIBC_2.17
  776. 0.01% EncoderQueue libm-2.31.so [.] pow@@GLIBC_2.29
  777. 0.01% EgoSystem libc-2.31.so [.] __strlen_generic
  778. 0.01% EncoderQueue libpthread-2.31.so [.] sem_post@@GLIBC_2.17
  779. 0.01% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_swp4_acq
  780. 0.01% webrtc_audio_mo libc-2.31.so [.] malloc
  781. 0.01% EncoderQueue EgoSystem [.] memcpy@plt
  782. 0.01% rtp_send_contro libc-2.31.so [.] __aarch64_cas4_acq
  783. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameEncodeMetadataWriter::OnEncodeStarted
  784. 0.00% pc_network_thre EgoSystem [.] SHA1_Update
  785. 0.00% EncoderQueue EgoSystem [.] vp8_init_mode_costs
  786. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::UpdateEstimate
  787. 0.00% EncoderQueue [unknown] [k] 0xffffd213435dcfa4
  788. 0.00% EgoSystem libpthread-2.31.so [.] __pthread_mutex_lock
  789. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NoiseSuppressor::Analyze
  790. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ResidualEchoEstimator::Estimate
  791. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::cftmdl
  792. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_ldadd4_rel
  793. 0.00% rtp_send_contro EgoSystem [.] webrtc::GoogCcNetworkController::OnProcessInterval
  794. 0.00% EncoderQueue EgoSystem [.] epoll_dispatch
  795. 0.00% AudioEncoder EgoSystem [.] silk_encode_pulses
  796. 0.00% pc_network_thre libc-2.31.so [.] __aarch64_cas8_acq
  797. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::Release
  798. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::rftbsub_128_neon
  799. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::GainControlImpl::ProcessCaptureAudio
  800. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] std::_Rb_tree_insert_and_rebalance
  801. 0.00% Thread 0x0x326b libpthread-2.31.so [.] pthread_cond_broadcast@@GLIBC_2.17
  802. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpSenderEgress::UpdateRtpStats
  803. 0.00% EncoderQueue EgoSystem [.] rtc::ExpFilter::Apply
  804. 0.00% EncoderQueue EgoSystem [.] rtc::CopyOnWriteBuffer::UnshareAndEnsureCapacity
  805. 0.00% EgoSystem libstdc++.so.6.0.28 [.] __dynamic_cast
  806. 0.00% AudioEncoder EgoSystem [.] webrtc::(anonymous namespace)::AudioCodingModuleImpl::Add10MsData
  807. 0.00% pc_network_thre EgoSystem [.] HMAC_Init_ex
  808. 0.00% rtp_send_contro EgoSystem [.] webrtc::StatsCounter::TryProcess
  809. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_mutex_lock
  810. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RefinedFilterUpdateGain::Compute
  811. 0.00% EgoSystem EgoSystem [.] std::this_thread::sleep_for<long, std::ratio<1l, 1000000l> >
  812. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  813. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::PushResampler<short>::Resample
  814. 0.00% PacerThread EgoSystem [.] webrtc::RTPSender::SupportsRtxPayloadPadding
  815. 0.00% EncoderQueue EgoSystem [.] std::map<unsigned int, webrtc::Samples::Stats, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, webrtc::Samples::Stats> > >::operator[]
  816. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RenderBuffer::SpectralSum
  817. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSenderVideo::AddRtpHeaderExtensions
  818. 0.00% AudioEncoder EgoSystem [.] silk_noise_shape_analysis_FIX
  819. 0.00% EncoderQueue EgoSystem [.] webrtc::DefaultTemporalLayers::OnEncodeDone
  820. 0.00% pc_network_thre EgoSystem [.] cricket::DtlsTransport::writable
  821. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::SendTo
  822. 0.00% rtp_send_contro EgoSystem [.] webrtc::GoogCcNetworkController::OnTransportPacketsFeedback
  823. 0.00% rtp_send_contro libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  824. 0.00% EncoderQueue EgoSystem [.] std::map<webrtc::Vp8FrameConfig::Vp8BufferReference, unsigned long, std::less<webrtc::Vp8FrameConfig::Vp8BufferReference>, std::allocator<std::pair<webrtc::Vp8FrameConfig::Vp8BufferReference const, unsigned long> > >::operator[]
  825. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioBuffer::CopyTo
  826. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::SendDelayStats::OnSentPacket
  827. 0.00% pc_network_thre EgoSystem [.] srtp_unprotect_rtcp_mki
  828. 0.00% rtp_send_contro libc-2.31.so [.] __aarch64_swp4_rel
  829. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::WebRtc_rdft
  830. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_assign
  831. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_smoother_get
  832. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::OnEncodedImage
  833. 0.00% PacerThread EgoSystem [.] std::vector<webrtc::RtpPacket::ExtensionInfo, std::allocator<webrtc::RtpPacket::ExtensionInfo> >::operator=
  834. 0.00% EncoderQueue EgoSystem [.] rtc::TaskQueue::PostTask
  835. 0.00% Thread 0x0x326b EgoSystem [.] rtc::RefCountedObject<rtc::Event>::Release
  836. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::cft1st
  837. 0.00% EgoSystem EgoSystem [.] CaptureOp::GetType
  838. 0.00% PacerThread EgoSystem [.] webrtc::PacingController::NextSendTime
  839. 0.00% PacerThread libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  840. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::aec3::ComputeFrequencyResponse_Neon
  841. 0.00% PacerThread EgoSystem [.] webrtc::UlpfecGenerator::AddPacketAndGenerateFec
  842. 0.00% rtp_send_contro EgoSystem [.] webrtc::StatsCounter::Set
  843. 0.00% PacerThread EgoSystem [.] webrtc::SendStatisticsProxy::GetStatsEntry
  844. 0.00% AudioEncoder EgoSystem [.] silk_Encode
  845. 0.00% EncoderQueue EgoSystem [.] vpx_h_predictor_8x8_neon
  846. 0.00% PacerThread EgoSystem [.] rtc::Thread::IsCurrent
  847. 0.00% PacerThread libpthread-2.31.so [.] __pthread_mutex_cond_lock
  848. 0.00% EncoderQueue libpthread-2.31.so [.] __aarch64_cas8_rel
  849. 0.00% PacerThread EgoSystem [.] rtc::RefCountedObject<webrtc::PendingTaskSafetyFlag>::AddRef
  850. 0.00% PacerThread libpthread-2.31.so [.] __pthread_disable_asynccancel
  851. 0.00% EncoderQueue libc-2.31.so [.] __libc_disable_asynccancel
  852. 0.00% AudioEncoder EgoSystem [.] silk_NLSF_VQ
  853. 0.00% EncoderQueue EgoSystem [.] webrtc::RateStatistics::Rate
  854. 0.00% pc_network_thre EgoSystem [.] rtc::RateTracker::AddSamples
  855. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SuppressionGain::UpperBandsGain
  856. 0.00% EgoSystem EgoSystem [.] CopyPlane
  857. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::rftfsub_128_neon
  858. 0.00% EncoderQueue EgoSystem [.] encode_mvcomponent
  859. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::WebRtcAgc_ComputeDigitalGains
  860. 0.00% pc_network_thre libc-2.31.so [.] __libc_disable_asynccancel
  861. 0.00% EgoSystem libstdc++.so.6.0.28 [.] __cxxabiv1::__vmi_class_type_info::__do_dyncast
  862. 0.00% pc_network_thre EgoSystem [.] cricket::Port::Network
  863. 0.00% AudioEncoder EgoSystem [.] silk_NLSF_encode
  864. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8TemporalLayers::NextFrameConfig
  865. 0.00% EncoderQueue EgoSystem [.] vpx_get4x4sse_cs_neon
  866. 0.00% PacerThread EgoSystem [.] rtc::ScopedYieldPolicy::YieldExecution
  867. 0.00% rtp_send_contro EgoSystem [.] webrtc::AlrDetector::OnBytesSent
  868. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendStatisticsProxy::DataCountersUpdated
  869. 0.00% pc_network_thre EgoSystem [.] rtc::SocketAddress::ToSockAddrStorage
  870. 0.00% SharedModThread libpthread-2.31.so [.] pthread_cond_timedwait@@GLIBC_2.17
  871. 0.00% EncoderQueue EgoSystem [.] vp8_drop_encodedframe_overshoot
  872. 0.00% PacerThread EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::SendSideDelayUpdated(int, int, unsigned long, unsigned int)
  873. 0.00% EgoSystem EgoSystem [.] rtc::TaskQueue::PostTask
  874. 0.00% SharedModThread libpthread-2.31.so [.] __pthread_mutex_lock
  875. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::Aec3Fft::PaddedFft
  876. 0.00% rtp_send_contro libc-2.31.so [.] epoll_pwait
  877. 0.00% EncoderQueue libpthread-2.31.so [.] __aarch64_cas8_acq
  878. 0.00% rtp_send_contro EgoSystem [.] absl::inlined_vector_internal::Storage<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> >, 4ul, std::allocator<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > > >::Swap
  879. 0.00% EgoSystem libc-2.31.so [.] __aarch64_swp4_rel
  880. 0.00% pc_network_thre EgoSystem [.] webrtc::SrtpTransport::IsSrtpActive
  881. 0.00% EncoderQueue libc-2.31.so [.] __aarch64_cas4_acq
  882. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RmsLevel::Analyze
  883. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_AnalysisQMF
  884. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_float<double>
  885. 0.00% EncoderQueue EgoSystem [.] rtc::RateTracker::ComputeRateForInterval
  886. 0.00% EgoSystem libc-2.31.so [.] __uselocale
  887. 0.00% pc_network_thre EgoSystem [.] cricket::BaseChannel::OnMessage
  888. 0.00% EncoderQueue EgoSystem [.] validate_config
  889. 0.00% EncoderQueue EgoSystem [.] vp8_receive_raw_frame
  890. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::OnAddPacket(webrtc::RtpPacketSendInfo const&)::$_12>::Run
  891. 0.00% EncoderQueue EgoSystem [.] vpx_v_predictor_8x8_neon
  892. 0.00% PacerThread EgoSystem [.] webrtc::IntervalBudget::set_target_rate_kbps
  893. 0.00% EncoderQueue EgoSystem [.] webrtc::LibvpxVp8Encoder::UpdateVpxConfiguration
  894. 0.00% pc_network_thre EgoSystem [.] rtc::ProcessEvents
  895. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FilterAnalyzer::PreProcessFilters
  896. 0.00% EncoderQueue EgoSystem [.] init_encode_frame_mb_context
  897. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskBase::Run
  898. 0.00% AudioEncoder EgoSystem [.] opus_custom_encoder_ctl
  899. 0.00% Thread 0x0x326b EgoSystem [.] std::map<unsigned int, webrtc::Samples::Stats, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, webrtc::Samples::Stats> > >::operator[]
  900. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::sentry::sentry
  901. 0.00% pc_network_thre EgoSystem [.] _vpaes_encrypt_preheat
  902. 0.00% EncoderQueue EgoSystem [.] webrtc::StatsCounter::TryProcess
  903. 0.00% AudioEncoder EgoSystem [.] clt_compute_allocation
  904. 0.00% AudioEncoder libc-2.31.so [.] malloc
  905. 0.00% AudioEncoder EgoSystem [.] op_pvq_search_c
  906. 0.00% EgoSystem libc-2.31.so [.] __nanosleep
  907. 0.00% PacerThread EgoSystem [.] rtc::CopyOnWriteBuffer::~CopyOnWriteBuffer
  908. 0.00% threaded-ml libpthread-2.31.so [.] __pthread_mutex_lock
  909. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  910. 0.00% EncoderQueue EgoSystem [.] webrtc::RoundRobinPacketQueue::Push
  911. 0.00% PacerThread EgoSystem [.] webrtc::PacingController::UpdateBudgetWithElapsedTime
  912. 0.00% EncoderQueue EgoSystem [.] webrtc::OveruseFrameDetector::FrameCaptured
  913. 0.00% AudioEncoder EgoSystem [.] silk_NSQ_del_dec_c
  914. 0.00% AudioEncoder EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::voe::(anonymous namespace)::ChannelSend::ProcessAndEncodeAudio(std::unique_ptr<webrtc::AudioFrame, std::default_delete<webrtc::AudioFrame> >)::$_6>::Run
  915. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ResidualEchoEstimator::UpdateRenderNoisePower
  916. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SubbandErleEstimator::Update
  917. 0.00% EncoderQueue EgoSystem [.] webrtc::AlignedFree
  918. 0.00% AudioEncoder libc-2.31.so [.] _int_malloc
  919. 0.00% PacerThread EgoSystem [.] rtc::Thread::Post
  920. 0.00% EgoSystem libc-2.31.so [.] _IO_fwrite
  921. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002afc0
  922. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocket::SendTo
  923. 0.00% PacerThread EgoSystem [.] webrtc::PacingController::GetPendingPacket
  924. 0.00% EgoSystem EgoSystem [.] CCanBusSensor::CanSendProc
  925. 0.00% AudioEncoder EgoSystem [.] exp_rotation
  926. 0.00% rtp_send_contro EgoSystem [.] webrtc::TrendlineEstimator::UpdateTrendline
  927. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::RecThreadProcess
  928. 0.00% EncoderQueue EgoSystem [.] std::map<webrtc::Vp8FrameConfig::Vp8BufferReference, unsigned long, std::less<webrtc::Vp8FrameConfig::Vp8BufferReference>, std::allocator<std::pair<webrtc::Vp8FrameConfig::Vp8BufferReference const, unsigned long> > >::operator[]
  929. 0.00% PacerThread EgoSystem [.] std::__adjust_heap<__gnu_cxx::__normal_iterator<webrtc::RoundRobinPacketQueue::QueuedPacket*, std::vector<webrtc::RoundRobinPacketQueue::QueuedPacket, std::allocator<webrtc::RoundRobinPacketQueue::QueuedPacket> > >, long, webrtc::RoundRobinPacketQueue::QueuedPacket, __gnu_cxx::__ops::_Iter_comp_iter<std::less<webrtc::RoundRobinPacketQueue::QueuedPacket> > >
  930. 0.00% Thread 0x0x326b EgoSystem [.] sigslot::_opaque_connection::emitter<webrtc::PeerConnection, rtc::SentPacket const&>
  931. 0.00% pc_network_thre EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::Release
  932. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::AllocateRawExtension
  933. 0.00% EncoderQueue EgoSystem [.] vp8_mv_bit_cost
  934. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpTransportControllerSend::UpdateControllerWithTimeInterval
  935. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::PushSincResampler::Resample
  936. 0.00% pc_network_thre EgoSystem [.] srtp_aes_icm_openssl_encrypt
  937. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::_Rb_tree_insert_and_rebalance
  938. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocket::GetLocalAddress
  939. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpVideoSender::OnPacketFeedbackVector
  940. 0.00% EncoderQueue EgoSystem [.] vp8_loop_filter_frame_init
  941. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002afd8
  942. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameDependenciesCalculator::FromBuffersUsage
  943. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ComputeErl
  944. 0.00% PacerThread EgoSystem [.] webrtc::RealTimeClock::CurrentTime
  945. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskImpl<webrtc::RtpTransportControllerSend::StartProcessPeriodicTasks()::$_15>::RunClosure
  946. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::StatsCounter::TryProcess
  947. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::locale::id::_M_id
  948. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoEncoder::EncoderInfo::EncoderInfo
  949. 0.00% EncoderQueue EgoSystem [.] rtc::RateTracker::AddSamples
  950. 0.00% EgoSystem libstdc++.so.6.0.28 [.] clock_gettime@plt
  951. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::use_facet<std::ctype<char> >
  952. 0.00% PacerThread EgoSystem [.] webrtc::ProcessThreadImpl::Run
  953. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::Post
  954. 0.00% EncoderQueue EgoSystem [.] webrtc::internal::VideoSendStreamImpl::OnEncodedImage
  955. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::UDPPort, rtc::AsyncPacketSocket*, rtc::SentPacket const&>
  956. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::EmptyQueuedRenderAudioLocked
  957. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::OnIncomingFrame
  958. 0.00% rtp_send_contro libc-2.31.so [.] unlink_chunk.isra.0
  959. 0.00% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::ReadyToSend
  960. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioBuffer::ExportSplitChannelData
  961. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSenderVideo::SendEncodedImage
  962. 0.00% EgoSystem libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  963. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] _XReply
  964. 0.00% EncoderQueue EgoSystem [.] vpx_dc_top_predictor_16x16_neon
  965. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_swp4_rel
  966. 0.00% EncoderQueue EgoSystem [.] vpx_codec_get_cx_data
  967. 0.00% EncoderQueue EgoSystem [.] vpx_dc_left_predictor_16x16_neon
  968. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002afd8
  969. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::Aec3Fft::ZeroPaddedFft
  970. 0.00% threaded-ml [unknown] [k] 0xffffd213435dcfa4
  971. 0.00% rtp_send_contro EgoSystem [.] std::vector<webrtc::PacketResult, std::allocator<webrtc::PacketResult> >::push_back
  972. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_get_latency
  973. 0.00% EncoderQueue EgoSystem [.] vp8_encode_intra4x4block
  974. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memexport_process_release
  975. 0.00% EncoderQueue EgoSystem [.] webrtc::OveruseFrameDetector::FrameSent
  976. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::BlockProcessorImpl::SetAudioBufferDelay
  977. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1l> >::duration<long, void>
  978. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::VadAudioProc::ExtractFeatures
  979. 0.00% EncoderQueue EgoSystem [.] webrtc::DefaultTemporalLayers::UpdateSearchOrder
  980. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::PushSincResampler::Run
  981. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::UmaSamplesContainer::RemoveOld
  982. 0.00% pc_network_thre EgoSystem [.] webrtc::RtpTransport::SendPacket
  983. 0.00% AudioEncoder EgoSystem [.] silk_apply_sine_window
  984. 0.00% pc_network_thre EgoSystem [.] rtc::TimeMillis
  985. 0.00% AudioEncoder EgoSystem [.] silk_ana_filt_bank_1
  986. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000000l> >::zero
  987. 0.00% webrtc_audio_mo [unknown] [k] 0xffffd213435dcfa4
  988. 0.00% webrtc_audio_mo libpthread-2.31.so [.] pthread_cond_timedwait@@GLIBC_2.17
  989. 0.00% EncoderQueue EgoSystem [.] vp8_regulate_q
  990. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::internal::AudioSendStream::SendAudioData
  991. 0.00% EncoderQueue EgoSystem [.] vp8_build_block_doffsets
  992. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  993. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NormalizedCovarianceEstimator::Update
  994. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_fdsem_after_poll
  995. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_cas4_acq
  996. 0.00% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::Empty
  997. 0.00% EncoderQueue EgoSystem [.] std::map<int, webrtc::SendStatisticsProxy::QpCounters, std::less<int>, std::allocator<std::pair<int const, webrtc::SendStatisticsProxy::QpCounters> > >::operator[]
  998. 0.00% AudioEncoder EgoSystem [.] quant_partition
  999. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<webrtc::DecodeTargetIndication, 10ul, std::allocator<webrtc::DecodeTargetIndication> >::Assign<absl::inlined_vector_internal::IteratorValueAdapter<std::allocator<webrtc::DecodeTargetIndication>, webrtc::DecodeTargetIndication const*> >
  1000. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::Call::DeliverRtcp
  1001. 0.00% threaded-ml libc-2.31.so [.] __libc_disable_asynccancel
  1002. 0.00% AudioEncoder EgoSystem [.] gain_fade
  1003. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketizer::Create
  1004. 0.00% PacerThread EgoSystem [.] pthread_mutex_lock@plt
  1005. 0.00% rtp_send_contro EgoSystem [.] webrtc::GoogCcNetworkController::MaybeTriggerOnNetworkChanged
  1006. 0.00% Thread 0x0x326b EgoSystem [.] rtc::TimeMillis
  1007. 0.00% EncoderQueue EgoSystem [.] vp8_loopfilter_frame
  1008. 0.00% rtp_send_contro EgoSystem [.] webrtc::TaskQueueBase::Current
  1009. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::UpdateMinHistory
  1010. 0.00% EncoderQueue EgoSystem [.] vp8_write_mvprobs
  1011. 0.00% PacerThread EgoSystem [.] non-virtual thunk to cricket::BaseChannel::SendPacket(rtc::CopyOnWriteBuffer*, rtc::PacketOptions const&)
  1012. 0.00% EgoSystem EgoSystem [.] CanonicalFourCC
  1013. 0.00% rtp_send_contro EgoSystem [.] webrtc::RateControlSettings::UseCongestionWindow
  1014. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpDependencyDescriptorWriter::FindBestTemplate
  1015. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1l> >::count
  1016. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] xcb_writev
  1017. 0.00% AudioEncoder EgoSystem [.] silk_VAD_GetSA_Q8_c
  1018. 0.00% threaded-ml libpulsecommon-13.99.so [.] pthread_mutex_lock@plt
  1019. 0.00% EgoSystem EgoSystem [.] ConvertToI420
  1020. 0.00% pc_network_thre EgoSystem [.] OPENSSL_free
  1021. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SuppressionGain::GetGain
  1022. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::bitrv2
  1023. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_rtclock_get
  1024. 0.00% Thread 0x0x326b libc-2.31.so [.] __aarch64_swp4_rel
  1025. 0.00% pc_network_thre EgoSystem [.] SHA1_Final
  1026. 0.00% EncoderQueue EgoSystem [.] update
  1027. 0.00% rtp_send_contro EgoSystem [.] webrtc::AlrDetector::GetApplicationLimitedRegionStartTime
  1028. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ResidualEchoDetector::AnalyzeRenderAudio
  1029. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_swp4_acq
  1030. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::I420Buffer>::Release
  1031. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_mutex_lock@plt
  1032. 0.00% PacerThread EgoSystem [.] webrtc::PacedSender::TimeUntilNextProcess
  1033. 0.00% EncoderQueue EgoSystem [.] rtc::TimeMillis
  1034. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::CoarseFilterUpdateGain::Compute
  1035. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::DropDueToSize
  1036. 0.00% PacerThread EgoSystem [.] rtc::ThreadManager::Instance
  1037. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacketHistory::CullOldPackets
  1038. 0.00% rtp_send_contro EgoSystem [.] non-virtual thunk to webrtc::PacedSender::UpdateOutstandingData(webrtc::DataSize)
  1039. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::WebRtcAgc_ProcessVad
  1040. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FilterAnalyzer::AnalyzeRegion
  1041. 0.00% EncoderQueue EgoSystem [.] vp8_initialize_rd_consts
  1042. 0.00% EncoderQueue EgoSystem [.] rtc::MovingAverage::AddSample
  1043. 0.00% pc_network_thre EgoSystem [.] std::_Function_handler<void (rtc::CopyOnWriteBuffer const&, long), webrtc::PeerConnection::InitializeRtcpCallback()::$_19>::_M_invoke
  1044. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FrameBlocker::InsertSubFrameAndExtractBlock
  1045. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::__ostream_insert<char, std::char_traits<char> >
  1046. 0.00% pc_network_thre EgoSystem [.] srtp_protect
  1047. 0.00% EncoderQueue EgoSystem [.] vp8_update_rate_correction_factors
  1048. 0.00% AudioEncoder libpthread-2.31.so [.] __pthread_mutex_lock
  1049. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SuppressionGain::GetMinGain
  1050. 0.00% rtp_send_contro EgoSystem [.] webrtc::PacingController::UpdateOutstandingData
  1051. 0.00% rtp_send_contro EgoSystem [.] webrtc::DelayBasedBwe::IncomingPacketFeedbackVector
  1052. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameEncodeMetadataWriter::ExtractEncodeStartTimeAndFillMetadata
  1053. 0.00% pc_network_thre EgoSystem [.] srtp_hmac_compute
  1054. 0.00% EgoSystem EgoSystem [.] VideoFrameObserver::OnFrame
  1055. 0.00% Thread 0x0x326b EgoSystem [.] rtc::Event::Wait
  1056. 0.00% pc_network_thre EgoSystem [.] rtc::SocketAddressFromSockAddrStorage
  1057. 0.00% AudioEncoder EgoSystem [.] silk_NLSF2A
  1058. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpDependencyDescriptorWriter::CalculateMatch
  1059. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<long, long, std::_Identity<long>, std::less<long>, std::allocator<long> >::_M_erase
  1060. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::_Rb_tree_rebalance_for_erase
  1061. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacketToSend::operator=
  1062. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::locale::facet::_S_get_c_locale
  1063. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<unsigned char, 4ul, std::allocator<unsigned char> >::Assign<absl::inlined_vector_internal::IteratorValueAdapter<std::allocator<unsigned char>, unsigned char const*> >
  1064. 0.00% EncoderQueue EgoSystem [.] vp8_reverse_trans
  1065. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::S16ToFloatS16
  1066. 0.00% PacerThread EgoSystem [.] std::_Rb_tree<webrtc::RtpPacketHistory::StoredPacket*, webrtc::RtpPacketHistory::StoredPacket*, std::_Identity<webrtc::RtpPacketHistory::StoredPacket*>, webrtc::RtpPacketHistory::MoreUseful, std::allocator<webrtc::RtpPacketHistory::StoredPacket*> >::equal_range
  1067. 0.00% AudioEncoder EgoSystem [.] epoll_dispatch
  1068. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RenderDelayControllerMetrics::Update
  1069. 0.00% PacerThread EgoSystem [.] webrtc::PacedPacketInfo::PacedPacketInfo
  1070. 0.00% AudioEncoder EgoSystem [.] silk_control_encoder
  1071. 0.00% PacerThread EgoSystem [.] webrtc::PacedSender::Process
  1072. 0.00% PacerThread EgoSystem [.] rtc::TimeMillis
  1073. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblock_unref
  1074. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamInputStateProvider::OnFrameSizeObserved
  1075. 0.00% pc_network_thre EgoSystem [.] rtc::CopySocketInformationToPacketInfo
  1076. 0.00% rtp_send_contro EgoSystem [.] rtc::TimeMillis
  1077. 0.00% pc_network_thre EgoSystem [.] v128_copy_octet_string
  1078. 0.00% EgoSystem EgoSystem [.] std::chrono::_V2::system_clock::now@plt
  1079. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::voe::AudioLevel::ComputeLevel
  1080. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8TemporalLayers::OnEncodeDone
  1081. 0.00% EncoderQueue libc-2.31.so [.] memcmp
  1082. 0.00% pc_network_thre EgoSystem [.] rtc::IPAddress::overhead
  1083. 0.00% EncoderQueue EgoSystem [.] vpx_tm_predictor_8x8_neon
  1084. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::ProcessStream
  1085. 0.00% Thread 0x0x326b libc-2.31.so [.] unlink_chunk.isra.0
  1086. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendStatisticsProxy::GetStatsEntry
  1087. 0.00% pc_network_thre EgoSystem [.] HMAC_Final
  1088. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<webrtc::RtpPacketHistory::StoredPacket*, webrtc::RtpPacketHistory::StoredPacket*, std::_Identity<webrtc::RtpPacketHistory::StoredPacket*>, webrtc::RtpPacketHistory::MoreUseful, std::allocator<webrtc::RtpPacketHistory::StoredPacket*> >::equal_range
  1089. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FilterAnalyzer::ConsistentFilterDetector::Detect
  1090. 0.00% pc_network_thre EgoSystem [.] cricket::DtlsTransport::OnReadPacket
  1091. 0.00% pc_network_thre EgoSystem [.] rtc::AsyncUDPSocket::OnReadEvent
  1092. 0.00% rtp_send_contro EgoSystem [.] webrtc::AcknowledgedBitrateEstimator::SetAlr
  1093. 0.00% EncoderQueue EgoSystem [.] vp8_save_coding_context
  1094. 0.00% webrtc_audio_mo libm-2.31.so [.] logf@@GLIBC_2.27
  1095. 0.00% EncoderQueue EgoSystem [.] webrtc::PacedSender::EnqueuePackets
  1096. 0.00% webrtc_audio_mo libc-2.31.so [.] _int_malloc
  1097. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::VoiceActivityDetector::ProcessChunk
  1098. 0.00% pc_network_thre EgoSystem [.] srtp_auth_get_tag_length
  1099. 0.00% PacerThread EgoSystem [.] rtc::Thread::IsQuitting
  1100. 0.00% rtp_send_contro EgoSystem [.] event_del
  1101. 0.00% rtp_send_contro EgoSystem [.] webrtc::BitrateEstimator::Update
  1102. 0.00% PacerThread EgoSystem [.] non-virtual thunk to webrtc::RtpTransportControllerSend::OnAddPacket(webrtc::RtpPacketSendInfo const&)
  1103. 0.00% rtp_send_contro EgoSystem [.] webrtc::PendingTaskSafetyFlag::alive
  1104. 0.00% EgoSystem EgoSystem [.] rtc::RefCountedObject<webrtc::I420Buffer>::Release
  1105. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::OouraFft::cftbsub_128
  1106. 0.00% EgoSystem libc-2.31.so [.] _IO_file_overflow@@GLIBC_2.17
  1107. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocketServer::Wait
  1108. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpTransportControllerSend::PostUpdates
  1109. 0.00% pc_network_thre EgoSystem [.] rtc::CopyOnWriteBuffer::~CopyOnWriteBuffer
  1110. 0.00% pc_network_thre EgoSystem [.] rtc::PacketOptions::~PacketOptions
  1111. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoEncoder::EncoderInfo::operator==
  1112. 0.00% EgoSystem EgoSystem [.] std::this_thread::sleep_for<long, std::ratio<1l, 1000l> >
  1113. 0.00% EgoSystem libc-2.31.so [.] _int_free
  1114. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::TransportFeedback::Parse
  1115. 0.00% PacerThread libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  1116. 0.00% EncoderQueue EgoSystem [.] vp8_lookahead_pop
  1117. 0.00% EncoderQueue EgoSystem [.] vpx_codec_pkt_list_add
  1118. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::Run
  1119. 0.00% EncoderQueue EgoSystem [.] webrtc::RateCounter::Add
  1120. 0.00% EncoderQueue EgoSystem [.] sem_post@plt
  1121. 0.00% AudioEncoder EgoSystem [.] compute_theta
  1122. 0.00% PacerThread EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::TrySendPacket
  1123. 0.00% EgoSystem libc-2.31.so [.] _IO_file_xsputn@@GLIBC_2.17
  1124. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSenderVideo::UpdateConditionalRetransmit
  1125. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::EmptyRenderQueue
  1126. 0.00% PacerThread libstdc++.so.6.0.28 [.] operator new
  1127. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameEncodeMetadataWriter::FillTimingInfo
  1128. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ReverbDecayEstimator::Update
  1129. 0.00% Thread 0x0x326b libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  1130. 0.00% AudioEncoder EgoSystem [.] encode_pulses
  1131. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::AnalyzeCapture
  1132. 0.00% EncoderQueue EgoSystem [.] webrtc::FecControllerDefault::UpdateWithEncodedData
  1133. 0.00% EncoderQueue EgoSystem [.] webrtc::PacingController::EnqueuePacket
  1134. 0.00% EncoderQueue EgoSystem [.] set_reference_and_update
  1135. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoderOpusImpl::EncodeImpl
  1136. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPVideoHeader::GenericDescriptorInfo::GenericDescriptorInfo
  1137. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::RenderDelayBufferImpl::PrepareCaptureProcessing
  1138. 0.00% EgoSystem libc-2.31.so [.] __printf_fp
  1139. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::_M_insert_float<double>@plt
  1140. 0.00% PacerThread EgoSystem [.] webrtc::PacketOptions::PacketOptions
  1141. 0.00% EncoderQueue EgoSystem [.] vpx_ve_predictor_4x4_c
  1142. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::SendProcessingUsage1::FrameCaptured
  1143. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002afc0
  1144. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::ProcessRecordedData
  1145. 0.00% EgoSystem libc-2.31.so [.] new_do_write
  1146. 0.00% rtp_send_contro libm-2.31.so [.] exp@@GLIBC_2.29
  1147. 0.00% pc_network_thre EgoSystem [.] EVP_EncryptInit_ex
  1148. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] malloc@plt
  1149. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<double, std::ratio<1l, 1000l> >, std::ratio<1l, 1000000l>, double, true, false>::__cast<long, std::ratio<1l, 1000000000l> >
  1150. 0.00% PacerThread EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  1151. 0.00% pc_network_thre libc-2.31.so [.] unlink_chunk.isra.0
  1152. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::Clear
  1153. 0.00% PacerThread EgoSystem [.] webrtc::RtcEvent::RtcEvent
  1154. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::put
  1155. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_cas4_acq
  1156. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::aec3::UpdateDbMetric
  1157. 0.00% SharedModThread libc-2.31.so [.] malloc
  1158. 0.00% EgoSystem libc-2.31.so [.] __libc_alloca_cutoff
  1159. 0.00% AudioEncoder EgoSystem [.] silk_sum_sqr_shift
  1160. 0.00% EgoSystem libstdc++.so.6.0.28 [.] strlen@plt
  1161. 0.00% EgoSystem libc-2.31.so [.] __memcpy_generic
  1162. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_srbchannel_write
  1163. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::PeerConnection::InitializeRtcpCallback()::$_19::operator()(rtc::CopyOnWriteBuffer const&, long) const::{lambda()#1}>::Run
  1164. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetPayloadType
  1165. 0.00% rtp_send_contro EgoSystem [.] event_add
  1166. 0.00% pc_network_thre EgoSystem [.] cricket::AllocationSequence::OnReadPacket
  1167. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPayloadParams::GetRtpVideoHeader
  1168. 0.00% EncoderQueue EgoSystem [.] rtc::TaskQueue::IsCurrent
  1169. 0.00% EgoSystem libc-2.31.so [.] _IO_old_init
  1170. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::RtpSenderEgress::SendPacket(webrtc::RtpPacketToSend*, webrtc::PacedPacketInfo const&)::$_3>::~SafetyClosureTask
  1171. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::TimeToSendRTCPReport
  1172. 0.00% EncoderQueue EgoSystem [.] vpx_codec_encode
  1173. 0.00% AudioEncoder EgoSystem [.] run_prefilter
  1174. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::_M_insert<double>
  1175. 0.00% pc_network_thre EgoSystem [.] srtp_key_limit_update
  1176. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResourceManager::OnEncodeCompleted
  1177. 0.00% AudioEncoder EgoSystem [.] silk_encode_frame_FIX
  1178. 0.00% AudioEncoder EgoSystem [.] quant_all_bands
  1179. 0.00% EncoderQueue EgoSystem [.] vp8_lookahead_push
  1180. 0.00% EncoderQueue EgoSystem [.] vp8_dc_quant
  1181. 0.00% AudioEncoder EgoSystem [.] dynalloc_analysis
  1182. 0.00% EncoderQueue EgoSystem [.] webrtc::ChainDiffCalculator::ChainDiffs
  1183. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSender::AllocatePacket
  1184. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::RenderWriter::Insert
  1185. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_mutex_cond_lock
  1186. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::OouraFft::cftfsub_128
  1187. 0.00% PacerThread EgoSystem [.] pthread_mutex_unlock@plt
  1188. 0.00% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::Size
  1189. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::num_put<char, std::ostreambuf_iterator<char, std::char_traits<char> > >::do_put
  1190. 0.00% EgoSystem libc-2.31.so [.] __select
  1191. 0.00% threaded-ml libc-2.31.so [.] __poll
  1192. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] pthread_mutex_lock@plt
  1193. 0.00% AudioEncoder EgoSystem [.] normalise_bands
  1194. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpTransportControllerSend::OnSentPacket
  1195. 0.00% PacerThread EgoSystem [.] operator new@plt
  1196. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::SetPayloadType
  1197. 0.00% EncoderQueue EgoSystem [.] vp8_intra4x4_predict
  1198. 0.00% rtp_send_contro libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  1199. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::CropAndScaleFrom
  1200. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTCPReceiver::ParseCompoundPacket
  1201. 0.00% AudioEncoder EgoSystem [.] compute_band_energies
  1202. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_thread_is_running
  1203. 0.00% pc_network_thre EgoSystem [.] srtp_rdbx_estimate_index
  1204. 0.00% PacerThread libpthread-2.31.so [.] _pthread_cleanup_pop
  1205. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResourceManager::DropInitialFrames
  1206. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::internal::VideoSendStreamImpl::OnEncodedImage(webrtc::EncodedImage const&, webrtc::CodecSpecificInfo const*)::$_5&>::Run
  1207. 0.00% AudioEncoder EgoSystem [.] silk_k2a_Q16
  1208. 0.00% PacerThread EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  1209. 0.00% EncoderQueue EgoSystem [.] std::vector<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> >, std::allocator<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> > > >::_M_realloc_insert<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> > >
  1210. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::PlayThreadProcess
  1211. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<webrtc::CodecBufferUsage, 8ul, std::allocator<webrtc::CodecBufferUsage> >::EmplaceBack<int&, bool&, bool&>
  1212. 0.00% AudioEncoder libc-2.31.so [.] __libc_disable_asynccancel
  1213. 0.00% rtp_send_contro EgoSystem [.] webrtc::AcknowledgedBitrateEstimator::IncomingPacketFeedbackVector
  1214. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000000000l> >::count
  1215. 0.00% rtp_send_contro EgoSystem [.] non-virtual thunk to webrtc::PacedSender::ExpectedQueueTime() const
  1216. 0.00% EncoderQueue EgoSystem [.] vp8_fix_contexts
  1217. 0.00% PacerThread EgoSystem [.] webrtc::PacingController::UpdateBudgetWithSentData
  1218. 0.00% pc_network_thre EgoSystem [.] EVP_EncryptUpdate
  1219. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_ldclr4_rel
  1220. 0.00% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::OnReadPacket
  1221. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::VoiceDetection::ProcessCaptureAudio
  1222. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_DownsampleBy2
  1223. 0.00% rtp_send_contro libpthread-2.31.so [.] __libc_read
  1224. 0.00% Thread 0x0x326b EgoSystem [.] rtc::Thread::Run
  1225. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::MaybeLogLossBasedEvent
  1226. 0.00% AudioEncoder EgoSystem [.] event_active
  1227. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::put@plt
  1228. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::BlockProcessorImpl::ProcessCapture
  1229. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::aec3::MovingAverage::Average
  1230. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::VideoSendStreamImpl::DeliverRtcp
  1231. 0.00% EncoderQueue EgoSystem [.] webrtc::AbsoluteCaptureTimeReceiver::GetSource
  1232. 0.00% webrtc_audio_mo EgoSystem [.] rtc::TaskQueue::PostTask
  1233. 0.00% pc_network_thre EgoSystem [.] EVP_EncryptFinal_ex
  1234. 0.00% EncoderQueue EgoSystem [.] rtc::internal::RaceCheckerScope::RaceCheckerScope
  1235. 0.00% AudioEncoder EgoSystem [.] _celt_autocorr
  1236. 0.00% EncoderQueue EgoSystem [.] webrtc::media_optimization::VCMLossProtectionLogic::UpdatePacketsPerFrame
  1237. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_getspecific
  1238. 0.00% EncoderQueue libpthread-2.31.so [.] _pthread_cleanup_push
  1239. 0.00% pc_network_thre libc-2.31.so [.] __aarch64_cas8_rel
  1240. 0.00% EgoSystem EgoSystem [.] I420Scale
  1241. 0.00% PacerThread EgoSystem [.] std::_Rb_tree<unsigned short, std::pair<unsigned short const, webrtc::SendDelayStats::Packet>, std::_Select1st<std::pair<unsigned short const, webrtc::SendDelayStats::Packet> >, webrtc::SendDelayStats::SequenceNumberOlderThan, std::allocator<std::pair<unsigned short const, webrtc::SendDelayStats::Packet> > >::_M_emplace_unique<std::pair<unsigned short, webrtc::SendDelayStats::Packet> >
  1242. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::OnReadPacket
  1243. 0.00% EncoderQueue EgoSystem [.] webrtc::PacingController::EnqueuePacketInternal
  1244. 0.00% EncoderQueue EgoSystem [.] vp8_cal_dissimilarity
  1245. 0.00% EncoderQueue libm-2.31.so [.] powf@GLIBC_2.17
  1246. 0.00% threaded-ml libc-2.31.so [.] __memcpy_generic
  1247. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::UpdateTargetBitrate
  1248. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_threaded_mainloop_lock
  1249. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<webrtc::RtpTransport, rtc::PacketTransportInternal*, rtc::SentPacket const&>
  1250. 0.00% rtp_send_contro EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::DataCountersUpdated(webrtc::StreamDataCounters const&, unsigned int)
  1251. 0.00% PacerThread EgoSystem [.] webrtc::AbsoluteSendTime::Write
  1252. 0.00% PacerThread EgoSystem [.] webrtc::TransportSequenceNumber::Write
  1253. 0.00% rtp_send_contro EgoSystem [.] webrtc::ProbeController::Process
  1254. 0.00% Thread 0x0x326b EgoSystem [.] rtc::Thread::QueuedTaskHandler::OnMessage
  1255. 0.00% EgoSystem libc-2.31.so [.] _IO_file_sync@@GLIBC_2.17
  1256. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SqrtFastApproximation
  1257. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameDropper::Leak
  1258. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelReceive::GetAudioFrameWithInfo
  1259. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SubbandErleEstimator::UpdateAccumulatedSpectra
  1260. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AdaptiveFirFilter::ConstrainAndUpdateImpulseResponse
  1261. 0.00% AudioEncoder EgoSystem [.] quant_band
  1262. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameDropper::Fill
  1263. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000000l> >::count
  1264. 0.00% pc_network_thre EgoSystem [.] cricket::IsValidRtpPacketSize
  1265. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000000000l> >::duration<long, void>
  1266. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] malloc@plt
  1267. 0.00% EgoSystem libstdc++.so.6.0.28 [.] __uselocale@plt
  1268. 0.00% EncoderQueue EgoSystem [.] vp8cx_initialize_me_consts
  1269. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcVad_CalcVad8khz
  1270. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::RtpSenderEgress::SendPacket(webrtc::RtpPacketToSend*, webrtc::PacedPacketInfo const&)::$_3>::Run
  1271. 0.00% EgoSystem EgoSystem [.] std::lock_guard<std::mutex>::lock_guard
  1272. 0.00% pc_network_thre libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  1273. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::ModuleRtpRtcpImpl2::Process()
  1274. 0.00% EncoderQueue EgoSystem [.] webrtc::DefaultTemporalLayers::UpdateConfiguration
  1275. 0.00% PacerThread libstdc++.so.6.0.28 [.] malloc@plt
  1276. 0.00% EncoderQueue EgoSystem [.] bcmp@plt
  1277. 0.00% EncoderQueue libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  1278. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::PostTask
  1279. 0.00% rtp_send_contro EgoSystem [.] pthread_mutex_lock@plt
  1280. 0.00% EgoSystem libc-2.31.so [.] _IO_putc
  1281. 0.00% EncoderQueue libpthread-2.31.so [.] __aarch64_ldadd8_relax
  1282. 0.00% rtp_send_contro EgoSystem [.] webrtc::InterArrival::ComputeDeltas
  1283. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::SetAudioBufferDelay
  1284. 0.00% pc_network_thre libpthread-2.31.so [.] __libc_sendto
  1285. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketizerVp8::NextPacket
  1286. 0.00% EgoSystem EgoSystem [.] std::chrono::operator-<long, std::ratio<1l, 1000000000l>, long, std::ratio<1l, 1000000000l> >
  1287. 0.00% pc_network_thre EgoSystem [.] rtc::CopyOnWriteBuffer::UnshareAndEnsureCapacity
  1288. 0.00% EgoSystem libstdc++.so.6.0.28 [.] __gnu_cxx::stdio_sync_filebuf<char, std::char_traits<char> >::xsputn
  1289. 0.00% PacerThread EgoSystem [.] rtc::TimeMicros
  1290. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x00000000000316f8
  1291. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> >, 4ul, std::allocator<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > > >::Swap
  1292. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::IsQuitting
  1293. 0.00% EncoderQueue libpthread-2.31.so [.] do_futex_wait.constprop.0
  1294. 0.00% PacerThread libstdc++.so.6.0.28 [.] free@plt
  1295. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceBuffer::DeliverRecordedData
  1296. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_once_begin
  1297. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_srbchannel_read
  1298. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSender::EnqueuePackets
  1299. 0.00% EncoderQueue EgoSystem [.] vp8_set_quantizer
  1300. 0.00% EncoderQueue EgoSystem [.] webrtc::SimulcastUtility::IsConferenceModeScreenshare
  1301. 0.00% EgoSystem libc-2.31.so [.] __vsnprintf_internal
  1302. 0.00% SharedModThread [unknown] [k] 0xffffd213435dcfa4
  1303. 0.00% AudioEncoder EgoSystem [.] quant_coarse_energy_impl
  1304. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to webrtc::VideoStreamEncoder::OnEncodedImage(webrtc::EncodedImage const&, webrtc::CodecSpecificInfo const*)
  1305. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::OnSentPacket(rtc::SentPacket const&)::$_6>::~ClosureTask
  1306. 0.00% EncoderQueue EgoSystem [.] vp8_use_as_reference
  1307. 0.00% Thread 0x0x326b EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::Release
  1308. 0.00% PacerThread EgoSystem [.] webrtc::RTPSender::SendingMedia
  1309. 0.00% EncoderQueue libm-2.31.so [.] pow@GLIBC_2.17
  1310. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::P2PTransportChannel, rtc::SentPacket const&>
  1311. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] free@plt
  1312. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::BaseChannel, rtc::SentPacket const&>
  1313. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FullBandErleEstimator::Update
  1314. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::SendStatisticsProxy::GetStatsEntry
  1315. 0.00% pc_network_thre EgoSystem [.] srtp_rdbx_check
  1316. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketizer::SplitAboutEqually
  1317. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::PushSincResampler::Resample
  1318. 0.00% EncoderQueue EgoSystem [.] vp8_short_fdct4x4_neon
  1319. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::RtpPacket
  1320. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SplittingFilter::TwoBandsAnalysis
  1321. 0.00% rtp_send_contro EgoSystem [.] std::vector<webrtc::ProbeClusterConfig, std::allocator<webrtc::ProbeClusterConfig> >::_M_range_insert<__gnu_cxx::__normal_iterator<webrtc::ProbeClusterConfig*, std::vector<webrtc::ProbeClusterConfig, std::allocator<webrtc::ProbeClusterConfig> > > >
  1322. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::GetStatsEntry
  1323. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::GainControlImpl::AnalyzeCaptureAudio
  1324. 0.00% Thread 0x0x326b libc-2.31.so [.] _int_malloc
  1325. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSenderVideo::LogAndSendToNetwork
  1326. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_unhook
  1327. 0.00% EgoSystem libc-2.31.so [.] __libc_enable_asynccancel
  1328. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::ModuleRtpRtcpImpl2::TimeUntilNextProcess()
  1329. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_mainloop_prepare
  1330. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::LibvpxVp8Facade::codec_get_cx_data
  1331. 0.00% EgoSystem libc-2.31.so [.] _IO_file_write@@GLIBC_2.17
  1332. 0.00% PacerThread libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_hook
  1333. 0.00% webrtc_audio_mo EgoSystem [.] non-virtual thunk to webrtc::internal::AudioReceiveStream::PreferredSampleRate() const
  1334. 0.00% PacerThread EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  1335. 0.00% EgoSystem libc-2.31.so [.] __mpn_mul_1
  1336. 0.00% EgoSystem libc-2.31.so [.] __GI___libc_write
  1337. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AgcManagerDirect::AnalyzePreProcess
  1338. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::DtlsTransport, rtc::PacketTransportInternal*, rtc::SentPacket const&>
  1339. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::RenderDelayBufferImpl::SetAudioBufferDelay
  1340. 0.00% EncoderQueue EgoSystem [.] vp8_encode_value
  1341. 0.00% pc_network_thre EgoSystem [.] rtc::IPAddress::operator!=
  1342. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000000l> >::duration<long, void>
  1343. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_bytes_to_usec
  1344. 0.00% EgoSystem libc-2.31.so [.] __poll
  1345. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketizerVp8::BuildHeader
  1346. 0.00% AudioEncoder EgoSystem [.] webrtc::RTPSenderAudio::SendAudio
  1347. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpGenericFrameDescriptorExtension00::ValueSize
  1348. 0.00% pc_network_thre EgoSystem [.] webrtc::JsepTransportController::OnRtcpPacketReceived_n
  1349. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::AllocateExtension
  1350. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::AddRef
  1351. 0.00% EncoderQueue libc-2.31.so [.] __aarch64_swp8_acq
  1352. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memimport_get
  1353. 0.00% pc_network_thre EgoSystem [.] rtc::PacketOptions::PacketOptions
  1354. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::OnReadPacket
  1355. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<long, std::ratio<1l, 1l> >, std::ratio<1l, 1000000000l>, long, true, false>::__cast<long, std::ratio<1l, 1000000000l> >
  1356. 0.00% pc_network_thre EgoSystem [.] srtp_protect_rtcp_mki
  1357. 0.00% EncoderQueue libc-2.31.so [.] _setjmp
  1358. 0.00% pc_network_thre EgoSystem [.] memcpy@plt
  1359. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_hashmap_get
  1360. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoderOpusImpl::SampleRateHz
  1361. 0.00% EncoderQueue EgoSystem [.] vp8_start_encode
  1362. 0.00% webrtc_audio_mo EgoSystem [.] std::vector<float, std::allocator<float> >::_M_range_insert<float*>
  1363. 0.00% PacerThread EgoSystem [.] webrtc::ForwardErrorCorrection::Packet::Packet
  1364. 0.00% AudioEncoder EgoSystem [.] silk_process_gains_FIX
  1365. 0.00% pc_network_thre EgoSystem [.] webrtc::SrtpTransport::OnRtcpPacketReceived
  1366. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::locale::facet::_S_get_c_locale@plt
  1367. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_ldset4_relax
  1368. 0.00% pc_network_thre EgoSystem [.] srtp_hmac_start
  1369. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoEncoder::EncoderInfo::~EncoderInfo
  1370. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::LibvpxVp8Facade::codec_control
  1371. 0.00% PacerThread EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::PostTask
  1372. 0.00% rtp_send_contro EgoSystem [.] webrtc::AimdRateControl::GetExpectedBandwidthPeriod
  1373. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ExpandUmaLogger::UpdateSampleCounter
  1374. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, webrtc::DefaultTemporalLayers::PendingFrame>, std::_Select1st<std::pair<unsigned int const, webrtc::DefaultTemporalLayers::PendingFrame> >, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, webrtc::DefaultTemporalLayers::PendingFrame> > >::_M_emplace_hint_unique<std::piecewise_construct_t const&, std::tuple<unsigned int const&>, std::tuple<> >
  1375. 0.00% EgoSystem libc-2.31.so [.] _IO_default_xsputn
  1376. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<long, long, std::_Identity<long>, std::less<long>, std::allocator<long> >::_M_insert_unique<long const&>
  1377. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AdaptiveFirFilter::Constrain
  1378. 0.00% AudioEncoder EgoSystem [.] silk_find_pred_coefs_FIX
  1379. 0.00% pc_network_thre EgoSystem [.] rtc::SocketAddress::ipaddr
  1380. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::RenderDelayControllerImpl::GetDelay
  1381. 0.00% EncoderQueue libpthread-2.31.so [.] sem_wait@@GLIBC_2.17
  1382. 0.00% webrtc_audio_mo libm-2.31.so [.] __expm1f
  1383. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::UpdateReceiving
  1384. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_stream_peek
  1385. 0.00% EgoSystem libc-2.31.so [.] __mpn_extract_double
  1386. 0.00% threaded-ml EgoSystem [.] webrtc::AudioDeviceLinuxPulse::PaStreamReadCallbackHandler
  1387. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] xcb_writev@plt
  1388. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoder::Encode
  1389. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::OnTransportFeedback(webrtc::rtcp::TransportFeedback const&)::$_13>::Run
  1390. 0.00% EgoSystem EgoSystem [.] std::chrono::time_point<std::chrono::_V2::system_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >::time_since_epoch
  1391. 0.00% rtp_send_contro EgoSystem [.] webrtc::RoundRobinPacketQueue::Size
  1392. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_enable_asynccancel
  1393. 0.00% pc_network_thre EgoSystem [.] srtp_cipher_set_iv
  1394. 0.00% pc_network_thre libc-2.31.so [.] __GI___memset_generic
  1395. 0.00% EgoSystem EgoSystem [.] ScaleFilterReduce
  1396. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ResidualEchoEstimator::AddReverb
  1397. 0.00% EgoSystem EgoSystem [.] ScalePlane
  1398. 0.00% EgoSystem libc-2.31.so [.] _IO_fflush
  1399. 0.00% EncoderQueue EgoSystem [.] webrtc::LibvpxVp8Encoder::SteadyStateSize
  1400. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetExtensionLengthMaybeAddZeroPadding
  1401. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8FrameConfig::References
  1402. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_getspecific
  1403. 0.00% EncoderQueue EgoSystem [.] webrtc::ActiveDecodeTargetsHelper::OnFrame
  1404. 0.00% EgoSystem [unknown] [k] 0xffffd21344778074
  1405. 0.00% rtp_send_contro EgoSystem [.] rtc::CritScope::CritScope
  1406. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<long, std::ratio<1l, 1l> >, long, std::ratio<1l, 1000000000l> >
  1407. 0.00% webrtc_audio_mo libc-2.31.so [.] cfree@GLIBC_2.17
  1408. 0.00% PacerThread libstdc++.so.6.0.28 [.] operator new@plt
  1409. 0.00% EncoderQueue EgoSystem [.] vpx_dc_predictor_4x4_neon
  1410. 0.00% SharedModThread libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  1411. 0.00% threaded-ml [vdso] [.] __kernel_clock_gettime
  1412. 0.00% PacerThread EgoSystem [.] non-virtual thunk to webrtc::PacketRouter::SendPacket(std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> >, webrtc::PacedPacketInfo const&)
  1413. 0.00% pc_network_thre EgoSystem [.] webrtc::SrtpTransport::IsWritable
  1414. 0.00% threaded-ml libpthread-2.31.so [.] __pthread_mutex_lock_full
  1415. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_swp4_rel
  1416. 0.00% rtp_send_contro EgoSystem [.] std::__insertion_sort<__gnu_cxx::__normal_iterator<webrtc::PacketResult*, std::vector<webrtc::PacketResult, std::allocator<webrtc::PacketResult> > >, __gnu_cxx::__ops::_Iter_comp_iter<webrtc::PacketResult::ReceiveTimeOrder> >
  1417. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::MonoAgc::Process
  1418. 0.00% EncoderQueue EgoSystem [.] vpx_tm_predictor_4x4_neon
  1419. 0.00% EgoSystem libstdc++.so.6.0.28 [.] malloc@plt
  1420. 0.00% pc_network_thre libc-2.31.so [.] epoll_pwait
  1421. 0.00% EncoderQueue EgoSystem [.] vp8e_set_frame_flags
  1422. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::FindExtension
  1423. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceBuffer::SetRecordedBuffer
  1424. 0.00% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::UpdateQueueTime
  1425. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_queue_pop
  1426. 0.00% EgoSystem libc-2.31.so [.] _IO_setb
  1427. 0.00% EncoderQueue EgoSystem [.] std::__introsort_loop<__gnu_cxx::__normal_iterator<std::pair<webrtc::Vp8FrameConfig::Vp8BufferReference, unsigned long>*, std::vector<std::pair<webrtc::Vp8FrameConfig::Vp8BufferReference, unsigned long>, std::allocator<std::pair<webrtc::Vp8FrameConfig::Vp8BufferReference, unsigned long> > > >, long, __gnu_cxx::__ops::_Iter_comp_iter<webrtc::DefaultTemporalLayers::UpdateSearchOrder(webrtc::Vp8FrameConfig*)::$_2> >
  1428. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblock_ref
  1429. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::MutableDataY
  1430. 0.00% EgoSystem EgoSystem [.] webrtc::AlignedFree
  1431. 0.00% pc_network_thre EgoSystem [.] rtc::CritScope::CritScope
  1432. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::MaybeInitializeCapture
  1433. 0.00% rtp_send_contro EgoSystem [.] webrtc::CongestionControlHandler::GetUpdate
  1434. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x00000000000ed9a0
  1435. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002af14
  1436. 0.00% EgoSystem EgoSystem [.] rtc::RefCountedObject<webrtc::I420Buffer>::AddRef
  1437. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::IsCurrent
  1438. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::ApmStatsReporter::UpdateStatistics
  1439. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::CircularBuffer::Pop
  1440. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::set_stream_delay_ms
  1441. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_SynthesisQMF
  1442. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RateStatistics::Update
  1443. 0.00% EncoderQueue EgoSystem [.] vpx_dc_128_predictor_16x16_neon
  1444. 0.00% PacerThread EgoSystem [.] webrtc::RtpHeaderExtensionMap::RtpHeaderExtensionMap
  1445. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] operator delete@plt
  1446. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpDependencyDescriptorExtension::ValueSize
  1447. 0.00% AudioEncoder EgoSystem [.] silk_insertion_sort_increasing
  1448. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_mempool_ref
  1449. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpDependencyDescriptorWriter::ValueSizeBits
  1450. 0.00% EncoderQueue EgoSystem [.] webrtc::NtpOffsetMs
  1451. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpPacketToSend::~RtpPacketToSend
  1452. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::ComputeCompoundRTCPPacket
  1453. 0.00% EncoderQueue libpthread-2.31.so [.] _pthread_cleanup_pop
  1454. 0.00% pc_network_thre EgoSystem [.] pthread_mutex_lock@plt
  1455. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoEncoder::EncoderInfo::operator=
  1456. 0.00% AudioEncoder EgoSystem [.] silk_A2NLSF_init
  1457. 0.00% AudioEncoder EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::OnWakeup
  1458. 0.00% EgoSystem libc-2.31.so [.] _IO_no_init
  1459. 0.00% AudioEncoder EgoSystem [.] check_control_input
  1460. 0.00% EgoSystem EgoSystem [.] SensorCanBus<CCanBusSensor>::Run
  1461. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblock_unref
  1462. 0.00% AudioEncoder EgoSystem [.] silk_schur
  1463. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::EncodedImageBuffer>::AddRef
  1464. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ReverbModel::UpdateReverbNoFreqShaping
  1465. 0.00% EncoderQueue EgoSystem [.] thread_loopfilter
  1466. 0.00% pc_network_thre EgoSystem [.] non-virtual thunk to cricket::BaseChannel::OnMessage(rtc::Message*)
  1467. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SubtractorOutputAnalyzer::Update
  1468. 0.00% SharedModThread libc-2.31.so [.] _int_malloc
  1469. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioMixerImpl::CalculateOutputFrequency
  1470. 0.00% EgoSystem EgoSystem [.] rtc::scoped_refptr<webrtc::I420Buffer>::operator->
  1471. 0.00% PacerThread EgoSystem [.] webrtc::IntervalBudget::IncreaseBudget
  1472. 0.00% rtp_send_contro EgoSystem [.] webrtc::ProbeBitrateEstimator::FetchAndResetLastEstimatedBitrate
  1473. 0.00% rtp_send_contro libc-2.31.so [.] __libc_enable_asynccancel
  1474. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblock_release
  1475. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<double, std::ratio<1l, 1000l> >, long, std::ratio<1l, 1000000000l> >
  1476. 0.00% rtp_send_contro EgoSystem [.] webrtc::ProbeController::SetEstimatedBitrate
  1477. 0.00% EgoSystem EgoSystem [.] SensorCanBus<CCanRadarSensor>::Run
  1478. 0.00% pc_network_thre EgoSystem [.] srtp_rdbx_add_index
  1479. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::__num_base::_S_format_float
  1480. 0.00% EncoderQueue EgoSystem [.] vpx_dc_top_predictor_8x8_neon
  1481. 0.00% AudioEncoder EgoSystem [.] silk_encode_indices
  1482. 0.00% AudioEncoder EgoSystem [.] ec_enc_icdf
  1483. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcVad_Downsampling
  1484. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskImpl<webrtc::RtpTransportControllerSend::StartProcessPeriodicTasks()::$_16>::RunClosure
  1485. 0.00% EgoSystem libc-2.31.so [.] malloc_consolidate
  1486. 0.00% PacerThread EgoSystem [.] rtc::EventDispatcher::Signal
  1487. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::DominantNearendDetector::Update
  1488. 0.00% EncoderQueue EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnFrame(webrtc::VideoFrame const&)::$_13>::~ClosureTask
  1489. 0.00% pc_network_thre EgoSystem [.] rtc::SocketDispatcher::OnEvent
  1490. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrame::AudioFrame
  1491. 0.00% SharedModThread EgoSystem [.] rtc::Event::Wait
  1492. 0.00% EncoderQueue EgoSystem [.] webrtc::RateControlSettings::LibvpxVp8TrustedRateController
  1493. 0.00% EncoderQueue libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  1494. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_ldadd8_acq
  1495. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NetEqImpl::GetAudioInternal
  1496. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoRemoverMetrics::Update
  1497. 0.00% EgoSystem EgoSystem [.] std::chrono::operator<=<long, std::ratio<1l, 1000000l>, long, std::ratio<1l, 1000000l> >
  1498. 0.00% pc_network_thre EgoSystem [.] sha1_update
  1499. 0.00% EgoSystem libc-2.31.so [.] strcmp
  1500. 0.00% EgoSystem libstdc++.so.6.0.28 [.] __gnu_cxx::stdio_sync_filebuf<char, std::char_traits<char> >::sync
  1501. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpVideoSender::DeliverRtcp
  1502. 0.00% webrtc_audio_mo EgoSystem [.] rtc::Event::Wait
  1503. 0.00% EgoSystem EgoSystem [.] __gthread_mutex_lock
  1504. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_mainloop_iterate
  1505. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::BlockFramer::InsertBlockAndExtractSubFrame
  1506. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::LatencyUsecs
  1507. 0.00% PacerThread EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::HasOneRef
  1508. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSender::FecOrPaddingPacketMaxRtpHeaderLength
  1509. 0.00% EgoSystem libc-2.31.so [.] __memchr_generic
  1510. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTCPReceiver::TriggerCallbacksFromRtcpPacket
  1511. 0.00% pc_network_thre EgoSystem [.] rtc::IPAddress::ipv4_address
  1512. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_write_ext_free
  1513. 0.00% pc_network_thre EgoSystem [.] sendto@plt
  1514. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_mainloop_poll
  1515. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPayloadParams::SetCodecSpecific
  1516. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] operator new
  1517. 0.00% EncoderQueue EgoSystem [.] vp8_get_quantizer
  1518. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] XQueryKeymap
  1519. 0.00% EncoderQueue EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::ExpectedRetransmissionTimeMs
  1520. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::PostTask
  1521. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002afec
  1522. 0.00% AudioEncoder EgoSystem [.] webrtc::voe::(anonymous namespace)::RtpPacketSenderProxy::EnqueuePackets
  1523. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mempool_ref
  1524. 0.00% EncoderQueue EgoSystem [.] rtc::ExpFilter::UpdateBase
  1525. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblockq_drop
  1526. 0.00% pc_network_thre EgoSystem [.] rtc::CopyOnWriteBuffer::SetSize
  1527. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<long, 5ul, std::allocator<long> >::EmplaceBack<long const&>
  1528. 0.00% EgoSystem EgoSystem [.] std::chrono::operator-<std::chrono::_V2::system_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> >, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >
  1529. 0.00% Thread 0x0x326b EgoSystem [.] rtc::NullSocketServer::Wait
  1530. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_once_begin
  1531. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::operator<<
  1532. 0.00% EncoderQueue EgoSystem [.] vp8_subtract_mby
  1533. 0.00% AudioEncoder EgoSystem [.] silk_NLSF_stabilize
  1534. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_rtclock_get@plt
  1535. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] free@plt
  1536. 0.00% EgoSystem EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::PostTask
  1537. 0.00% EgoSystem EgoSystem [.] rtc::scoped_refptr<webrtc::VideoFrameBuffer>::scoped_refptr<webrtc::I420Buffer>
  1538. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_GetScalingSquare
  1539. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] operator new@plt
  1540. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::CopyHeaderFrom
  1541. 0.00% PacerThread EgoSystem [.] webrtc::RtcEventRtpPacketOutgoing::RtcEventRtpPacketOutgoing
  1542. 0.00% EncoderQueue EgoSystem [.] webrtc::AbsoluteCaptureTimeExtension::ValueSize
  1543. 0.00% EncoderQueue libc-2.31.so [.] epoll_pwait
  1544. 0.00% PacerThread EgoSystem [.] cricket::WebRtcVoiceMediaChannel::SendRtp
  1545. 0.00% PacerThread EgoSystem [.] webrtc::RtcEventLogNull::Log
  1546. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041f40
  1547. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceBuffer::RequestPlayoutData
  1548. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<unsigned int, unsigned int, std::_Identity<unsigned int>, std::less<unsigned int>, std::allocator<unsigned int> >::_M_copy<std::_Rb_tree<unsigned int, unsigned int, std::_Identity<unsigned int>, std::less<unsigned int>, std::allocator<unsigned int> >::_Reuse_or_alloc_node>
  1549. 0.00% webrtc_audio_mo [vdso] [.] __kernel_clock_gettime
  1550. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioBuffer::CopyTo
  1551. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_DivW32W16
  1552. 0.00% pc_network_thre EgoSystem [.] rtc::Event::Set
  1553. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoPathDelayEstimator::EstimateDelay
  1554. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::HighPassFilter::Process
  1555. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::GetConfig
  1556. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::Decimator::Decimate
  1557. 0.00% EncoderQueue EgoSystem [.] absl::operator!=<webrtc::ColorSpace, webrtc::ColorSpace>
  1558. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_ldadd4_rel
  1559. 0.00% Thread 0x0x326b EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::RtcpPacketTypesCounterUpdated(unsigned int, webrtc::RtcpPacketTypeCounter const&)
  1560. 0.00% webrtc_audio_mo libc-2.31.so [.] __poll
  1561. 0.00% threaded-ml libpthread-2.31.so [.] __libc_read
  1562. 0.00% PacerThread EgoSystem [.] rtc::PacketInfo::PacketInfo
  1563. 0.00% pc_network_thre EgoSystem [.] pthread_mutex_unlock@plt
  1564. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] _XGetRequest
  1565. 0.00% AudioEncoder EgoSystem [.] quant_coarse_energy
  1566. 0.00% rtp_send_contro EgoSystem [.] std::__introsort_loop<__gnu_cxx::__normal_iterator<webrtc::PacketResult*, std::vector<webrtc::PacketResult, std::allocator<webrtc::PacketResult> > >, long, __gnu_cxx::__ops::_Iter_comp_iter<webrtc::PacketResult::ReceiveTimeOrder> >
  1567. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041698
  1568. 0.00% rtp_send_contro EgoSystem [.] rtc::internal::WeakReference::is_valid
  1569. 0.00% webrtc_audio_mo EgoSystem [.] std::__find_if<std::_Bit_const_iterator, __gnu_cxx::__ops::_Iter_equals_val<bool const> >
  1570. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002afec
  1571. 0.00% EncoderQueue EgoSystem [.] webrtc::videocontenttypehelpers::IsScreenshare
  1572. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::RtpPacket
  1573. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<long, std::ratio<1l, 1000000l> >, std::ratio<1000000l, 1l>, long, false, true>::__cast<long, std::ratio<1l, 1l> >
  1574. 0.00% EgoSystem libc-2.31.so [.] mempcpy
  1575. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] operator new
  1576. 0.00% PacerThread EgoSystem [.] std::_Rb_tree_insert_and_rebalance@plt
  1577. 0.00% EgoSystem EgoSystem [.] nanosleep@plt
  1578. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x000000000011b7b0
  1579. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::QueueNonbandedRenderAudio
  1580. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::cftfsub
  1581. 0.00% EgoSystem libpthread-2.31.so [.] __pthread_once
  1582. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::HasOneRef
  1583. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_assign
  1584. 0.00% PacerThread libpthread-2.31.so [.] __pthread_enable_asynccancel
  1585. 0.00% AudioEncoder EgoSystem [.] silk_inner_prod16_aligned_64_c
  1586. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::ReadRecordedData
  1587. 0.00% Thread 0x0x326b EgoSystem [.] rtc::ScopedYieldPolicy::YieldExecution
  1588. 0.00% rtp_send_contro EgoSystem [.] operator new@plt
  1589. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_pstream_ref
  1590. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_mutex_lock_full
  1591. 0.00% EgoSystem libc-2.31.so [.] __overflow
  1592. 0.00% Thread 0x0x326b EgoSystem [.] absl::inlined_vector_internal::Storage<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> >, 4ul, std::allocator<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > > >::EmplaceBack<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > >
  1593. 0.00% rtp_send_contro EgoSystem [.] rtc::RefCountedObject<rtc::internal::WeakReference::Flag>::Release
  1594. 0.00% EgoSystem EgoSystem [.] rtc::scoped_refptr<webrtc::I420BufferInterface>::~scoped_refptr
  1595. 0.00% AudioEncoder EgoSystem [.] opus_encode
  1596. 0.00% pc_network_thre libc-2.31.so [.] __GI___getsockname
  1597. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::StandaloneVad::AddAudio
  1598. 0.00% EncoderQueue EgoSystem [.] rtc::BitBufferWriter::BitBufferWriter
  1599. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::endl<char, std::char_traits<char> >
  1600. 0.00% threaded-ml libpthread-2.31.so [.] __pthread_mutex_unlock_full
  1601. 0.00% EncoderQueue EgoSystem [.] cost_mvcomponent
  1602. 0.00% EncoderQueue EgoSystem [.] gettimeofday@plt
  1603. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SubtractorOutput::SubtractorOutput
  1604. 0.00% PacerThread EgoSystem [.] rtc::PacketOptions::PacketOptions
  1605. 0.00% pc_network_thre EgoSystem [.] webrtc::RtpTransport::OnReadPacket
  1606. 0.00% AudioEncoder EgoSystem [.] event_base_loop
  1607. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_Energy
  1608. 0.00% EncoderQueue EgoSystem [.] sem_wait@plt
  1609. 0.00% threaded-ml libpthread-2.31.so [.] __aarch64_cas4_acq
  1610. 0.00% rtp_send_contro libpthread-2.31.so [.] __pthread_enable_asynccancel
  1611. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SplittingFilter::TwoBandsSynthesis
  1612. 0.00% AudioEncoder EgoSystem [.] ec_enc_init
  1613. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<long, long, std::_Identity<long>, std::less<long>, std::allocator<long> >::_M_get_insert_hint_unique_pos
  1614. 0.00% rtp_send_contro EgoSystem [.] webrtc::RealTimeClock::TimeInMilliseconds
  1615. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::Create
  1616. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocket::SetError
  1617. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::RtpPacket
  1618. 0.00% PacerThread EgoSystem [.] webrtc::PacedSender::ModuleProxy::TimeUntilNextProcess
  1619. 0.00% SharedModThread EgoSystem [.] rtc::TimeMillis
  1620. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ErleEstimator::Update
  1621. 0.00% EncoderQueue EgoSystem [.] get_quantizer
  1622. 0.00% EgoSystem libstdc++.so.6.0.28 [.] memcpy@plt
  1623. 0.00% threaded-ml EgoSystem [.] webrtc::AudioDeviceLinuxPulse::PaStreamReadCallback
  1624. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::EncodedImageBuffer>::Release
  1625. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_idxset_get_by_data
  1626. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPVideoHeader::RTPVideoHeader
  1627. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RemoteAudioSource::AudioDataProxy::OnData
  1628. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_Sqrt
  1629. 0.00% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::AverageQueueTime
  1630. 0.00% EncoderQueue EgoSystem [.] operator new@plt
  1631. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::AllocateExtension
  1632. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::Create
  1633. 0.00% EncoderQueue EgoSystem [.] pthread_mutex_lock@plt
  1634. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_detect_fork
  1635. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::GetProtocol
  1636. 0.00% AudioEncoder EgoSystem [.] silk_residual_energy_FIX
  1637. 0.00% EncoderQueue EgoSystem [.] webrtc::AbsoluteCaptureTimeSender::OnSendPacket
  1638. 0.00% pc_network_thre EgoSystem [.] memset@plt
  1639. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ProcessAudioFrame
  1640. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002b7ac
  1641. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketToSend::~RtpPacketToSend
  1642. 0.00% PacerThread libpthread-2.31.so [.] __condvar_cancel_waiting
  1643. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to webrtc::PacedSender::EnqueuePackets(std::vector<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> >, std::allocator<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> > > >)
  1644. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SplittingFilter::Analysis
  1645. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memexport_put
  1646. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocket::DoSendTo
  1647. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_hook
  1648. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ApiCallJitterMetrics::ReportCaptureCall
  1649. 0.00% EncoderQueue EgoSystem [.] webrtc::ChainDiffCalculator::From
  1650. 0.00% EgoSystem libc-2.31.so [.] cfree@GLIBC_2.17
  1651. 0.00% rtp_send_contro EgoSystem [.] event_set
  1652. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  1653. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NrFft::Fft
  1654. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SubbandErleEstimator::UpdateBands
  1655. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_mutex_unlock_full
  1656. 0.00% PacerThread libc-2.31.so [.] __aarch64_cas8_rel
  1657. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ReverbModelEstimator::Update
  1658. 0.00% EncoderQueue EgoSystem [.] webrtc::GenericFrameInfo::GenericFrameInfo
  1659. 0.00% rtp_send_contro EgoSystem [.] non-virtual thunk to webrtc::PacedSender::SetPacingRates(webrtc::DataRate, webrtc::DataRate)
  1660. 0.00% pc_network_thre EgoSystem [.] rtc::AsyncInvoker::OnMessage
  1661. 0.00% AudioEncoder EgoSystem [.] silk_process_NLSFs
  1662. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mutex_lock
  1663. 0.00% Thread 0x0x326b EgoSystem [.] rtc::PacketInfo::PacketInfo
  1664. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ReverbFrequencyResponse::Update
  1665. 0.00% EncoderQueue EgoSystem [.] webrtc::CodecSpecificInfo::CodecSpecificInfo
  1666. 0.00% EncoderQueue EgoSystem [.] webrtc::videocontenttypehelpers::SetExperimentId
  1667. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ErlEstimator::Update
  1668. 0.00% EgoSystem libc-2.31.so [.] hack_digit
  1669. 0.00% rtp_send_contro EgoSystem [.] webrtc::TransportFeedbackAdapter::GetOutstandingData
  1670. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResourceManager::OnMaybeEncodeFrame
  1671. 0.00% PacerThread EgoSystem [.] clock_gettime@plt
  1672. 0.00% AudioEncoder EgoSystem [.] non-virtual thunk to webrtc::voe::(anonymous namespace)::ChannelSend::SendData(webrtc::AudioFrameType, unsigned char, unsigned int, unsigned char const*, unsigned long, long)
  1673. 0.00% EgoSystem libc-2.31.so [.] _IO_do_write@@GLIBC_2.17
  1674. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSender::MaxRtpPacketSize
  1675. 0.00% EncoderQueue EgoSystem [.] webrtc::RealTimeClock::TimeInMilliseconds
  1676. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree_insert_and_rebalance@plt
  1677. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::UpdateActiveSubmoduleStates
  1678. 0.00% AudioEncoder EgoSystem [.] silk_LPC_fit
  1679. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrame::mutable_data
  1680. 0.00% Thread 0x0x326b EgoSystem [.] pthread_mutex_lock@plt
  1681. 0.00% rtp_send_contro EgoSystem [.] webrtc::TransportPacketsFeedback::TransportPacketsFeedback
  1682. 0.00% AudioEncoder EgoSystem [.] WebRtcOpus_Encode
  1683. 0.00% AudioEncoder EgoSystem [.] webrtc::RoundRobinPacketQueue::Push
  1684. 0.00% Thread 0x0x326b libc-2.31.so [.] __memcpy_generic
  1685. 0.00% PacerThread libpthread-2.31.so [.] __condvar_confirm_wakeup
  1686. 0.00% pc_network_thre EgoSystem [.] rtc::SocketAddress::SocketAddress
  1687. 0.00% rtp_send_contro EgoSystem [.] webrtc::DelayBasedBwe::MaybeUpdateEstimate
  1688. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoder::EncodedInfo::operator=
  1689. 0.00% AudioEncoder EgoSystem [.] silk_NLSF_unpack
  1690. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_memblockq_peek@plt
  1691. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::PushResampler<short>::InitializeIfNeeded
  1692. 0.00% EgoSystem libstdc++.so.6.0.28 [.] operator new
  1693. 0.00% EgoSystem libc-2.31.so [.] unlink_chunk.isra.0
  1694. 0.00% EncoderQueue EgoSystem [.] get_quantizer64
  1695. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] operator new
  1696. 0.00% EncoderQueue EgoSystem [.] rtc::CopyOnWriteBuffer::SetSize
  1697. 0.00% EgoSystem EgoSystem [.] webrtc::VideoFrame::VideoFrame
  1698. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::ProcessCapture
  1699. 0.00% pc_network_thre EgoSystem [.] rtc::NullSocketServer::WakeUp
  1700. 0.00% AudioEncoder EgoSystem [.] amp2Log2
  1701. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::MonoAgc::UpdateCompressor
  1702. 0.00% AudioEncoder EgoSystem [.] webrtc::RTPSender::SendToNetwork
  1703. 0.00% rtp_send_contro EgoSystem [.] webrtc::TrendlineEstimator::State
  1704. 0.00% pc_network_thre EgoSystem [.] rtc::PacketInfo::PacketInfo
  1705. 0.00% PacerThread EgoSystem [.] pthread_cond_timedwait@plt
  1706. 0.00% AudioEncoder EgoSystem [.] silk_setup_resamplers
  1707. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::ProcessReverseStream
  1708. 0.00% EncoderQueue EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  1709. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_ldclr4_rel
  1710. 0.00% PacerThread libpthread-2.31.so [.] _pthread_cleanup_push
  1711. 0.00% webrtc_audio_mo EgoSystem [.] rtc::internal::RaceCheckerScope::RaceCheckerScope
  1712. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002af60
  1713. 0.00% EncoderQueue EgoSystem [.] vp8_pick_intra_mode
  1714. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::Clear
  1715. 0.00% pc_network_thre EgoSystem [.] HMAC_Update
  1716. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] free@plt
  1717. 0.00% SharedModThread libpthread-2.31.so [.] __pthread_disable_asynccancel
  1718. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::ApmStatsReporter::GetStatistics
  1719. 0.00% webrtc_audio_mo libm-2.31.so [.] __log10f_finite@GLIBC_2.17
  1720. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RenderSignalAnalyzer::MaskRegionsAroundNarrowBands
  1721. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::Expand::Muted
  1722. 0.00% EncoderQueue EgoSystem [.] webrtc::RoundRobinPacketQueue::UpdateQueueTime
  1723. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpDependencyDescriptorWriter::RtpDependencyDescriptorWriter
  1724. 0.00% webrtc_audio_mo libc-2.31.so [.] __aarch64_cas4_acq
  1725. 0.00% AudioEncoder EgoSystem [.] webrtc::RoundRobinPacketQueue::Push
  1726. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AlignmentMixer::ProduceOutput
  1727. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FilterAnalyzer::Update
  1728. 0.00% pc_network_thre EgoSystem [.] rtc::AsyncInvoker::DoInvoke
  1729. 0.00% PacerThread libpthread-2.31.so [.] __pthread_mutex_unlock
  1730. 0.00% EgoSystem EgoSystem [.] webrtc::VideoFrame::~VideoFrame
  1731. 0.00% SharedModThread EgoSystem [.] webrtc::SendStatisticsProxy::GetStatsEntry
  1732. 0.00% pc_network_thre libc-2.31.so [.] __aarch64_swp8_acq
  1733. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_ldadd4_relax
  1734. 0.00% Thread 0x0x326b EgoSystem [.] rtc::RefCountedObject<webrtc::PendingTaskSafetyFlag>::Release
  1735. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AdaptiveFirFilter::Filter
  1736. 0.00% threaded-ml libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  1737. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::ProcessRenderStreamLocked
  1738. 0.00% webrtc_audio_mo libm-2.31.so [.] __tanhf
  1739. 0.00% pc_network_thre libc-2.31.so [.] getifaddrs_internal
  1740. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::SetPayloadSize
  1741. 0.00% AudioEncoder EgoSystem [.] std::vector<short, std::allocator<short> >::_M_range_insert<short const*>
  1742. 0.00% EncoderQueue EgoSystem [.] webrtc::BitrateProber::OnIncomingPacket
  1743. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_DivW32W16ResW16
  1744. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_replace
  1745. 0.00% webrtc_audio_mo libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  1746. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacketToSend::~RtpPacketToSend
  1747. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::UmaSamplesContainer::InsertEncodedFrame
  1748. 0.00% rtp_send_contro EgoSystem [.] webrtc::AimdRateControl::ChangeBitrate
  1749. 0.00% pc_network_thre EgoSystem [.] srtp_hmac_update
  1750. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetMarker
  1751. 0.00% EgoSystem libpthread-2.31.so [.] __aarch64_cas4_acq
  1752. 0.00% AudioEncoder EgoSystem [.] silk_encode_signs
  1753. 0.00% webrtc_audio_mo libm-2.31.so [.] __log10f
  1754. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_detect_fork
  1755. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<int, 4ul, std::allocator<int> >::Assign<absl::inlined_vector_internal::IteratorValueAdapter<std::allocator<int>, int const*> >
  1756. 0.00% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::CheckAndPing
  1757. 0.00% webrtc_audio_mo EgoSystem [.] pthread_mutex_lock@plt
  1758. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::MatchedFilterLagAggregator::Aggregate
  1759. 0.00% EncoderQueue EgoSystem [.] webrtc::EncoderSimulcastProxy::Encode
  1760. 0.00% PacerThread EgoSystem [.] non-virtual thunk to cricket::WebRtcVoiceMediaChannel::SendRtp(unsigned char const*, unsigned long, webrtc::PacketOptions const&)
  1761. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::RecThreadFunc
  1762. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::locale::id::_M_id@plt
  1763. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrameOperations::DownmixChannels
  1764. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_detect_fork@plt
  1765. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpGenericFrameDescriptor::RtpGenericFrameDescriptor
  1766. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblockq_seek
  1767. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_unhook
  1768. 0.00% EgoSystem EgoSystem [.] __gthread_active_p
  1769. 0.00% EncoderQueue libpthread-2.31.so [.] __pthread_enable_asynccancel
  1770. 0.00% AudioEncoder EgoSystem [.] webrtc::RTPSender::AllocatePacket
  1771. 0.00% AudioEncoder EgoSystem [.] silk_shell_encoder
  1772. 0.00% AudioEncoder libpthread-2.31.so [.] __aarch64_swp4_rel
  1773. 0.00% AudioEncoder EgoSystem [.] silk_k2a
  1774. 0.00% SharedModThread EgoSystem [.] webrtc::RtpConfig::IsMediaSsrc
  1775. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> >, std::ratio<1000l, 1l>, long, false, true>::__cast<long, std::ratio<1l, 1000000l> >
  1776. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x000000000011b7d0
  1777. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_readable_size
  1778. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_rtclock_now
  1779. 0.00% pc_network_thre libpthread-2.31.so [.] __errno_location
  1780. 0.00% SharedModThread EgoSystem [.] webrtc::ProcessThreadImpl::Run
  1781. 0.00% SharedModThread EgoSystem [.] rtc::ScopedYieldPolicy::YieldExecution
  1782. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoFrame::width
  1783. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::OouraFft::InverseFft
  1784. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] memcpy@plt
  1785. 0.00% webrtc_audio_mo libstdc++.so.6.0.28 [.] malloc@plt
  1786. 0.00% threaded-ml libc-2.31.so [.] __aarch64_cas4_acq
  1787. 0.00% webrtc_audio_mo libstdc++.so.6.0.28 [.] operator new@plt
  1788. 0.00% EncoderQueue EgoSystem [.] vp8_encode_motion_vector
  1789. 0.00% AudioEncoder libpthread-2.31.so [.] __aarch64_cas4_acq
  1790. 0.00% pc_network_thre EgoSystem [.] cricket::Port::GetStunMessage
  1791. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_enable_asynccancel
  1792. 0.00% rtp_send_contro EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::PostDelayedTask
  1793. 0.00% PacerThread EgoSystem [.] webrtc::IntervalBudget::UseBudget
  1794. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::PostTask
  1795. 0.00% rtp_send_contro EgoSystem [.] pthread_mutex_unlock@plt
  1796. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::__ostream_insert<char, std::char_traits<char> >@plt
  1797. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] operator delete@plt
  1798. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_MaxAbsValueW16Neon
  1799. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] malloc@plt
  1800. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  1801. 0.00% AudioEncoder EgoSystem [.] quant_fine_energy
  1802. 0.00% rtp_send_contro libpthread-2.31.so [.] __pthread_mutex_unlock
  1803. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] malloc@plt
  1804. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::CallStats::UpdateAndReport
  1805. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_ldeor8_rel
  1806. 0.00% AudioEncoder EgoSystem [.] stereo_itheta
  1807. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::AllocatePayload
  1808. 0.00% EgoSystem EgoSystem [.] operator new@plt
  1809. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NetEqImpl::GetAudio
  1810. 0.00% SharedModThread EgoSystem [.] cricket::WebRtcVideoChannel::SendRtcp
  1811. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  1812. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioTransportImpl::NeedMorePlayData
  1813. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_ldadd4_relax
  1814. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::flush
  1815. 0.00% pc_network_thre EgoSystem [.] cricket::Port::GetConnection
  1816. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_tls_get
  1817. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::RunPostEncode
  1818. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::width
  1819. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::WebRtcAgc_Analyze
  1820. 0.00% EncoderQueue EgoSystem [.] webrtc::AbsoluteCaptureTimeSender::GetSource
  1821. 0.00% EncoderQueue EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::StartTimestamp
  1822. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8FrameConfig::Vp8FrameConfig
  1823. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f384
  1824. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacketToSend::RtpPacketToSend
  1825. 0.00% AudioEncoder libc-2.31.so [.] __aarch64_cas4_acq
  1826. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_swp4_acq
  1827. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::CheckForAnimatedContent
  1828. 0.00% EncoderQueue EgoSystem [.] webrtc::AbsoluteCaptureTimeReceiver::InterpolateAbsoluteCaptureTimestamp
  1829. 0.00% EgoSystem libc-2.31.so [.] __mpn_lshift
  1830. 0.00% rtp_send_contro EgoSystem [.] webrtc::PacketResult::PacketResult
  1831. 0.00% PacerThread EgoSystem [.] webrtc::UlpfecGenerator::ResetState
  1832. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::Csrcs
  1833. 0.00% pc_network_thre EgoSystem [.] rtc::UpdateCrc32
  1834. 0.00% pc_network_thre EgoSystem [.] cricket::SrtpSession::UnprotectRtcp
  1835. 0.00% EncoderQueue EgoSystem [.] vp8_compute_frame_size_bounds
  1836. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::RtpPacket
  1837. 0.00% EgoSystem EgoSystem [.] std::ostream::operator<<@plt
  1838. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, webrtc::SendStatisticsProxy::Frame>, std::_Select1st<std::pair<unsigned int const, webrtc::SendStatisticsProxy::Frame> >, webrtc::SendStatisticsProxy::TimestampOlderThan, std::allocator<std::pair<unsigned int const, webrtc::SendStatisticsProxy::Frame> > >::_M_erase
  1839. 0.00% threaded-ml EgoSystem [.] webrtc::AudioDeviceLinuxPulse::PaStreamWriteCallback
  1840. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::DataY
  1841. 0.00% EgoSystem libc-2.31.so [.] __strchrnul
  1842. 0.00% PacerThread EgoSystem [.] absl::inlined_vector_internal::Storage<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> >, 4ul, std::allocator<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > > >::EmplaceBack<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > >
  1843. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::acm2::AcmReceiver::GetPlayoutTimestamp
  1844. 0.00% PacerThread EgoSystem [.] rtc::CritScope::~CritScope
  1845. 0.00% rtp_send_contro libm-2.31.so [.] exp@GLIBC_2.17
  1846. 0.00% webrtc_audio_mo EgoSystem [.] rtc::ScopedYieldPolicy::YieldExecution
  1847. 0.00% EncoderQueue EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  1848. 0.00% AudioEncoder EgoSystem [.] silk_control_audio_bandwidth
  1849. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041680
  1850. 0.00% SharedModThread EgoSystem [.] webrtc::RateStatistics::Rate
  1851. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelSend::ProcessAndEncodeAudio
  1852. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<long, std::ratio<1l, 1000000l> >, long, std::ratio<1l, 1l> >
  1853. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mcalign_csize
  1854. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_iochannel_is_readable
  1855. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::EchoRemoverImpl::GetMetrics
  1856. 0.00% PacerThread libstdc++.so.6.0.28 [.] operator delete@plt
  1857. 0.00% PacerThread EgoSystem [.] webrtc::RealTimeClock::TimeInMilliseconds
  1858. 0.00% threaded-ml libpulsecommon-13.99.so [.] read@plt
  1859. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblock_get_pool
  1860. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041ef8
  1861. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacketCounter::RtpPacketCounter
  1862. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_ldset4_rel
  1863. 0.00% EgoSystem EgoSystem [.] std::chrono::operator<=<long, std::ratio<1l, 1000l>, long, std::ratio<1l, 1000l> >
  1864. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::TransparentModeImpl::Update
  1865. 0.00% Thread 0x0x326b libc-2.31.so [.] __aarch64_cas4_acq
  1866. 0.00% webrtc_audio_mo libc-2.31.so [.] _int_free
  1867. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<unsigned short, std::allocator<unsigned short> >::push_back
  1868. 0.00% webrtc_audio_mo EgoSystem [.] std::vector<float, std::allocator<float> >::_M_range_insert<__gnu_cxx::__normal_iterator<float*, std::vector<float, std::allocator<float> > > >
  1869. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::RenderDelayBufferImpl::Delay
  1870. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::SetAcknowledgedRate
  1871. 0.00% AudioEncoder EgoSystem [.] silk_resampler
  1872. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrame::muted
  1873. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_get_time
  1874. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] operator delete
  1875. 0.00% rtp_send_contro EgoSystem [.] clock_gettime@plt
  1876. 0.00% AudioEncoder EgoSystem [.] silk_HP_variable_cutoff
  1877. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::operator<< <std::char_traits<char> >
  1878. 0.00% AudioEncoder EgoSystem [.] ec_enc_bit_logp
  1879. 0.00% PacerThread EgoSystem [.] rtc::CritScope::CritScope
  1880. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d064
  1881. 0.00% EncoderQueue EgoSystem [.] vp8_change_config
  1882. 0.00% AudioEncoder EgoSystem [.] compute_mdcts
  1883. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoFrame::~VideoFrame
  1884. 0.00% EgoSystem libc-2.31.so [.] _IO_str_init_static_internal
  1885. 0.00% webrtc_audio_mo libc-2.31.so [.] __GI___writev
  1886. 0.00% pc_network_thre EgoSystem [.] __errno_location@plt
  1887. 0.00% webrtc_audio_mo EgoSystem [.] memset@plt
  1888. 0.00% PacerThread EgoSystem [.] webrtc::UlpfecGenerator::GetFecPackets
  1889. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] free@plt
  1890. 0.00% AudioEncoder EgoSystem [.] celt_rcp
  1891. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblock_new_pool
  1892. 0.00% PacerThread libc-2.31.so [.] __aarch64_cas8_acq
  1893. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPayloadParams::GenericDescriptorFromFrameInfo
  1894. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::UpdateBitrateAllocationAndNotifyObserver
  1895. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::Agc::Process
  1896. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002b798
  1897. 0.00% PacerThread EgoSystem [.] std::_Rb_tree_increment@plt
  1898. 0.00% AudioEncoder EgoSystem [.] silk_NLSF_decode
  1899. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_thread_self
  1900. 0.00% Thread 0x0x326b EgoSystem [.] rtc::ScopedMessageData<webrtc::QueuedTask>::~ScopedMessageData
  1901. 0.00% AudioEncoder EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelSend::SendRtpAudio
  1902. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioBuffer::SplitIntoFrequencyBands
  1903. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<int, std::pair<int const, unsigned long>, std::_Select1st<std::pair<int const, unsigned long> >, std::less<int>, std::allocator<std::pair<int const, unsigned long> > >::_M_erase
  1904. 0.00% EgoSystem EgoSystem [.] rtc::scoped_refptr<webrtc::I420Buffer>::~scoped_refptr
  1905. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::I420Buffer>::AddRef
  1906. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodedImage::SetEncodeTime
  1907. 0.00% EgoSystem EgoSystem [.] std::chrono::operator-<long, std::ratio<1l, 1000000l>, long, std::ratio<1l, 1l> >
  1908. 0.00% pc_network_thre libpthread-2.31.so [.] __libc_read
  1909. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RealTimeClock::TimeInMilliseconds
  1910. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::RemoteEstimatorProxy::Process()
  1911. 0.00% AudioEncoder EgoSystem [.] alg_quant
  1912. 0.00% SharedModThread EgoSystem [.] rtc::FunctionView<void (rtc::ArrayView<unsigned char const, -4711l>)>::CallVoidPtr<webrtc::(anonymous namespace)::PacketContainer::SendPackets(unsigned long)::{lambda(rtc::ArrayView<unsigned char const, -4711l>)#1}>
  1913. 0.00% rtp_send_contro libpthread-2.31.so [.] __aarch64_swp4_acq
  1914. 0.00% EncoderQueue libpthread-2.31.so [.] __libc_read
  1915. 0.00% SharedModThread libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  1916. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<long, 4ul, std::allocator<long> >::Assign<absl::inlined_vector_internal::IteratorValueAdapter<std::allocator<long>, std::_Rb_tree_const_iterator<long> > >
  1917. 0.00% Thread 0x0x326b EgoSystem [.] operator delete@plt
  1918. 0.00% PacerThread libpthread-2.31.so [.] __pthread_getspecific
  1919. 0.00% AudioEncoder EgoSystem [.] silk_bwexpander_32
  1920. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002af60
  1921. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > >, std::_Select1st<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > >, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > > >::_M_erase
  1922. 0.00% AudioEncoder libc-2.31.so [.] _int_free
  1923. 0.00% EgoSystem EgoSystem [.] select@plt
  1924. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::CommonHeader::Parse
  1925. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_memblock_unref@plt
  1926. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_pdispatch_run
  1927. 0.00% rtp_send_contro [unknown] [k] 0xffffd21344780fb8
  1928. 0.00% Thread 0x0x326b EgoSystem [.] clock_gettime@plt
  1929. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_swp4_relax
  1930. 0.00% rtp_send_contro EgoSystem [.] rtc::PacketInfo::~PacketInfo
  1931. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::ProcessCaptureFrameContent
  1932. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoder::EncodedInfo::EncodedInfo
  1933. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::__num_base::_S_format_float@plt
  1934. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000e260
  1935. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AdaptiveFirFilter::Adapt
  1936. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceBuffer::SetTypingStatus
  1937. 0.00% webrtc_audio_mo libpthread-2.31.so [.] pthread_cond_signal@@GLIBC_2.17
  1938. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::UpdateDelayBasedEstimate
  1939. 0.00% EncoderQueue libc-2.31.so [.] pthread_self
  1940. 0.00% EncoderQueue EgoSystem [.] vp8_stop_encode
  1941. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x000000000011b7a0
  1942. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_context_ref
  1943. 0.00% SharedModThread EgoSystem [.] cricket::BaseChannel::SendPacket
  1944. 0.00% pc_network_thre EgoSystem [.] cricket::SrtpSession::ProtectRtcp
  1945. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::HandleCaptureRuntimeSettings
  1946. 0.00% SharedModThread EgoSystem [.] rtc::Thread::IsCurrent
  1947. 0.00% EgoSystem EgoSystem [.] std::mutex::lock
  1948. 0.00% pc_network_thre EgoSystem [.] rtc::TimeAfter
  1949. 0.00% AudioEncoder EgoSystem [.] silk_LP_variable_cutoff
  1950. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b8b4
  1951. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d058
  1952. 0.00% AudioEncoder EgoSystem [.] memset@plt
  1953. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_disable_asynccancel
  1954. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000l> >::duration<long, std::ratio<1l, 1l>, void>
  1955. 0.00% Thread 0x0x326b EgoSystem [.] pthread_mutex_unlock@plt
  1956. 0.00% rtp_send_contro EgoSystem [.] rtc::TimeMicros
  1957. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPVideoHeader::GenericDescriptorInfo::~GenericDescriptorInfo
  1958. 0.00% AudioEncoder libc-2.31.so [.] malloc_consolidate
  1959. 0.00% AudioEncoder EgoSystem [.] silk_control_SNR
  1960. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetCsrcs
  1961. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f338
  1962. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<long, std::ratio<1l, 1l> >, long, std::ratio<1l, 1000000l> >
  1963. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::SetFlag
  1964. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_run_once
  1965. 0.00% rtp_send_contro EgoSystem [.] webrtc::PacingController::ExpectedQueueTime
  1966. 0.00% AudioEncoder EgoSystem [.] rtc::CopyOnWriteBuffer::UnshareAndEnsureCapacity
  1967. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTCPReceiver::StatisticsReceived
  1968. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x00000000000316b8
  1969. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::UpdateState
  1970. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioMixerImpl::GetAudioFromSources
  1971. 0.00% EgoSystem libpthread-2.31.so [.] __libc_write
  1972. 0.00% rtp_send_contro EgoSystem [.] webrtc::NetworkControlUpdate::NetworkControlUpdate
  1973. 0.00% SharedModThread libc-2.31.so [.] __GI___memset_generic
  1974. 0.00% PacerThread EgoSystem [.] memmove@plt
  1975. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSender::AssignSequenceNumber
  1976. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::acm2::AcmReceiver::last_output_sample_rate_hz
  1977. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_timeval_load
  1978. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_drop
  1979. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041f4c
  1980. 0.00% threaded-ml libpthread-2.31.so [.] pthread_cond_broadcast@@GLIBC_2.17
  1981. 0.00% PacerThread EgoSystem [.] write@plt
  1982. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::AllocateRawExtension
  1983. 0.00% PacerThread EgoSystem [.] webrtc::RtpSenderEgress::FetchFecPackets
  1984. 0.00% AudioEncoder EgoSystem [.] silk_find_pitch_lags_FIX
  1985. 0.00% rtp_send_contro EgoSystem [.] webrtc::TrendlineEstimator::Detect
  1986. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x000000000011b7cc
  1987. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::VideoSendStream::DeliverRtcp
  1988. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FrameCombiner::LogMixingStats
  1989. 0.00% EncoderQueue EgoSystem [.] operator delete@plt
  1990. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPayloadParams::SetGeneric
  1991. 0.00% AudioEncoder libpthread-2.31.so [.] __libc_read
  1992. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::DtlsTransport, rtc::PacketTransportInternal*, char const*, unsigned long, long const&, int>
  1993. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002af14
  1994. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004056c
  1995. 0.00% EncoderQueue EgoSystem [.] webrtc::I420Buffer::width
  1996. 0.00% EncoderQueue [unknown] [k] 0xffffd21344778074
  1997. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<long, std::ratio<1l, 1l> >, std::ratio<1l, 1000000l>, long, true, false>::__cast<long, std::ratio<1l, 1000000l> >
  1998. 0.00% AudioEncoder EgoSystem [.] webrtc::PacedSender::EnqueuePackets
  1999. 0.00% PacerThread EgoSystem [.] operator new[]@plt
  2000. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] operator delete
  2001. 0.00% PacerThread libpthread-2.31.so [.] __libc_write
  2002. 0.00% EncoderQueue EgoSystem [.] vp8e_set_temporal_layer_id
  2003. 0.00% AudioEncoder EgoSystem [.] ec_tell_frac
  2004. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::PrepareReport
  2005. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::AudioReceiveStream::DeliverRtcp
  2006. 0.00% AudioEncoder [vdso] [.] __kernel_clock_gettime
  2007. 0.00% rtp_send_contro EgoSystem [.] webrtc::TransportFeedbackAdapter::ProcessTransportFeedback
  2008. 0.00% PacerThread EgoSystem [.] operator delete@plt
  2009. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000003fb80
  2010. 0.00% Thread 0x0x326b EgoSystem [.] rtc::Thread::IsQuitting
  2011. 0.00% threaded-ml libc-2.31.so [.] __getpid
  2012. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_ldadd4_relax
  2013. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000l> >::duration<long, void>
  2014. 0.00% rtp_send_contro EgoSystem [.] std::__move_median_to_first<__gnu_cxx::__normal_iterator<webrtc::PacketResult*, std::vector<webrtc::PacketResult, std::allocator<webrtc::PacketResult> > >, __gnu_cxx::__ops::_Iter_comp_iter<webrtc::PacketResult::ReceiveTimeOrder> >
  2015. 0.00% AudioEncoder EgoSystem [.] silk_gains_quant
  2016. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::AvgCounter::Add
  2017. 0.00% pc_network_thre EgoSystem [.] clock_gettime@plt
  2018. 0.00% pc_network_thre EgoSystem [.] OPENSSL_cleanse
  2019. 0.00% AudioEncoder EgoSystem [.] comb_filter
  2020. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketToSend::RtpPacketToSend
  2021. 0.00% pc_network_thre EgoSystem [.] cricket::(anonymous namespace)::SendPacketMessageData::~SendPacketMessageData
  2022. 0.00% rtp_send_contro EgoSystem [.] webrtc::TransportPacketsFeedback::SortedByReceiveTime
  2023. 0.00% SharedModThread libc-2.31.so [.] cfree@GLIBC_2.17
  2024. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::Call::Receiver
  2025. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::AudioSendStream::DeliverRtcp
  2026. 0.00% EncoderQueue EgoSystem [.] webrtc::I420BufferInterface::type
  2027. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::AudioEncoderOpusImpl::OnReceivedRtt
  2028. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::StatsCounter::HasSample
  2029. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::HandleIncomingPacket
  2030. 0.00% PacerThread EgoSystem [.] non-virtual thunk to webrtc::PacketRouter::FetchFec()
  2031. 0.00% AudioEncoder EgoSystem [.] webrtc::NtpOffsetMs
  2032. 0.00% EncoderQueue EgoSystem [.] vp8_calc_ref_frame_costs
  2033. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocket::RecvFrom
  2034. 0.00% rtp_send_contro EgoSystem [.] read@plt
  2035. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::OouraFft::Fft
  2036. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<webrtc::RtpTransport, rtc::PacketTransportInternal*, char const*, unsigned long, long const&, int>
  2037. 0.00% EgoSystem EgoSystem [.] rtc::TimeMicros
  2038. 0.00% EgoSystem EgoSystem [.] webrtc::I420BufferInterface::ToI420
  2039. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingStats::AudioProcessingStats
  2040. 0.00% webrtc_audio_mo libc-2.31.so [.] __getpid
  2041. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSender::RtxStatus
  2042. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000e9e4
  2043. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_ldadd4_acq
  2044. 0.00% pc_network_thre EgoSystem [.] cricket::BasicIceController::FindNextPingableConnection
  2045. 0.00% Thread 0x0x326b EgoSystem [.] rtc::Event::Set
  2046. 0.00% webrtc_audio_mo EgoSystem [.] pthread_self@plt
  2047. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_disable_asynccancel
  2048. 0.00% EncoderQueue libpthread-2.31.so [.] __libc_write
  2049. 0.00% EncoderQueue EgoSystem [.] webrtc::LibvpxVp8Encoder::SetRates
  2050. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<webrtc::JsepTransportController, rtc::CopyOnWriteBuffer*, long>
  2051. 0.00% EncoderQueue EgoSystem [.] vpx_dc_left_predictor_8x8_neon
  2052. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e858
  2053. 0.00% EgoSystem EgoSystem [.] std::endl<char, std::char_traits<char> >@plt
  2054. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NetEqImpl::last_output_sample_rate_hz
  2055. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::FrameCountUpdated(webrtc::FrameCounts const&, unsigned int)
  2056. 0.00% rtp_send_contro EgoSystem [.] webrtc::AimdRateControl::Update
  2057. 0.00% AudioEncoder EgoSystem [.] silk_sigm_Q15
  2058. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_thread_is_running@plt
  2059. 0.00% PacerThread libpthread-2.31.so [.] __condvar_dec_grefs
  2060. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to webrtc::internal::VideoSendStreamImpl::OnEncodedImage(webrtc::EncodedImage const&, webrtc::CodecSpecificInfo const*)
  2061. 0.00% SharedModThread EgoSystem [.] std::vector<webrtc::rtcp::Sdes::Chunk, std::allocator<webrtc::rtcp::Sdes::Chunk> >::_M_realloc_insert<webrtc::rtcp::Sdes::Chunk const&>
  2062. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_mutex_unlock@plt
  2063. 0.00% Thread 0x0x326b EgoSystem [.] non-virtual thunk to webrtc::internal::Call::DeliverPacket(webrtc::MediaType, rtc::CopyOnWriteBuffer, long)
  2064. 0.00% rtp_send_contro EgoSystem [.] webrtc::IntervalBudget::budget_ratio
  2065. 0.00% SharedModThread EgoSystem [.] webrtc::RealTimeClock::CurrentTime
  2066. 0.00% AudioEncoder EgoSystem [.] webrtc::PacingController::EnqueuePacket
  2067. 0.00% pc_network_thre EgoSystem [.] operator new@plt
  2068. 0.00% EgoSystem EgoSystem [.] memset@plt
  2069. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b758
  2070. 0.00% pc_network_thre EgoSystem [.] webrtc::SrtpTransport::SendRtcpPacket
  2071. 0.00% SharedModThread EgoSystem [.] std::map<signed char, int, std::less<signed char>, std::allocator<std::pair<signed char const, int> > >::operator[]
  2072. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f300
  2073. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SourceTracker::OnFrameDelivered
  2074. 0.00% EncoderQueue EgoSystem [.] operator new[]@plt
  2075. 0.00% pc_network_thre libc-2.31.so [.] __vfprintf_internal
  2076. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrame::Reset
  2077. 0.00% webrtc_audio_mo libpthread-2.31.so [.] pthread_cond_destroy@@GLIBC_2.17
  2078. 0.00% AudioEncoder EgoSystem [.] webrtc::RTPSenderAudio::SetAudioLevel
  2079. 0.00% pc_network_thre EgoSystem [.] srtp_cipher_encrypt
  2080. 0.00% EgoSystem EgoSystem [.] webrtc::RealTimeClock::CurrentTime
  2081. 0.00% rtp_send_contro EgoSystem [.] webrtc::AlrDetector::SetEstimatedBitrate
  2082. 0.00% EncoderQueue EgoSystem [.] pow@plt
  2083. 0.00% webrtc_audio_mo libc-2.31.so [.] __aarch64_swp4_rel
  2084. 0.00% AudioEncoder EgoSystem [.] silk_encode_do_VAD_FIX
  2085. 0.00% EncoderQueue EgoSystem [.] webrtc::EncoderSimulcastProxy::OnPacketLossRateUpdate
  2086. 0.00% rtp_send_contro EgoSystem [.] operator delete@plt
  2087. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] poll@plt
  2088. 0.00% pc_network_thre EgoSystem [.] rtc::IPIsAny
  2089. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] _XSend
  2090. 0.00% webrtc_audio_mo libm-2.31.so [.] __llrint
  2091. 0.00% rtp_send_contro EgoSystem [.] webrtc::RTCPReceiver::OnPeriodicRttUpdate
  2092. 0.00% SharedModThread EgoSystem [.] rtc::PhysicalSocketServer::WakeUp
  2093. 0.00% EgoSystem [unknown] [k] 0xffffd21344780fb8
  2094. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002c2d8
  2095. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::LoudnessHistogram::AudioContent
  2096. 0.00% rtp_send_contro EgoSystem [.] webrtc::TransportPacketsFeedback::TransportPacketsFeedback
  2097. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __condvar_dec_grefs
  2098. 0.00% rtp_send_contro EgoSystem [.] rtc::NetworkRoute::operator==
  2099. 0.00% PacerThread libpthread-2.31.so [.] __lll_lock_wait
  2100. 0.00% AudioEncoder [unknown] [k] 0xffffd213435dcfa4
  2101. 0.00% webrtc_audio_mo EgoSystem [.] rtc::BufferT<short, false>::AppendData<short, (void*)0>
  2102. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000022bb4
  2103. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_set_read_callback
  2104. 0.00% EncoderQueue EgoSystem [.] vp8cx_encode_intra_macroblock
  2105. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::RemoteEstimatorProxy::TimeUntilNextProcess()
  2106. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] xcb_poll_for_queued_event@plt
  2107. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_stream_set_read_callback
  2108. 0.00% AudioEncoder EgoSystem [.] webrtc::RTCPSender::SetLastRtpTime
  2109. 0.00% threaded-ml libpthread-2.31.so [.] __pthread_enable_asynccancel
  2110. 0.00% rtp_send_contro EgoSystem [.] webrtc::IntervalBudget::IncreaseBudget
  2111. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AdaptiveFirFilter::ComputeFrequencyResponse
  2112. 0.00% pc_network_thre EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::HasOneRef
  2113. 0.00% webrtc_audio_mo EgoSystem [.] pthread_mutex_unlock@plt
  2114. 0.00% EncoderQueue EgoSystem [.] rtc::CopyOnWriteBuffer::~CopyOnWriteBuffer
  2115. 0.00% pc_network_thre EgoSystem [.] rtc::Signaler::OnEvent
  2116. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000412fc
  2117. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] xcb_poll_for_queued_event
  2118. 0.00% pc_network_thre EgoSystem [.] std::__detail::_List_node_base::_M_hook@plt
  2119. 0.00% pc_network_thre EgoSystem [.] std::__detail::_List_node_base::_M_unhook@plt
  2120. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_enable_asynccancel
  2121. 0.00% webrtc_audio_mo EgoSystem [.] memmove@plt
  2122. 0.00% pc_network_thre EgoSystem [.] std::priority_queue<rtc::Thread::DelayedMessage, std::vector<rtc::Thread::DelayedMessage, std::allocator<rtc::Thread::DelayedMessage> >, std::less<rtc::Thread::DelayedMessage> >::push
  2123. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_pstream_unref
  2124. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000000l> >::duration<long, std::ratio<1l, 1l>, void>
  2125. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] operator delete
  2126. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<unsigned int, unsigned int, std::_Identity<unsigned int>, std::less<unsigned int>, std::allocator<unsigned int> >::_M_erase
  2127. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] operator new
  2128. 0.00% AudioEncoder EgoSystem [.] webrtc::AbsoluteCaptureTimeReceiver::GetSource
  2129. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_frame_size
  2130. 0.00% pc_network_thre EgoSystem [.] srtp_ekt_write_data
  2131. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioMixerImpl::Mix
  2132. 0.00% threaded-ml libc-2.31.so [.] __libc_enable_asynccancel
  2133. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000000l> >::duration<int, void>
  2134. 0.00% pc_network_thre EgoSystem [.] std::__adjust_heap<__gnu_cxx::__normal_iterator<rtc::Thread::DelayedMessage*, std::vector<rtc::Thread::DelayedMessage, std::allocator<rtc::Thread::DelayedMessage> > >, long, rtc::Thread::DelayedMessage, __gnu_cxx::__ops::_Iter_comp_iter<std::less<rtc::Thread::DelayedMessage> > >
  2135. 0.00% PacerThread EgoSystem [.] non-virtual thunk to cricket::WebRtcVideoChannel::SendRtp(unsigned char const*, unsigned long, webrtc::PacketOptions const&)
  2136. 0.00% SharedModThread EgoSystem [.] pthread_mutex_unlock@plt
  2137. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_frame_size
  2138. 0.00% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::GetHighestPriorityStream
  2139. 0.00% AudioEncoder EgoSystem [.] ec_encode_bin
  2140. 0.00% EncoderQueue EgoSystem [.] webrtc::TaskQueueBase::Current
  2141. 0.00% PacerThread EgoSystem [.] rtc::Thread::PostTask
  2142. 0.00% EgoSystem libstdc++.so.6.0.28 [.] __dynamic_cast@plt
  2143. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelSend::ModifyEncoder
  2144. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::TypingDetection::Process
  2145. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::LoudnessHistogram::Update
  2146. 0.00% PacerThread EgoSystem [.] std::_Rb_tree_increment@plt
  2147. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::StatisticsCalculator::IncreaseCounter
  2148. 0.00% SharedModThread EgoSystem [.] std::vector<std::unique_ptr<webrtc::rtcp::RtcpPacket, std::default_delete<webrtc::rtcp::RtcpPacket> >, std::allocator<std::unique_ptr<webrtc::rtcp::RtcpPacket, std::default_delete<webrtc::rtcp::RtcpPacket> > > >::_M_realloc_insert<std::unique_ptr<webrtc::rtcp::RtcpPacket, std::default_delete<webrtc::rtcp::RtcpPacket> > >
  2149. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpPacket::~RtpPacket
  2150. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_read
  2151. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_memblockq_get_length@plt
  2152. 0.00% rtp_send_contro EgoSystem [.] webrtc::ProcessInterval::ProcessInterval
  2153. 0.00% SharedModThread libc-2.31.so [.] malloc_consolidate
  2154. 0.00% EgoSystem EgoSystem [.] write@plt
  2155. 0.00% EncoderQueue EgoSystem [.] vp8cx_set_alt_lf_level
  2156. 0.00% PacerThread libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  2157. 0.00% AudioEncoder EgoSystem [.] ec_enc_done
  2158. 0.00% AudioEncoder EgoSystem [.] ec_laplace_encode
  2159. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::internal::Call::DeliverPacket
  2160. 0.00% rtp_send_contro EgoSystem [.] std::_Rb_tree_insert_and_rebalance@plt
  2161. 0.00% rtp_send_contro EgoSystem [.] webrtc::rtcp::TransportFeedback::~TransportFeedback
  2162. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NrFft::Ifft
  2163. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodedImage::EncodedImage
  2164. 0.00% AudioEncoder EgoSystem [.] quant_energy_finalise
  2165. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::metrics::HistogramFactoryGetCountsLinear
  2166. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_mutex_unlock
  2167. 0.00% pc_network_thre EgoSystem [.] rtc::ThreadManager::Instance
  2168. 0.00% SharedModThread EgoSystem [.] rtc::TimeMicros
  2169. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<long, std::ratio<1l, 1000l> >, long, std::ratio<1l, 1000000000l> >
  2170. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  2171. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTCPReceiver::HandleReportBlock
  2172. 0.00% AudioEncoder EgoSystem [.] webrtc::AbsoluteCaptureTimeSender::GetSource
  2173. 0.00% webrtc_audio_mo EgoSystem [.] AudioFrameObserver::OnData
  2174. 0.00% webrtc_audio_mo libc-2.31.so [.] __aarch64_swp8_acq
  2175. 0.00% AudioEncoder libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  2176. 0.00% AudioEncoder EgoSystem [.] silk_interpolate
  2177. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelReceive::ReceivedRTCPPacket
  2178. 0.00% PacerThread EgoSystem [.] rtc::CopyOnWriteBuffer::SetSize
  2179. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_ldadd4_acq
  2180. 0.00% webrtc_audio_mo libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create
  2181. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_write
  2182. 0.00% pc_network_thre libc-2.31.so [.] __strlen_generic
  2183. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_ldadd8_acq
  2184. 0.00% AudioEncoder EgoSystem [.] webrtc::RTCPSender::Sending
  2185. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::TransportFeedback::TransportFeedback
  2186. 0.00% EgoSystem libstdc++.so.6.0.28 [.] free@plt
  2187. 0.00% webrtc_audio_mo libstdc++.so.6.0.28 [.] operator new
  2188. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScaler::ReportQp
  2189. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPReceiver::NTP
  2190. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002afb8
  2191. 0.00% webrtc_audio_mo EgoSystem [.] tanhf@plt
  2192. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpUtility::RtpHeaderParser::RtpHeaderParser
  2193. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002c2c4
  2194. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelReceive::PreferredSampleRate
  2195. 0.00% EncoderQueue EgoSystem [.] vp8_short_idct4x4llm_neon
  2196. 0.00% Thread 0x0x326b EgoSystem [.] rtc::ScopedMessageData<rtc::AsyncClosure>::~ScopedMessageData
  2197. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::AllocationSequence, rtc::AsyncPacketSocket*, char const*, unsigned long, rtc::SocketAddress const&, long const&>
  2198. 0.00% rtp_send_contro EgoSystem [.] webrtc::RateControlSettings::UseCongestionWindowDropFrameOnly
  2199. 0.00% threaded-ml libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  2200. 0.00% EncoderQueue EgoSystem [.] powf@plt
  2201. 0.00% EncoderQueue EgoSystem [.] rtc::TimeMicros
  2202. 0.00% rtp_send_contro EgoSystem [.] webrtc::internal::AudioSendStream::UpdateOverheadForEncoder
  2203. 0.00% pc_network_thre libc-2.31.so [.] __libc_enable_asynccancel
  2204. 0.00% EncoderQueue EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::VideoStreamEncoder::OnEncodedImage(webrtc::EncodedImage const&, webrtc::CodecSpecificInfo const*)::$_17>::Run
  2205. 0.00% threaded-ml libpthread-2.31.so [.] __aarch64_cas4_rel
  2206. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000l> >::zero
  2207. 0.00% Thread 0x0x326b EgoSystem [.] rtc::CritScope::CritScope
  2208. 0.00% pc_network_thre EgoSystem [.] getsockname@plt
  2209. 0.00% EgoSystem libc-2.31.so [.] __aarch64_swp8_acq
  2210. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_fdsem_post
  2211. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to cricket::BaseChannel::SendRtcp(rtc::CopyOnWriteBuffer*, rtc::PacketOptions const&)
  2212. 0.00% Thread 0x0x326b EgoSystem [.] rtc::FireAndForgetAsyncClosure<cricket::BaseChannel::SignalSentPacket_n(rtc::SentPacket const&)::$_10>::~FireAndForgetAsyncClosure
  2213. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPSender::SetLastRtpTime
  2214. 0.00% webrtc_audio_mo EgoSystem [.] non-virtual thunk to webrtc::internal::AudioReceiveStream::GetAudioFrameWithInfo(int, webrtc::AudioFrame*)
  2215. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_values<long>::zero
  2216. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000003fbac
  2217. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblock_ref
  2218. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodeUsageResource::OnEncodeStarted
  2219. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::P2PTransportChannel, cricket::Connection*, char const*, unsigned long, long>
  2220. 0.00% pc_network_thre EgoSystem [.] rtc::SocketAddress::operator<
  2221. 0.00% rtp_send_contro EgoSystem [.] webrtc::(anonymous namespace)::AllocateBitrates
  2222. 0.00% threaded-ml libpulsecommon-13.99.so [.] memcpy@plt
  2223. 0.00% Thread 0x0x326b EgoSystem [.] write@plt
  2224. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::CompoundPacket::Create
  2225. 0.00% SharedModThread libstdc++.so.6.0.28 [.] std::_Rb_tree_rebalance_for_erase
  2226. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::SenderReport::SetReportBlocks
  2227. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] malloc@plt
  2228. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::acm2::AcmReceiver::last_packet_sample_rate_hz
  2229. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::SendProcessingUsage1::Value
  2230. 0.00% EncoderQueue EgoSystem [.] webrtc::SimulcastRateAllocator::Allocate
  2231. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::SetExtensionLengthMaybeAddZeroPadding
  2232. 0.00% EgoSystem libstdc++.so.6.0.28 [.] memchr@plt
  2233. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::SenderReport::Create
  2234. 0.00% rtp_send_contro EgoSystem [.] webrtc::NetworkControlUpdate::NetworkControlUpdate
  2235. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTCPReceiver::IncomingPacket
  2236. 0.00% Thread 0x0x326b EgoSystem [.] rtc::FunctionView<void (webrtc::AudioEncoder*)>::CallVoidPtr<webrtc::voe::(anonymous namespace)::ChannelSend::OnReceivedRtt(long)::$_9>
  2237. 0.00% AudioEncoder EgoSystem [.] rtc::TimeMillis
  2238. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioMultiVector::Channels
  2239. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_read@plt
  2240. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTCPReceiver::NTP
  2241. 0.00% pc_network_thre EgoSystem [.] pthread_cond_broadcast@plt
  2242. 0.00% pc_network_thre EgoSystem [.] epoll_wait@plt
  2243. 0.00% Thread 0x0x326b EgoSystem [.] non-virtual thunk to webrtc::RtpVideoSender::OnPacketFeedbackVector(std::vector<webrtc::StreamFeedbackObserver::StreamPacketInfo, std::allocator<webrtc::StreamFeedbackObserver::StreamPacketInfo> >)
  2244. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::BlockProcessorImpl::GetMetrics
  2245. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::NetEqImpl::GetPlayoutTimestamp
  2246. 0.00% EncoderQueue EgoSystem [.] update_mode
  2247. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree_rebalance_for_erase@plt
  2248. 0.00% pc_network_thre EgoSystem [.] srtp_protect_rtcp
  2249. 0.00% webrtc_audio_mo EgoSystem [.] std::__introsort_loop<__gnu_cxx::__normal_iterator<webrtc::(anonymous namespace)::SourceFrame*, std::vector<webrtc::(anonymous namespace)::SourceFrame, std::allocator<webrtc::(anonymous namespace)::SourceFrame> > >, long, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(webrtc::(anonymous namespace)::SourceFrame const&, webrtc::(anonymous namespace)::SourceFrame const&)> >
  2250. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::OnEncodedFrameTimeMeasured
  2251. 0.00% SharedModThread EgoSystem [.] webrtc::StreamDataCounters::StreamDataCounters
  2252. 0.00% EncoderQueue EgoSystem [.] vp8_cost_tokens
  2253. 0.00% EgoSystem EgoSystem [.] rtc::RefCountedObject<webrtc::I420Buffer>::~RefCountedObject
  2254. 0.00% AudioEncoder libstdc++.so.6.0.28 [.] operator new@plt
  2255. 0.00% EgoSystem EgoSystem [.] pthread_mutex_lock@plt
  2256. 0.00% webrtc_audio_mo EgoSystem [.] memcpy@plt
  2257. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoSendTiming::GetDeltaCappedMs
  2258. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoBitrateAllocation::operator==
  2259. 0.00% rtp_send_contro EgoSystem [.] webrtc::AimdRateControl::ValidEstimate
  2260. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f3a8
  2261. 0.00% SharedModThread EgoSystem [.] std::_Rb_tree<webrtc::RTCPPacketType, webrtc::RTCPPacketType, std::_Identity<webrtc::RTCPPacketType>, std::less<webrtc::RTCPPacketType>, std::allocator<webrtc::RTCPPacketType> >::_M_get_insert_hint_unique_pos
  2262. 0.00% SharedModThread EgoSystem [.] rtc::PacketOptions::PacketOptions
  2263. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003ec94
  2264. 0.00% rtp_send_contro EgoSystem [.] webrtc::BitrateEstimator::bitrate
  2265. 0.00% webrtc_audio_mo libc-2.31.so [.] pthread_self
  2266. 0.00% EgoSystem EgoSystem [.] std::chrono::operator< <long, std::ratio<1l, 1000000l>, long, std::ratio<1l, 1000000l> >
  2267. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioMultiVector::Size
  2268. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pthread_mutex_lock@plt
  2269. 0.00% EncoderQueue EgoSystem [.] rtc::CurrentThreadRef
  2270. 0.00% PacerThread libpthread-2.31.so [.] __condvar_release_lock
  2271. 0.00% rtp_send_contro EgoSystem [.] webrtc::IntervalBudget::set_target_rate_kbps
  2272. 0.00% PacerThread EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::FetchFecPackets
  2273. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003e780
  2274. 0.00% Thread 0x0x326b libpthread-2.31.so [.] _pthread_cleanup_pop
  2275. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b718
  2276. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::acm2::AcmReceiver::GetAudio
  2277. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::StrideY
  2278. 0.00% SharedModThread libpthread-2.31.so [.] __pthread_mutex_cond_lock
  2279. 0.00% AudioEncoder EgoSystem [.] absl::inlined_vector_internal::Storage<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> >, 4ul, std::allocator<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > > >::Swap
  2280. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetPayloadSize
  2281. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::HandleRenderRuntimeSettings
  2282. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pthread_getspecific@plt
  2283. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelSend::ReceivedRTCPPacket
  2284. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_rtclock_get
  2285. 0.00% AudioEncoder libc-2.31.so [.] cfree@GLIBC_2.17
  2286. 0.00% rtp_send_contro EgoSystem [.] webrtc::IntervalBudget::UseBudget
  2287. 0.00% pc_network_thre EgoSystem [.] cricket::GetRtpSeqNum
  2288. 0.00% threaded-ml libpulse.so.0.21.2 [.] poll@plt
  2289. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::Clear
  2290. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::NetEqImpl::FilteredCurrentDelayMs
  2291. 0.00% SharedModThread EgoSystem [.] webrtc::RtcEventRtcpPacketOutgoing::RtcEventRtcpPacketOutgoing
  2292. 0.00% AudioEncoder EgoSystem [.] silk_scale_copy_vector16
  2293. 0.00% AudioEncoder EgoSystem [.] webrtc::AbsoluteCaptureTimeReceiver::InterpolateAbsoluteCaptureTimestamp
  2294. 0.00% EgoSystem EgoSystem [.] poll@plt
  2295. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_mainloop_wakeup
  2296. 0.00% webrtc_audio_mo EgoSystem [.] rtc::CurrentThreadRef
  2297. 0.00% EncoderQueue EgoSystem [.] read@plt
  2298. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_pstream_send_memblock
  2299. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b7a8
  2300. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacket::~RtpPacket
  2301. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::BuildSR
  2302. 0.00% EncoderQueue EgoSystem [.] webrtc::StableTargetRateExperiment::IsEnabled
  2303. 0.00% AudioEncoder libstdc++.so.6.0.28 [.] malloc@plt
  2304. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037a80
  2305. 0.00% SharedModThread EgoSystem [.] pthread_cond_timedwait@plt
  2306. 0.00% SharedModThread libpthread-2.31.so [.] __pthread_mutex_unlock
  2307. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::RemoteBitrateEstimatorSingleStream::Process()
  2308. 0.00% AudioEncoder libc-2.31.so [.] epoll_pwait
  2309. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<unsigned int, unsigned int, std::_Identity<unsigned int>, std::less<unsigned int>, std::allocator<unsigned int> >::operator=
  2310. 0.00% AudioEncoder EgoSystem [.] pthread_mutex_lock@plt
  2311. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000c9f8
  2312. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000022b98
  2313. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e810
  2314. 0.00% webrtc_audio_mo libpthread-2.31.so [.] pthread_cond_broadcast@@GLIBC_2.17
  2315. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] memcpy@plt
  2316. 0.00% EncoderQueue EgoSystem [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_assign@plt
  2317. 0.00% rtp_send_contro EgoSystem [.] std::vector<webrtc::PacketResult, std::allocator<webrtc::PacketResult> >::reserve
  2318. 0.00% EgoSystem libpthread-2.31.so [.] __pthread_enable_asynccancel
  2319. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003cde8
  2320. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetSequenceNumber
  2321. 0.00% AudioEncoder EgoSystem [.] non-virtual thunk to webrtc::PacedSender::EnqueuePackets(std::vector<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> >, std::allocator<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> > > >)
  2322. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_pstream_send_release
  2323. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_hashmap_put
  2324. 0.00% rtp_send_contro EgoSystem [.] webrtc::LinkCapacityEstimator::UpperBound
  2325. 0.00% rtp_send_contro EgoSystem [.] rtc::internal::WeakPtrBase::~WeakPtrBase
  2326. 0.00% PacerThread EgoSystem [.] std::__detail::_List_node_base::_M_hook@plt
  2327. 0.00% rtp_send_contro EgoSystem [.] webrtc::TransportPacketsFeedback::ReceivedWithSendInfo
  2328. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000l> >::count
  2329. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::HasExtension
  2330. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_fdsem_before_poll
  2331. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_swp4_acq
  2332. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::PendingTaskSafetyFlag::alive
  2333. 0.00% pc_network_thre EgoSystem [.] srtp_rdb_check
  2334. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree_rebalance_for_erase@plt
  2335. 0.00% pc_network_thre EgoSystem [.] rtc::SocketDispatcher::IsDescriptorClosed
  2336. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<unsigned char, std::allocator<unsigned char> >::_M_fill_insert
  2337. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpVideoSender::OnBitrateUpdated
  2338. 0.00% Thread 0x0x326b EgoSystem [.] operator new@plt
  2339. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000ba00
  2340. 0.00% SharedModThread EgoSystem [.] rtc::Thread::Post
  2341. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_unhook
  2342. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPVideoHeader::RTPVideoHeader
  2343. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8TemporalLayers::OnPacketLossRateUpdate
  2344. 0.00% SharedModThread EgoSystem [.] rtc::CritScope::CritScope
  2345. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041478
  2346. 0.00% pc_network_thre EgoSystem [.] rtc::RefCountedObject<webrtc::PendingTaskSafetyFlag>::AddRef
  2347. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::Read
  2348. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::flush@plt
  2349. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __libc_write
  2350. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_pdispatch_run@plt
  2351. 0.00% EgoSystem EgoSystem [.] rtc::scoped_refptr<webrtc::VideoFrameBuffer>::~scoped_refptr
  2352. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::BlockProcessorImpl::BufferRender
  2353. 0.00% EncoderQueue [unknown] [k] 0xffffd213435c02d0
  2354. 0.00% AudioEncoder EgoSystem [.] webrtc::RmsLevel::Average
  2355. 0.00% PacerThread EgoSystem [.] pthread_getspecific@plt
  2356. 0.00% AudioEncoder EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  2357. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResourceManager::OnEncodeStarted
  2358. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] recvmsg@plt
  2359. 0.00% webrtc_audio_mo libpthread-2.31.so [.] _pthread_cleanup_pop
  2360. 0.00% webrtc_audio_mo EgoSystem [.] std::vector<double, std::allocator<double> >::_M_default_append
  2361. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_hashmap_get@plt
  2362. 0.00% PacerThread libpthread-2.31.so [.] pthread_cond_broadcast@@GLIBC_2.17
  2363. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::UpdatePropagationRtt
  2364. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_sample_spec_valid
  2365. 0.00% pc_network_thre EgoSystem [.] read@plt
  2366. 0.00% rtp_send_contro libc-2.31.so [.] epoll_wait
  2367. 0.00% SharedModThread EgoSystem [.] pthread_mutex_lock@plt
  2368. 0.00% pc_network_thre EgoSystem [.] rtc::CritScope::~CritScope
  2369. 0.00% rtp_send_contro EgoSystem [.] rtc::LogMessage::IsNoop<(rtc::LoggingSeverity)0>
  2370. 0.00% pc_network_thre libc-2.31.so [.] _itoa_word
  2371. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoFrame::size
  2372. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000002b370
  2373. 0.00% EncoderQueue EgoSystem [.] webrtc::GenericFrameInfo::~GenericFrameInfo
  2374. 0.00% pc_network_thre EgoSystem [.] octet_string_is_eq
  2375. 0.00% rtp_send_contro EgoSystem [.] rtc::LogMessage::IsNoop
  2376. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::HighPassFilter::Process
  2377. 0.00% pc_network_thre EgoSystem [.] webrtc::SrtpTransport::UnprotectRtcp
  2378. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoDetector::PackRenderAudioBuffer
  2379. 0.00% SharedModThread EgoSystem [.] webrtc::RealTimeClock::TimeInMilliseconds
  2380. 0.00% EgoSystem libstdc++.so.6.0.28 [.] operator delete
  2381. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] operator delete[]
  2382. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::BuildSDES
  2383. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_rtclock_get@plt
  2384. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblockq_push
  2385. 0.00% rtp_send_contro EgoSystem [.] webrtc::RTPSender::ExpectedPerPacketOverhead
  2386. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_mempool_block_size_max@plt
  2387. 0.00% EncoderQueue EgoSystem [.] webrtc::rtcp::RtcpPacket::Build
  2388. 0.00% pc_network_thre EgoSystem [.] cricket::BasicIceController::connections
  2389. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPSender::TimeToSendRTCPReport
  2390. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8TemporalLayers::UpdateConfiguration
  2391. 0.00% pc_network_thre EgoSystem [.] sha1_final
  2392. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_hook
  2393. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_hashmap_remove
  2394. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioTrackSinkInterface::OnData
  2395. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcVad_Process
  2396. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<rtc::AsyncUDPSocket, rtc::AsyncSocket*>
  2397. 0.00% EncoderQueue EgoSystem [.] std::map<unsigned int, webrtc::SendStatisticsProxy::StatsUpdateTimes, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, webrtc::SendStatisticsProxy::StatsUpdateTimes> > >::operator[]
  2398. 0.00% Thread 0x0x326b libpthread-2.31.so [.] _pthread_cleanup_push
  2399. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::StrideV
  2400. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::SplittingFilter::Synthesis
  2401. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_smoother_get@plt
  2402. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPVideoHeader::~RTPVideoHeader
  2403. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpGenericFrameDescriptor::AddFrameDependencyDiff
  2404. 0.00% EncoderQueue libpthread-2.31.so [.] __pthread_mutex_unlock
  2405. 0.00% AudioEncoder EgoSystem [.] webrtc::PacingController::EnqueuePacketInternal
  2406. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoFrame::UpdateRect::IsEmpty
  2407. 0.00% EncoderQueue EgoSystem [.] std::__detail::_List_node_base::_M_unhook@plt
  2408. 0.00% rtp_send_contro EgoSystem [.] webrtc::BitrateAllocator::OnNetworkEstimateChanged
  2409. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __libc_write
  2410. 0.00% Thread 0x0x326b EgoSystem [.] rtc::FunctionView<void (std::unique_ptr<webrtc::AudioEncoder, std::default_delete<webrtc::AudioEncoder> >*)>::CallVoidPtr<webrtc::voe::(anonymous namespace)::ChannelSend::CallEncoder(rtc::FunctionView<void (webrtc::AudioEncoder*)>)::$_3>
  2411. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::GuessChannelLayout
  2412. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblock_acquire
  2413. 0.00% PacerThread EgoSystem [.] webrtc::VideoSendTiming::GetDeltaCappedMs
  2414. 0.00% threaded-ml EgoSystem [.] pthread_mutex_lock@plt
  2415. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000406a8
  2416. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_ldset4_acq
  2417. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioFrameOperations::Mute
  2418. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblock_release
  2419. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<rtc::internal::WeakReference::Flag>::AddRef
  2420. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::RtcpPacket::Build
  2421. 0.00% pc_network_thre EgoSystem [.] srtp_auth_get_prefix_length
  2422. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketToSend::RtpPacketToSend
  2423. 0.00% AudioEncoder EgoSystem [.] webrtc::AbsoluteCaptureTimeExtension::ValueSize
  2424. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::GetEstimatedLinkCapacity
  2425. 0.00% rtp_send_contro EgoSystem [.] webrtc::RateControlInput::RateControlInput
  2426. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<webrtc::RtpPacketHistory::StoredPacket*, webrtc::RtpPacketHistory::StoredPacket*, std::_Identity<webrtc::RtpPacketHistory::StoredPacket*>, webrtc::RtpPacketHistory::MoreUseful, std::allocator<webrtc::RtpPacketHistory::StoredPacket*> >::erase
  2427. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d8f8
  2428. 0.00% EncoderQueue EgoSystem [.] pthread_mutex_unlock@plt
  2429. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::GetMetrics
  2430. 0.00% EgoSystem libc-2.31.so [.] ___vsnprintf
  2431. 0.00% threaded-ml libpthread-2.31.so [.] __libc_write
  2432. 0.00% pc_network_thre EgoSystem [.] ioctl@plt
  2433. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_cas4_rel
  2434. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpPacketHistory::RemovePacket
  2435. 0.00% SharedModThread libpthread-2.31.so [.] __condvar_cancel_waiting
  2436. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x00000000000336b4
  2437. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f5d8
  2438. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_flist_pop
  2439. 0.00% SharedModThread EgoSystem [.] webrtc::TimeMicrosToNtp
  2440. 0.00% SharedModThread libc-2.31.so [.] __aarch64_swp8_acq
  2441. 0.00% rtp_send_contro EgoSystem [.] webrtc::RateAccCounter::Set
  2442. 0.00% AudioEncoder EgoSystem [.] celt_sqrt
  2443. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > >, std::_Select1st<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > >, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > > >::_M_get_insert_hint_unique_pos
  2444. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_append
  2445. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::use_facet<std::ctype<char> >@plt
  2446. 0.00% EncoderQueue EgoSystem [.] rtc::RateTracker::Time
  2447. 0.00% AudioEncoder libstdc++.so.6.0.28 [.] operator new
  2448. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::operator<<
  2449. 0.00% rtp_send_contro EgoSystem [.] webrtc::NetworkControlUpdate::~NetworkControlUpdate
  2450. 0.00% EgoSystem EgoSystem [.] rtc::TimeNanos
  2451. 0.00% AudioEncoder EgoSystem [.] ec_encode
  2452. 0.00% PacerThread EgoSystem [.] std::_Rb_tree_rebalance_for_erase@plt
  2453. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002af1c
  2454. 0.00% EncoderQueue EgoSystem [.] write@plt
  2455. 0.00% pc_network_thre EgoSystem [.] non-virtual thunk to rtc::SocketDispatcher::EnableEvents(unsigned char)
  2456. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::StrideU
  2457. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003ebc4
  2458. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcVad_CalcVad16khz
  2459. 0.00% AudioEncoder libc-2.31.so [.] __aarch64_swp8_acq
  2460. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_hashmap_size
  2461. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::~RtpPacket
  2462. 0.00% rtp_send_contro EgoSystem [.] webrtc::TrendlineEstimator::Update
  2463. 0.00% EgoSystem libstdc++.so.6.0.28 [.] vsnprintf@plt
  2464. 0.00% EncoderQueue EgoSystem [.] free@plt
  2465. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblockq_push_align
  2466. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameEncodeMetadataWriter::UpdateBitstream
  2467. 0.00% SharedModThread EgoSystem [.] webrtc::RemoteEstimatorProxy::SendPeriodicFeedbacks
  2468. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioFrame::data
  2469. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_hook
  2470. 0.00% pc_network_thre EgoSystem [.] srtp_unprotect_rtcp
  2471. 0.00% rtp_send_contro EgoSystem [.] webrtc::rtcp::TransportFeedback::GetBaseDelta
  2472. 0.00% EgoSystem libc-2.31.so [.] __GI___ioctl
  2473. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_idxset_trivial_hash_func
  2474. 0.00% EncoderQueue EgoSystem [.] vp8_update_reference
  2475. 0.00% pc_network_thre EgoSystem [.] webrtc::IceEventLog::LogCandidatePairEvent
  2476. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x00000000000336d4
  2477. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::GetStatistics
  2478. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPReceiver::ConsumeReceivedXrReferenceTimeInfo
  2479. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memchunk_reset
  2480. 0.00% EgoSystem libc-2.31.so [.] __GI___memset_generic
  2481. 0.00% pc_network_thre EgoSystem [.] rtc::SocketDispatcher::GetRequestedEvents
  2482. 0.00% rtp_send_contro EgoSystem [.] webrtc::SimulcastRateAllocator::GetTemporalRateAllocation
  2483. 0.00% EncoderQueue EgoSystem [.] webrtc::RateControlSettings::LibvpxVp8MinPixels
  2484. 0.00% SharedModThread libpthread-2.31.so [.] _pthread_cleanup_push
  2485. 0.00% EncoderQueue libc-2.31.so [.] __libc_enable_asynccancel
  2486. 0.00% webrtc_audio_mo libc-2.31.so [.] malloc_consolidate
  2487. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_run_once
  2488. 0.00% rtp_send_contro EgoSystem [.] webrtc::ProbeController::SetAlrStartTimeMs
  2489. 0.00% EncoderQueue EgoSystem [.] vp8cx_init_quantizer
  2490. 0.00% SharedModThread libpthread-2.31.so [.] __pthread_enable_asynccancel
  2491. 0.00% pc_network_thre EgoSystem [.] operator delete@plt
  2492. 0.00% pc_network_thre EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  2493. 0.00% SharedModThread libc-2.31.so [.] unlink_chunk.isra.0
  2494. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtcEventLogNull::Log
  2495. 0.00% pc_network_thre EgoSystem [.] rtc::EventDispatcher::OnPreEvent
  2496. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocket::GetError
  2497. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ProcessReverseAudioFrame
  2498. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPSender::ComputeCompoundRTCPPacket
  2499. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mcalign_pop
  2500. 0.00% webrtc_audio_mo libstdc++.so.6.0.28 [.] operator delete
  2501. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelSend::GetRTT
  2502. 0.00% rtp_send_contro EgoSystem [.] webrtc::PacingController::SetPacingRates
  2503. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::OnBitrateUpdated
  2504. 0.00% EncoderQueue EgoSystem [.] rtc::CritScope::CritScope
  2505. 0.00% AudioEncoder EgoSystem [.] silk_gains_ID
  2506. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] getpid@plt
  2507. 0.00% MQTTAsync_rcv EgoSystem [.] setStack
  2508. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __libc_recvmsg
  2509. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000e9d8
  2510. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<long, std::ratio<1l, 1000000000l> >, long, std::ratio<1l, 1000000l> >
  2511. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::DataU
  2512. 0.00% EncoderQueue libc-2.31.so [.] __aarch64_cas8_rel
  2513. 0.00% SharedModThread EgoSystem [.] clock_gettime@plt
  2514. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] xcb_wait_for_reply64
  2515. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoTimingExtension::Write
  2516. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblockq_peek
  2517. 0.00% pc_network_thre EgoSystem [.] rtc::BasicNetworkManager::ConvertIfAddrs
  2518. 0.00% rtp_send_contro EgoSystem [.] webrtc::DelayBasedBwe::IncomingPacketFeedback
  2519. 0.00% EncoderQueue EgoSystem [.] std::vector<webrtc::VideoEncoder::ResolutionBitrateLimits, std::allocator<webrtc::VideoEncoder::ResolutionBitrateLimits> >::operator=
  2520. 0.00% pc_network_thre EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::~RefCountedObject
  2521. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpSenderEgress::PeriodicUpdate
  2522. 0.00% webrtc_audio_mo EgoSystem [.] rtc::TimeMicros
  2523. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodedImageBuffer::Create
  2524. 0.00% rtp_send_contro EgoSystem [.] epoll_wait@plt
  2525. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FrameCombiner::Combine
  2526. 0.00% rtp_send_contro EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::PeriodicUpdate
  2527. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoCodec::VP8
  2528. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_disable_asynccancel
  2529. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_detect_fork@plt
  2530. 0.00% SharedModThread EgoSystem [.] webrtc::Random::Rand
  2531. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AgcManagerDirect::Process
  2532. 0.00% AudioEncoder EgoSystem [.] memcpy@plt
  2533. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003c9f8
  2534. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<rtc::internal::WeakReference::Flag>::Release
  2535. 0.00% pc_network_thre EgoSystem [.] rtc::TimeDiff
  2536. 0.00% AudioEncoder EgoSystem [.] ec_enc_patch_initial_bits
  2537. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::MeanVarianceEstimator::Update
  2538. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_stream_set_write_callback
  2539. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_threaded_mainloop_unlock
  2540. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamInputState::set_frame_size_pixels
  2541. 0.00% webrtc_audio_mo libc-2.31.so [.] __memmove_generic
  2542. 0.00% PacerThread EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::~RefCountedObject
  2543. 0.00% EncoderQueue EgoSystem [.] clock_gettime@plt
  2544. 0.00% SharedModThread libpthread-2.31.so [.] _pthread_cleanup_pop
  2545. 0.00% AudioEncoder libc-2.31.so [.] __aarch64_swp4_rel
  2546. 0.00% pc_network_thre EgoSystem [.] std::_Function_handler<cricket::IceTransportState (), cricket::P2PTransportChannel::P2PTransportChannel(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, cricket::PortAllocator*, webrtc::AsyncResolverFactory*, webrtc::RtcEventLog*, cricket::IceControllerFactoryInterface*)::$_0>::_M_invoke
  2547. 0.00% EncoderQueue EgoSystem [.] rtc::internal::WeakPtrBase::~WeakPtrBase
  2548. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003c690
  2549. 0.00% Thread 0x0x326b EgoSystem [.] non-virtual thunk to webrtc::RtpTransportControllerSend::OnTransportFeedback(webrtc::rtcp::TransportFeedback const&)
  2550. 0.00% rtp_send_contro EgoSystem [.] webrtc::internal::Call::OnTargetTransferRate
  2551. 0.00% EncoderQueue EgoSystem [.] operator delete[]@plt
  2552. 0.00% EncoderQueue EgoSystem [.] vpx_tm_predictor_16x16_neon
  2553. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_tagstruct_new_fixed
  2554. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000002b448
  2555. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RtcEventAudioPlayout::RtcEventAudioPlayout
  2556. 0.00% rtp_send_contro EgoSystem [.] webrtc::RealTimeClock::CurrentTime
  2557. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPSender::Sending
  2558. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::AnalyzeRender
  2559. 0.00% pc_network_thre EgoSystem [.] cricket::BasicIceController::IsPingable
  2560. 0.00% EgoSystem EgoSystem [.] std::operator<< <std::char_traits<char> >@plt
  2561. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMLossProtectionLogic::SelectedType
  2562. 0.00% threaded-ml libpulsecommon-13.99.so [.] pthread_mutex_unlock@plt
  2563. 0.00% pc_network_thre EgoSystem [.] srtp_rdbx_get_packet_index
  2564. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::AllocateExtension
  2565. 0.00% threaded-ml libpthread-2.31.so [.] __pthread_mutex_unlock
  2566. 0.00% PacerThread libstdc++.so.6.0.28 [.] operator new[]
  2567. 0.00% rtp_send_contro libm-2.31.so [.] exp2f@@GLIBC_2.27
  2568. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_tagstruct_getu32@plt
  2569. 0.00% SharedModThread libc-2.31.so [.] _int_free
  2570. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::SenderReport::SenderReport
  2571. 0.00% pc_network_thre EgoSystem [.] v128_left_shift
  2572. 0.00% AudioEncoder EgoSystem [.] silk_log2lin
  2573. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoFrame::video_frame_buffer
  2574. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::Sdes::Create
  2575. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_ldclr4_rel
  2576. 0.00% EgoSystem EgoSystem [.] ioctl@plt
  2577. 0.00% EncoderQueue EgoSystem [.] webrtc::SimulcastRateAllocator::DistributeAllocationToSimulcastLayers
  2578. 0.00% AudioEncoder libstdc++.so.6.0.28 [.] std::_Rb_tree_insert_and_rebalance
  2579. 0.00% pc_network_thre libc-2.31.so [.] _IO_default_xsputn
  2580. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d080
  2581. 0.00% rtp_send_contro libpthread-2.31.so [.] __lll_lock_wait
  2582. 0.00% AudioEncoder EgoSystem [.] read@plt
  2583. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] 0x0000000000022c3c
  2584. 0.00% rtp_send_contro EgoSystem [.] webrtc::internal::VideoSendStreamImpl::OnBitrateUpdated
  2585. 0.00% pc_network_thre EgoSystem [.] webrtc::SrtpTransport::ProtectRtcp
  2586. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] operator new@plt
  2587. 0.00% AudioEncoder EgoSystem [.] celt_cos_norm
  2588. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002afc8
  2589. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __lll_lock_wait
  2590. 0.00% EncoderQueue EgoSystem [.] std::__merge_sort_with_buffer<__gnu_cxx::__normal_iterator<unsigned long*, std::vector<unsigned long, std::allocator<unsigned long> > >, unsigned long*, __gnu_cxx::__ops::_Iter_comp_iter<webrtc::SimulcastRateAllocator::DistributeAllocationToSimulcastLayers(webrtc::DataRate, webrtc::DataRate, webrtc::VideoBitrateAllocation*)::$_1> >
  2591. 0.00% AudioEncoder EgoSystem [.] rtc::CopyOnWriteBuffer::SetSize
  2592. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ca00
  2593. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040528
  2594. 0.00% MQTTAsync_rcv libpthread-2.31.so [.] __aarch64_swp4_rel
  2595. 0.00% webrtc_audio_mo EgoSystem [.] operator new@plt
  2596. 0.00% AudioEncoder EgoSystem [.] memmove@plt
  2597. 0.00% EncoderQueue EgoSystem [.] absl::inlined_vector_internal::Storage<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> >, 4ul, std::allocator<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > > >::EmplaceBack<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > >
  2598. 0.00% threaded-ml EgoSystem [.] pthread_cond_broadcast@plt
  2599. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::height
  2600. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000412c8
  2601. 0.00% rtp_send_contro EgoSystem [.] webrtc::CongestionControlHandler::SetTargetRate
  2602. 0.00% EncoderQueue EgoSystem [.] cricket::BaseChannel::SendPacket
  2603. 0.00% EgoSystem libpthread-2.31.so [.] __aarch64_swp4_rel
  2604. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d920
  2605. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::ValidateFingerprint
  2606. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::acm2::CallStatistics::DecodedByNetEq
  2607. 0.00% EgoSystem EgoSystem [.] Callback<void const*, void const*, void const*, void const*, int, int, int, int, int, int>::operator bool
  2608. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoFrame::VideoFrame
  2609. 0.00% rtp_send_contro EgoSystem [.] std::_Rb_tree_increment@plt
  2610. 0.00% webrtc_audio_mo EgoSystem [.] std::fill
  2611. 0.00% SharedModThread libstdc++.so.6.0.28 [.] malloc@plt
  2612. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040348
  2613. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000033758
  2614. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] pthread_cond_signal@plt
  2615. 0.00% pc_network_thre EgoSystem [.] cricket::IceConfig::receiving_timeout_or_default
  2616. 0.00% EgoSystem EgoSystem [.] clock_gettime@plt
  2617. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResourceManager::SetEncoderRates
  2618. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodedImageBuffer::data
  2619. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::UpdateUmaStatsPacketsLost
  2620. 0.00% SharedModThread EgoSystem [.] operator new[]@plt
  2621. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMFecMethod::ProtectionFactor
  2622. 0.00% PacerThread EgoSystem [.] webrtc::TransportSequenceNumber::Parse
  2623. 0.00% webrtc_audio_mo EgoSystem [.] std::vector<float, std::allocator<float> >::_M_range_insert<__gnu_cxx::__normal_iterator<float const*, std::vector<float, std::allocator<float> > > >
  2624. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::StatisticsCalculator::GetLifetimeStatistics
  2625. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpSenderEgress::UpdateRtpStats
  2626. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpDataChannel::OnDataReceived
  2627. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_ldadd4_relax
  2628. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::PacketBuffer::Empty
  2629. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_mutex_unlock
  2630. 0.00% PacerThread [unknown] [k] 0xffffd21344780fb8
  2631. 0.00% SharedModThread libpthread-2.31.so [.] __condvar_confirm_wakeup
  2632. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodeUsageResource::OnEncodeCompleted
  2633. 0.00% rtp_send_contro libm-2.31.so [.] powf@@GLIBC_2.27
  2634. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::Agc::GetRmsErrorDb
  2635. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::TimeMicrosToNtp
  2636. 0.00% EncoderQueue EgoSystem [.] std::__merge_adaptive<__gnu_cxx::__normal_iterator<unsigned long*, std::vector<unsigned long, std::allocator<unsigned long> > >, long, unsigned long*, __gnu_cxx::__ops::_Iter_comp_iter<webrtc::SimulcastRateAllocator::DistributeAllocationToSimulcastLayers(webrtc::DataRate, webrtc::DataRate, webrtc::VideoBitrateAllocation*)::$_1> >
  2637. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8FrameConfig::Updates
  2638. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_flist_push
  2639. 0.00% rtp_send_contro EgoSystem [.] webrtc::AimdRateControl::SetNetworkStateEstimate
  2640. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_memblockq_push_align@plt
  2641. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, webrtc::DefaultTemporalLayers::PendingFrame>, std::_Select1st<std::pair<unsigned int const, webrtc::DefaultTemporalLayers::PendingFrame> >, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, webrtc::DefaultTemporalLayers::PendingFrame> > >::_M_get_insert_hint_unique_pos
  2642. 0.00% rtp_send_contro EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::Notify(unsigned int, unsigned int, unsigned int)
  2643. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_ldadd4_relax
  2644. 0.00% AudioEncoder EgoSystem [.] webrtc::RoundRobinPacketQueue::UpdateQueueTime
  2645. 0.00% AudioEncoder EgoSystem [.] silk_lin2log
  2646. 0.00% EncoderQueue EgoSystem [.] webrtc::RealTimeClock::CurrentTime
  2647. 0.00% pc_network_thre EgoSystem [.] cricket::IceMessage::GetAttributeValueType
  2648. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_write
  2649. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RtcEvent::RtcEvent
  2650. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_tagstruct_getu32
  2651. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::OnPacketsAcknowledged
  2652. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002afb8
  2653. 0.00% webrtc_audio_mo EgoSystem [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create@plt
  2654. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::DominantNearendDetector::IsNearendState
  2655. 0.00% SharedModThread EgoSystem [.] rtc::ThreadManager::Instance
  2656. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000336b4
  2657. 0.00% Thread 0x0x326b [unknown] [k] 0xffffd21344780fb8
  2658. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __condvar_confirm_wakeup
  2659. 0.00% AudioEncoder libc-2.31.so [.] unlink_chunk.isra.0
  2660. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::ClearInternal
  2661. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002af64
  2662. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_mutex_cond_lock
  2663. 0.00% rtp_send_contro EgoSystem [.] std::_Rb_tree<rtc::NetworkRoute, std::pair<rtc::NetworkRoute const, webrtc::DataSize>, std::_Select1st<std::pair<rtc::NetworkRoute const, webrtc::DataSize> >, webrtc::InFlightBytesTracker::NetworkRouteComparator, std::allocator<std::pair<rtc::NetworkRoute const, webrtc::DataSize> > >::_M_get_insert_unique_pos
  2664. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::Csrcs
  2665. 0.00% pc_network_thre libpthread-2.31.so [.] __libc_recvfrom
  2666. 0.00% PacerThread EgoSystem [.] webrtc::RtpPacketHistory::RemovePacket
  2667. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::QueueBandedRenderAudio
  2668. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041494
  2669. 0.00% pc_network_thre EgoSystem [.] recvfrom@plt
  2670. 0.00% PacerThread libstdc++.so.6.0.28 [.] operator delete
  2671. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_mempool_unref
  2672. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ApiCallJitterMetrics::ReportRenderCall
  2673. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::TransportFeedback::LastChunk::Decode
  2674. 0.00% PacerThread EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::SupportsRtxPayloadPadding
  2675. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityLimitationReasonTracker::SetReason
  2676. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003f148
  2677. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::DecisionLogic::GetFilteredBufferLevel
  2678. 0.00% pc_network_thre EgoSystem [.] rtc::CreateRandomString
  2679. 0.00% pc_network_thre EgoSystem [.] octet_string_set_to_zero
  2680. 0.00% EncoderQueue EgoSystem [.] std::__set_difference<std::_Rb_tree_const_iterator<long>, std::_Rb_tree_const_iterator<long>, std::back_insert_iterator<absl::InlinedVector<long, 5ul, std::allocator<long> > >, __gnu_cxx::__ops::_Iter_less_iter>
  2681. 0.00% pc_network_thre libc-2.31.so [.] memcmp
  2682. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f358
  2683. 0.00% PacerThread EgoSystem [.] rtc::Event::Set
  2684. 0.00% pc_network_thre libc-2.31.so [.] epoll_wait
  2685. 0.00% EncoderQueue libc-2.31.so [.] __sigsetjmp
  2686. 0.00% PacerThread EgoSystem [.] webrtc::IntervalBudget::bytes_remaining
  2687. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_rtclock_now
  2688. 0.00% SharedModThread EgoSystem [.] webrtc::RtcEventLogNull::Log
  2689. 0.00% webrtc_audio_mo EgoSystem [.] rtc::TimeMillis
  2690. 0.00% pc_network_thre EgoSystem [.] srtp_unprotect_mki
  2691. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtcEvent::RtcEvent
  2692. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002afdc
  2693. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_get_state
  2694. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::internal::AudioSendStream::DeliverRtcp(unsigned char const*, unsigned long)::$_4>::Run
  2695. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::LoudnessHistogram::InsertNewestEntryAndUpdate
  2696. 0.00% SharedModThread libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create
  2697. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::RtpPacket
  2698. 0.00% threaded-ml libpulsecommon-13.99.so [.] clock_gettime@plt
  2699. 0.00% Thread 0x0x326b EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::AddRef
  2700. 0.00% MQTTAsync_rcv libc-2.31.so [.] strncmp
  2701. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::EnableWriteCallback
  2702. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b5c0
  2703. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > >, std::_Select1st<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > >, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > > >::_M_erase_aux
  2704. 0.00% webrtc_audio_mo libc-2.31.so [.] __libc_disable_asynccancel
  2705. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree_insert_and_rebalance@plt
  2706. 0.00% AudioEncoder EgoSystem [.] ec_enc_bits
  2707. 0.00% pc_network_thre EgoSystem [.] rtc::SocketDispatcher::Create
  2708. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000031700
  2709. 0.00% PacerThread EgoSystem [.] webrtc::ForwardErrorCorrection::NumFecPackets
  2710. 0.00% PacerThread EgoSystem [.] rtc::NullSocketServer::WakeUp
  2711. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e994
  2712. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::_Rb_tree_insert_and_rebalance
  2713. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::StatisticsCalculator::ExpandedNoiseSamples
  2714. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskImpl<webrtc::internal::CallStats::CallStats(webrtc::Clock*, webrtc::TaskQueueBase*)::$_1>::RunClosure
  2715. 0.00% Thread 0x0x326b EgoSystem [.] pthread_cond_timedwait@plt
  2716. 0.00% rtp_send_contro EgoSystem [.] exp@plt
  2717. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RateStatistics::SetWindowSize
  2718. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mempool_unref
  2719. 0.00% threaded-ml libpthread-2.31.so [.] __aarch64_ldadd4_relax
  2720. 0.00% PacerThread EgoSystem [.] webrtc::RtcEventRtpPacketOutgoing::~RtcEventRtpPacketOutgoing
  2721. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoBitrateAllocation::VideoBitrateAllocation
  2722. 0.00% EncoderQueue EgoSystem [.] webrtc::I420BufferInterface::ToI420
  2723. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::Sdes::AddCName
  2724. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::MaybeInitializeRender
  2725. 0.00% rtp_send_contro EgoSystem [.] webrtc::FecControllerDefault::UpdateFecRates
  2726. 0.00% PacerThread EgoSystem [.] std::deque<webrtc::RtpPacketHistory::StoredPacket, std::allocator<webrtc::RtpPacketHistory::StoredPacket> >::_M_reallocate_map
  2727. 0.00% EncoderQueue libc-2.31.so [.] __aarch64_cas8_acq
  2728. 0.00% EncoderQueue EgoSystem [.] vpx_codec_enc_config_set
  2729. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoCanceller3::ActiveProcessing
  2730. 0.00% Thread 0x0x326b EgoSystem [.] std::__find_if<__gnu_cxx::__normal_iterator<cricket::StreamParams const*, std::vector<cricket::StreamParams, std::allocator<cricket::StreamParams> > >, __gnu_cxx::__ops::_Iter_pred<cricket::GetStreamBySsrc(std::vector<cricket::StreamParams, std::allocator<cricket::StreamParams> > const&, unsigned int)::{lambda(cricket::StreamParams const&)#1}> >
  2731. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<double, std::ratio<1l, 1000l> >::duration<long, std::ratio<1l, 1000000000l>, void>
  2732. 0.00% PacerThread libc-2.31.so [.] __lll_lock_wait_private
  2733. 0.00% EncoderQueue EgoSystem [.] rtc::internal::WeakReference::WeakReference
  2734. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_context_unref
  2735. 0.00% pc_network_thre EgoSystem [.] rtc::EventDispatcher::GetRequestedEvents
  2736. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] 0x0000000000022b98
  2737. 0.00% EncoderQueue EgoSystem [.] vpx_codec_pkt_list_get
  2738. 0.00% pc_network_thre EgoSystem [.] EVP_sha1
  2739. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000db40
  2740. 0.00% pc_network_thre EgoSystem [.] CTR_DRBG_generate
  2741. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::FecControllerDefault::UseLossVectorMask
  2742. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMLossProtectionLogic::UpdateMethod
  2743. 0.00% SharedModThread libc-2.31.so [.] __aarch64_cas4_acq
  2744. 0.00% EncoderQueue EgoSystem [.] vp8e_set_config
  2745. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_queue_push
  2746. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblockq_get_length
  2747. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::OnBitrateAllocationUpdated
  2748. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ReceiveSideCongestionController::OnRttUpdate
  2749. 0.00% pc_network_thre EgoSystem [.] rtc::EventDispatcher::Signal
  2750. 0.00% pc_network_thre EgoSystem [.] CRYPTO_get_fork_generation
  2751. 0.00% pc_network_thre EgoSystem [.] rtc::SentPacket::SentPacket
  2752. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameDropper::DropFrame
  2753. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::EncodedImageBuffer>::~RefCountedObject
  2754. 0.00% pc_network_thre libc-2.31.so [.] __netlink_request
  2755. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoderOpusImpl::GetTargetBitrate
  2756. 0.00% pc_network_thre EgoSystem [.] pthread_getspecific@plt
  2757. 0.00% rtp_send_contro EgoSystem [.] std::__detail::_List_node_base::_M_unhook@plt
  2758. 0.00% AudioEncoder libc-2.31.so [.] clock_gettime@@GLIBC_2.17
  2759. 0.00% pc_network_thre EgoSystem [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_assign@plt
  2760. 0.00% EgoSystem libstdc++.so.6.0.28 [.] fflush@plt
  2761. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b9c0
  2762. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to cricket::WebRtcVideoChannel::SendRtcp(unsigned char const*, unsigned long)
  2763. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::MeanVarianceEstimator::mean
  2764. 0.00% rtp_send_contro EgoSystem [.] webrtc::GoogCcNetworkController::OnTransportLossReport
  2765. 0.00% EncoderQueue EgoSystem [.] rtc::PhysicalSocketServer::WakeUp
  2766. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpTransportControllerSend::OnTransportFeedback
  2767. 0.00% pc_network_thre libc-2.31.so [.] __GI___ioctl
  2768. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b9dc
  2769. 0.00% pc_network_thre EgoSystem [.] rtc::SocketDispatcher::DisableEvents
  2770. 0.00% pc_network_thre EgoSystem [.] rtc::FireAndForgetAsyncClosure<rtc::MethodFunctor<cricket::P2PTransportChannel, void (cricket::P2PTransportChannel::*)(), void> >::Execute
  2771. 0.00% EncoderQueue EgoSystem [.] webrtc::ResourceAdaptationProcessor::ResourceListenerDelegate::OnResourceUsageStateMeasured
  2772. 0.00% pc_network_thre EgoSystem [.] cricket::ConnectionRequest::Prepare
  2773. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037a70
  2774. 0.00% Thread 0x0x326b EgoSystem [.] non-virtual thunk to webrtc::ModuleRtpRtcpImpl2::OnReceivedRtcpReportBlocks(std::__cxx11::list<webrtc::RTCPReportBlock, std::allocator<webrtc::RTCPReportBlock> > const&)
  2775. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041300
  2776. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_flist_pop
  2777. 0.00% SharedModThread EgoSystem [.] webrtc::RtpSenderEgress::GetSendRates
  2778. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, webrtc::SendStatisticsProxy::Frame>, std::_Select1st<std::pair<unsigned int const, webrtc::SendStatisticsProxy::Frame> >, webrtc::SendStatisticsProxy::TimestampOlderThan, std::allocator<std::pair<unsigned int const, webrtc::SendStatisticsProxy::Frame> > >::_M_emplace_unique<std::pair<unsigned int, webrtc::SendStatisticsProxy::Frame> >
  2779. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameDropper::Enable
  2780. 0.00% pc_network_thre EgoSystem [.] rtc::IPIsUnspec
  2781. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioVector::Size
  2782. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_tagstruct_eof@plt
  2783. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblock_get_length
  2784. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b740
  2785. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] write@plt
  2786. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodedImage::~EncodedImage
  2787. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> >, std::ratio<1000000l, 1l>, long, false, true>::__cast<long, std::ratio<1l, 1000l> >
  2788. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::RemoteRTCPStat
  2789. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::LibvpxVp8Facade::codec_control
  2790. 0.00% AudioEncoder EgoSystem [.] ec_enc_shrink
  2791. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004043c
  2792. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FrameBlocker::ExtractBlock
  2793. 0.00% webrtc_audio_mo libstdc++.so.6.0.28 [.] free@plt
  2794. 0.00% EncoderQueue libc-2.31.so [.] epoll_wait
  2795. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::acm2::AcmReceiver::FilteredCurrentDelayMs
  2796. 0.00% webrtc_audio_mo EgoSystem [.] rtc::LogMessage::IsNoop
  2797. 0.00% SharedModThread libstdc++.so.6.0.28 [.] operator delete@plt
  2798. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_thread_self@plt
  2799. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_ldadd4_rel
  2800. 0.00% SharedModThread libc-2.31.so [.] __memcpy_generic
  2801. 0.00% threaded-ml libpthread-2.31.so [.] __aarch64_swp4_rel
  2802. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetSsrc
  2803. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::BlockProcessorMetrics::UpdateCapture
  2804. 0.00% pc_network_thre EgoSystem [.] cricket::IceMessage::~IceMessage
  2805. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::UpdateEncoderFallbackStats
  2806. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mutex_unlock
  2807. 0.00% EncoderQueue EgoSystem [.] vp8_dc_only_idct_add_neon
  2808. 0.00% rtp_send_contro EgoSystem [.] rtc::Thread::IsQuitting
  2809. 0.00% pc_network_thre EgoSystem [.] cricket::InferRtpPacketType
  2810. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<long, std::ratio<1l, 1000l> >, std::ratio<1000l, 1l>, long, false, true>::__cast<long, std::ratio<1l, 1l> >
  2811. 0.00% webrtc_audio_mo libc-2.31.so [.] __libc_enable_asynccancel
  2812. 0.00% SharedModThread EgoSystem [.] webrtc::RtpConfig::IsRtxSsrc
  2813. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::internal::VideoSendStreamImpl::OnEncodedImage(webrtc::EncodedImage const&, webrtc::CodecSpecificInfo const*)::$_6&>::Run
  2814. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041678
  2815. 0.00% PacerThread EgoSystem [.] rtc::PacketOptions::~PacketOptions
  2816. 0.00% threaded-ml libpulsecommon-13.99.so [.] getpid@plt
  2817. 0.00% EncoderQueue EgoSystem [.] vp8_subtract_b
  2818. 0.00% EgoSystem EgoSystem [.] PeerConnection::SendDataChannelMessage
  2819. 0.00% rtp_send_contro libm-2.31.so [.] pow@@GLIBC_2.29
  2820. 0.00% pc_network_thre EgoSystem [.] cricket::BasicIceController::WritableConnectionPastPingInterval
  2821. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::PostTask
  2822. 0.00% SharedModThread libstdc++.so.6.0.28 [.] operator new@plt
  2823. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002af64
  2824. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] operator delete[]
  2825. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  2826. 0.00% AudioEncoder EgoSystem [.] silk_find_LPC_FIX
  2827. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::ReceiveSideCongestionController::Process()
  2828. 0.00% pc_network_thre libpthread-2.31.so [.] __lll_lock_wait
  2829. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<long, std::ratio<1l, 1000l> >, long, std::ratio<1l, 1l> >
  2830. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::TransparentModeImpl::Active
  2831. 0.00% AudioEncoder EgoSystem [.] webrtc::RealTimeClock::TimeInMilliseconds
  2832. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000336a8
  2833. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::UpdateAdaptationStats
  2834. 0.00% rtp_send_contro EgoSystem [.] webrtc::PacedPacketInfo::PacedPacketInfo
  2835. 0.00% threaded-ml EgoSystem [.] pthread_mutex_unlock@plt
  2836. 0.00% rtp_send_contro EgoSystem [.] webrtc::DelayBasedBwe::GetExpectedBwePeriod
  2837. 0.00% threaded-ml libpulsecommon-13.99.so [.] write@plt
  2838. 0.00% rtp_send_contro EgoSystem [.] rtc::CritScope::~CritScope
  2839. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::IsStunMethod
  2840. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::BlockFramer::InsertBlock
  2841. 0.00% webrtc_audio_mo libpthread-2.31.so [.] _pthread_cleanup_push
  2842. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioDeviceLinuxPulse::PlayThreadFunc
  2843. 0.00% rtp_send_contro EgoSystem [.] webrtc::(anonymous namespace)::DistributeBitrateEvenly
  2844. 0.00% pc_network_thre EgoSystem [.] sigslot::_signal_base<sigslot::multi_threaded_local>::~_signal_base
  2845. 0.00% pc_network_thre EgoSystem [.] rtc::BufferT<char, false>::AppendData<char, (void*)0>
  2846. 0.00% SharedModThread EgoSystem [.] webrtc::RtpSenderEgress::GetDataCounters
  2847. 0.00% rtp_send_contro EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::ExpectedPerPacketOverhead
  2848. 0.00% SharedModThread EgoSystem [.] webrtc::RtcEvent::RtcEvent
  2849. 0.00% EncoderQueue EgoSystem [.] vpx_he_predictor_4x4_c
  2850. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> > >::find
  2851. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::CircularBuffer::Push
  2852. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_write@plt
  2853. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoder::EncodedInfo::EncodedInfo
  2854. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrame::UpdateProfileTimeStamp
  2855. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::DoDelayPost
  2856. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000de94
  2857. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d0e0
  2858. 0.00% pc_network_thre EgoSystem [.] cricket::IceConfig::stable_writable_connection_ping_interval_or_default
  2859. 0.00% pc_network_thre [unknown] [k] 0xffffd213435c02d0
  2860. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::TransportFeedback::~TransportFeedback
  2861. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelSend::CallEncoder
  2862. 0.00% Thread 0x0x326b EgoSystem [.] DataChannelObserver::OnMessage
  2863. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] operator delete
  2864. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::ScaleFrom
  2865. 0.00% EgoSystem EgoSystem [.] std::chrono::operator-<long, std::ratio<1l, 1000l>, long, std::ratio<1l, 1l> >
  2866. 0.00% EgoSystem [unknown] [k] 0xffffd213435c02d0
  2867. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_timeval_load
  2868. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrame::data
  2869. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPReceiver::ConsumeReceivedXrReferenceTimeInfo
  2870. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::SetSsrc
  2871. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocketServer::WakeUp
  2872. 0.00% pc_network_thre EgoSystem [.] ctr_drbg_update
  2873. 0.00% SharedModThread EgoSystem [.] rtc::EventDispatcher::Signal
  2874. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_ldadd8_acq
  2875. 0.00% SharedModThread EgoSystem [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create@plt
  2876. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b7ac
  2877. 0.00% pc_network_thre libc-2.31.so [.] __aarch64_swp4_acq
  2878. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memblockq_get_length
  2879. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_mutex_lock
  2880. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002b770
  2881. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pthread_mutex_unlock@plt
  2882. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::RtcpPacketTypesCounterUpdated(unsigned int, webrtc::RtcpPacketTypeCounter const&)
  2883. 0.00% AudioEncoder libpthread-2.31.so [.] __pthread_mutex_unlock
  2884. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::Rtpfb::ParseCommonFeedback
  2885. 0.00% webrtc_audio_mo EgoSystem [.] log10f@plt
  2886. 0.00% AudioEncoder EgoSystem [.] silk_NLSF_VQ_weights_laroia
  2887. 0.00% threaded-ml libpthread-2.31.so [.] __aarch64_ldset4_rel
  2888. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_sample_format_valid
  2889. 0.00% EncoderQueue EgoSystem [.] webrtc::SimulcastRateAllocator::DistributeAllocationToTemporalLayers
  2890. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002b7b0
  2891. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ReportBlockStats::Store
  2892. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_sample_spec_valid
  2893. 0.00% EncoderQueue EgoSystem [.] webrtc::I420Buffer::StrideY
  2894. 0.00% EgoSystem EgoSystem [.] pthread_mutex_unlock@plt
  2895. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RateLimiter::SetWindowSize
  2896. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_mutex_lock@plt
  2897. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d170
  2898. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::DataV
  2899. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_iochannel_is_hungup
  2900. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtcEventLogNull::Log
  2901. 0.00% EgoSystem EgoSystem [.] rtc::scoped_refptr<webrtc::I420Buffer>::get
  2902. 0.00% rtp_send_contro [unknown] [k] 0xffffd213435c02d0
  2903. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMNackFecMethod::UpdateParameters
  2904. 0.00% EgoSystem EgoSystem [.] webrtc::VideoFrame::VideoFrame
  2905. 0.00% threaded-ml libpthread-2.31.so [.] __aarch64_ldset4_relax
  2906. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __condvar_dec_grefs
  2907. 0.00% MQTTAsync_rcv libpthread-2.31.so [.] __pthread_mutex_lock
  2908. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMLossProtectionLogic::UpdateBitRate
  2909. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003c6c4
  2910. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameEncodeMetadataWriter::OnSetRates
  2911. 0.00% pc_network_thre EgoSystem [.] rtc::EventDispatcher::IsDescriptorClosed
  2912. 0.00% webrtc_audio_mo EgoSystem [.] write@plt
  2913. 0.00% pc_network_thre EgoSystem [.] rtc::TruncateIP
  2914. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004083c
  2915. 0.00% EncoderQueue EgoSystem [.] std::map<signed char, int, std::less<signed char>, std::allocator<std::pair<signed char const, int> > >::operator[]
  2916. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::MonoAgc::UpdateGain
  2917. 0.00% MQTTAsync_rcv EgoSystem [.] StackTrace_exit
  2918. 0.00% Thread 0x0x326b EgoSystem [.] std::__detail::_List_node_base::_M_unhook@plt
  2919. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040308
  2920. 0.00% EgoSystem EgoSystem [.] free@plt
  2921. 0.00% EgoSystem libstdc++.so.6.0.28 [.] __gnu_cxx::stdio_sync_filebuf<char, std::char_traits<char> >::overflow
  2922. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040534
  2923. 0.00% EncoderQueue EgoSystem [.] webrtc::DefaultTemporalLayers::OnPacketLossRateUpdate
  2924. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScaler::CheckQpTask::StartDelayedTask()::{lambda()#1}::operator()
  2925. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::OnTransportFeedback(webrtc::rtcp::TransportFeedback const&)::$_13>::~ClosureTask
  2926. 0.00% pc_network_thre EgoSystem [.] OPENSSL_malloc
  2927. 0.00% EncoderQueue EgoSystem [.] _setjmp@plt
  2928. 0.00% EncoderQueue EgoSystem [.] webrtc::I420Buffer::StrideU
  2929. 0.00% rtp_send_contro EgoSystem [.] webrtc::AimdRateControl::SetInApplicationLimitedRegion
  2930. 0.00% EncoderQueue EgoSystem [.] std::__stable_sort_adaptive<__gnu_cxx::__normal_iterator<unsigned long*, std::vector<unsigned long, std::allocator<unsigned long> > >, unsigned long*, long, __gnu_cxx::__ops::_Iter_comp_iter<webrtc::SimulcastRateAllocator::DistributeAllocationToSimulcastLayers(webrtc::DataRate, webrtc::DataRate, webrtc::VideoBitrateAllocation*)::$_1> >
  2931. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::RenderDelayControllerImpl::LogRenderCall
  2932. 0.00% Thread 0x0x326b EgoSystem [.] cricket::GetRtpHeader
  2933. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_swp4_acq
  2934. 0.00% EncoderQueue EgoSystem [.] cricket::WebRtcVideoChannel::SendRtcp
  2935. 0.00% AudioEncoder EgoSystem [.] webrtc::DtmfQueue::PendingDtmf
  2936. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoEncoder::ScalingSettings::ScalingSettings
  2937. 0.00% rtp_send_contro EgoSystem [.] non-virtual thunk to webrtc::internal::Call::OnTargetTransferRate(webrtc::TargetTransferRate)
  2938. 0.00% rtp_send_contro EgoSystem [.] webrtc::CongestionControlHandler::SetPacerQueue
  2939. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::internal::Call::OnTargetTransferRate(webrtc::TargetTransferRate)::$_1>::Run
  2940. 0.00% AudioEncoder libc-2.31.so [.] epoll_wait
  2941. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003eb9c
  2942. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a1cc
  2943. 0.00% SharedModThread EgoSystem [.] std::_Rb_tree_rebalance_for_erase@plt
  2944. 0.00% pc_network_thre EgoSystem [.] std::__introsort_loop<__gnu_cxx::__normal_iterator<rtc::Network**, std::vector<rtc::Network*, std::allocator<rtc::Network*> > >, long, __gnu_cxx::__ops::_Iter_comp_iter<bool (*)(rtc::Network const*, rtc::Network const*)> >
  2945. 0.00% rtp_send_contro EgoSystem [.] webrtc::PacketResult::PacketResult
  2946. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000de0c
  2947. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::MutableDataU
  2948. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to webrtc::QualityScalerResource::OnReportQpUsageLow()
  2949. 0.00% EncoderQueue EgoSystem [.] webrtc::I420Buffer::height
  2950. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskImpl<webrtc::RtpSenderEgress::RtpSenderEgress(webrtc::RtpRtcpInterface::Configuration const&, webrtc::RtpPacketHistory*)::$_1>::RunClosure
  2951. 0.00% SharedModThread libpthread-2.31.so [.] __condvar_dec_grefs
  2952. 0.00% EgoSystem ld-2.31.so [.] _dl_lookup_symbol_x
  2953. 0.00% EncoderQueue EgoSystem [.] rtc::FunctionView<void (rtc::ArrayView<unsigned char const, -4711l>)>::CallVoidPtr<webrtc::(anonymous namespace)::PacketContainer::SendPackets(unsigned long)::{lambda(rtc::ArrayView<unsigned char const, -4711l>)#1}>
  2954. 0.00% Thread 0x0x326b EgoSystem [.] cricket::RtpDataChannel::OnMessage
  2955. 0.00% pc_network_thre EgoSystem [.] operator delete[]@plt
  2956. 0.00% rtp_send_contro EgoSystem [.] rtc::Event::Set
  2957. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::CompoundPacket::CompoundPacket
  2958. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::ValidateMessageIntegrityOfType
  2959. 0.00% EgoSystem libpthread-2.31.so [.] __pthread_mutex_unlock_usercnt
  2960. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::RtcEventLogNull::Log
  2961. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<webrtc::RTCPPacketType, webrtc::RTCPPacketType, std::_Identity<webrtc::RTCPPacketType>, std::less<webrtc::RTCPPacketType>, std::allocator<webrtc::RTCPPacketType> >::_M_get_insert_hint_unique_pos
  2962. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041480
  2963. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<webrtc::rtcp::ReportBlock, std::allocator<webrtc::rtcp::ReportBlock> >::_M_default_append
  2964. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketizerVp8::~RtpPacketizerVp8
  2965. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_mainloop_run
  2966. 0.00% Thread 0x0x326b EgoSystem [.] std::__adjust_heap<__gnu_cxx::__normal_iterator<rtc::Thread::DelayedMessage*, std::vector<rtc::Thread::DelayedMessage, std::allocator<rtc::Thread::DelayedMessage> > >, long, rtc::Thread::DelayedMessage, __gnu_cxx::__ops::_Iter_comp_iter<std::less<rtc::Thread::DelayedMessage> > >
  2967. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree_increment@plt
  2968. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AdaptiveFirFilter::AdaptAndUpdateSize
  2969. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*> > >::_M_emplace_hint_unique<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >
  2970. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpGenericFrameDescriptor::SetSpatialLayersBitmask
  2971. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_construct
  2972. 0.00% MQTTAsync_send EgoSystem [.] Log_pretrace
  2973. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000dec0
  2974. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000336c8
  2975. 0.00% EncoderQueue EgoSystem [.] webrtc::videocontenttypehelpers::SetSimulcastId
  2976. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::compare
  2977. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::remote_candidate
  2978. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037758
  2979. 0.00% pc_network_thre EgoSystem [.] vpaes_encrypt
  2980. 0.00% EncoderQueue EgoSystem [.] webrtc::StableTargetRateExperiment::GetVideoHysteresisFactor
  2981. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e984
  2982. 0.00% rtp_send_contro EgoSystem [.] std::_Rb_tree<rtc::NetworkRoute, std::pair<rtc::NetworkRoute const, webrtc::DataSize>, std::_Select1st<std::pair<rtc::NetworkRoute const, webrtc::DataSize> >, webrtc::InFlightBytesTracker::NetworkRouteComparator, std::allocator<std::pair<rtc::NetworkRoute const, webrtc::DataSize> > >::_M_insert_<std::pair<rtc::NetworkRoute const, webrtc::DataSize>, std::_Rb_tree<rtc::NetworkRoute, std::pair<rtc::NetworkRoute const, webrtc::DataSize>, std::_Select1st<std::pair<rtc::NetworkRoute const, webrtc::DataSize> >, webrtc::InFlightBytesTracker::NetworkRouteComparator, std::allocator<std::pair<rtc::NetworkRoute const, webrtc::DataSize> > >::_Alloc_node>
  2983. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::OnSentPacket
  2984. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_append
  2985. 0.00% rtp_send_contro libc-2.31.so [.] malloc_consolidate
  2986. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000413ac
  2987. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketizerVp8::RtpPacketizerVp8
  2988. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000004d4b8
  2989. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000db80
  2990. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMProtectionMethod::RequiredProtectionFactorK
  2991. 0.00% EgoSystem EgoSystem [.] std::__uniq_ptr_impl<DataChannelObserver, std::default_delete<DataChannelObserver> >::_M_ptr
  2992. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e990
  2993. 0.00% MQTTAsync_send libpthread-2.31.so [.] __pthread_mutex_lock
  2994. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::RtcpPacketTypesCounterUpdated(unsigned int, webrtc::RtcpPacketTypeCounter const&)
  2995. 0.00% webrtc_audio_mo EgoSystem [.] pthread_cond_broadcast@plt
  2996. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create
  2997. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpGenericFrameDescriptor::SetFrameId
  2998. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskBase::Run
  2999. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __pthread_mutex_unlock
  3000. 0.00% pc_network_thre libc-2.31.so [.] inet_ntop
  3001. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e9c4
  3002. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpTransportControllerSend::OnReceivedRtcpReceiverReportBlocks
  3003. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003c824
  3004. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::DefaultOutputRateCalculator::CalculateOutputRate
  3005. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000e264
  3006. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_mempool_block_size_max
  3007. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b980
  3008. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::FeedbackState::FeedbackState
  3009. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_mutex_unlock
  3010. 0.00% EncoderQueue EgoSystem [.] std::vector<unsigned int, std::allocator<unsigned int> >::_M_default_append
  3011. 0.00% threaded-ml EgoSystem [.] rtc::Event::Set
  3012. 0.00% EgoSystem EgoSystem [.] std::chrono::operator< <long, std::ratio<1l, 1000l>, long, std::ratio<1l, 1000l> >
  3013. 0.00% MQTTAsync_send libc-2.31.so [.] strncmp
  3014. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002af1c
  3015. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b968
  3016. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_packet_data
  3017. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000412e4
  3018. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037a68
  3019. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003c6a8
  3020. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScalerResource::OnEncodeCompleted
  3021. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000379f0
  3022. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_tagstruct_eof
  3023. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::RTT
  3024. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpTransportControllerSend::GetWorkerQueue
  3025. 0.00% EgoSystem libc-2.31.so [.] __aarch64_swp4_acq
  3026. 0.00% EncoderQueue EgoSystem [.] webrtc::BalancedConstraint::OnEncoderTargetBitrateUpdated
  3027. 0.00% MQTTAsync_send EgoSystem [.] MQTTAsync_checkTimeouts
  3028. 0.00% rtp_send_contro EgoSystem [.] rtc::RateTracker::ComputeRateForInterval
  3029. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoder::SetEncoderRates
  3030. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_once
  3031. 0.00% Thread 0x0x326b EgoSystem [.] absl::strings_internal::memcasecmp
  3032. 0.00% rtp_send_contro EgoSystem [.] webrtc::VideoStreamEncoder::OnBitrateUpdated
  3033. 0.00% rtp_send_contro EgoSystem [.] webrtc::RTPSender::SendingMedia
  3034. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b730
  3035. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::socketserver
  3036. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b760
  3037. 0.00% pc_network_thre libc-2.31.so [.] __netlink_assert_response
  3038. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040448
  3039. 0.00% pc_network_thre EgoSystem [.] rtc::Network::~Network
  3040. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameDropper::UpdateRatio
  3041. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree_increment@plt
  3042. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::PostDelayed
  3043. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::EchoPathVariability::EchoPathVariability
  3044. 0.00% Thread 0x0x326b EgoSystem [.] rtc::TimeDiff
  3045. 0.00% EncoderQueue EgoSystem [.] webrtc::FrameDropper::SetRates
  3046. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000033860
  3047. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelReceive::UpdatePlayoutTimestamp
  3048. 0.00% rtp_send_contro EgoSystem [.] webrtc::RateAccCounter::GetMetric
  3049. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_frame_align
  3050. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ErleEstimator::Dump
  3051. 0.00% EncoderQueue EgoSystem [.] webrtc::LibvpxVp8Encoder::OnPacketLossRateUpdate
  3052. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::OnReceivedRtcpReceiverReport(std::__cxx11::list<webrtc::RTCPReportBlock, std::allocator<webrtc::RTCPReportBlock> > const&, long, long)::$_10>::~ClosureTask
  3053. 0.00% pc_network_thre EgoSystem [.] std::vector<std::unique_ptr<cricket::StunAttribute, std::default_delete<cricket::StunAttribute> >, std::allocator<std::unique_ptr<cricket::StunAttribute, std::default_delete<cricket::StunAttribute> > > >::_M_realloc_insert<std::unique_ptr<cricket::StunAttribute, std::default_delete<cricket::StunAttribute> > >
  3054. 0.00% AudioEncoder EgoSystem [.] webrtc::BitrateProber::OnIncomingPacket
  3055. 0.00% SharedModThread libc-2.31.so [.] __aarch64_swp4_rel
  3056. 0.00% SharedModThread EgoSystem [.] memcpy@plt
  3057. 0.00% SharedModThread EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::GetFeedbackState
  3058. 0.00% pc_network_thre EgoSystem [.] webrtc::RtpDemuxer::OnRtpPacket
  3059. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::StunMessage
  3060. 0.00% EgoSystem EgoSystem [.] std::atomic<bool>::load
  3061. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003cbc8
  3062. 0.00% pc_network_thre EgoSystem [.] EVP_MD_CTX_new
  3063. 0.00% MQTTAsync_rcv libc-2.31.so [.] strcpy
  3064. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::Write
  3065. 0.00% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::GetState
  3066. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a2e0
  3067. 0.00% rtp_send_contro EgoSystem [.] rtc::TaskQueue::IsCurrent
  3068. 0.00% pc_network_thre EgoSystem [.] rtc::ByteBufferReader::ByteBufferReader
  3069. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_packet_unref
  3070. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendStatisticsProxy::OnSetEncoderTargetRate
  3071. 0.00% pc_network_thre EgoSystem [.] cricket::StunRequestManager::SendDelayed
  3072. 0.00% SharedModThread libstdc++.so.6.0.28 [.] operator new[]
  3073. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScaler::CheckQpTask::StartDelayedTask
  3074. 0.00% pc_network_thre libc-2.31.so [.] __vsprintf_internal
  3075. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_pstream_send_memblock@plt
  3076. 0.00% EncoderQueue EgoSystem [.] webrtc::ResourceAdaptationProcessor::OnResourceUsageStateMeasured
  3077. 0.00% webrtc_audio_mo libm-2.31.so [.] __cos
  3078. 0.00% PacerThread EgoSystem [.] std::_Rb_tree_decrement@plt
  3079. 0.00% rtp_send_contro libm-2.31.so [.] powf@GLIBC_2.17
  3080. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::SetPayloadType
  3081. 0.00% rtp_send_contro EgoSystem [.] event_base_set
  3082. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AgcManagerDirect::AnalyzePreProcess
  3083. 0.00% AudioEncoder EgoSystem [.] std::vector<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> >, std::allocator<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> > > >::_M_realloc_insert<std::unique_ptr<webrtc::RtpPacketToSend, std::default_delete<webrtc::RtpPacketToSend> > >
  3084. 0.00% pc_network_thre EgoSystem [.] cricket::BasicIceController::FindOldestConnectionNeedingTriggeredCheck
  3085. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*> > >::find
  3086. 0.00% PacerThread EgoSystem [.] operator delete[]@plt
  3087. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] free@plt
  3088. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040840
  3089. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::Sdes::Sdes
  3090. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000033768
  3091. 0.00% SharedModThread libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_hook
  3092. 0.00% rtp_send_contro EgoSystem [.] webrtc::TransportPacketsFeedback::~TransportPacketsFeedback
  3093. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004040c
  3094. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] llrint@plt
  3095. 0.00% pc_network_thre EgoSystem [.] rtc::MatchTypeNameWithIndexPattern
  3096. 0.00% pc_network_thre libc-2.31.so [.] __libc_alloca_cutoff
  3097. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] memset@plt
  3098. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] clock_gettime@plt
  3099. 0.00% pc_network_thre EgoSystem [.] rtc::NetworkManagerBase::MergeNetworkList
  3100. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000ddc4
  3101. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040838
  3102. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a198
  3103. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000dbb4
  3104. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] strlen@plt
  3105. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] pthread_cond_destroy@plt
  3106. 0.00% EncoderQueue EgoSystem [.] event_add
  3107. 0.00% pc_network_thre EgoSystem [.] rtc::PacketInfo::~PacketInfo
  3108. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::_Rb_tree_insert_and_rebalance
  3109. 0.00% PacerThread EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  3110. 0.00% rtp_send_contro EgoSystem [.] webrtc::internal::CallStats::RtcpRttStatsImpl::OnRttUpdate
  3111. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::MessageLite::ParseFrom<(google::protobuf::MessageLite::ParseFlags)1, google::protobuf::stringpiece_internal::StringPiece>
  3112. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::SendRTCP
  3113. 0.00% AudioEncoder EgoSystem [.] silk_bwexpander
  3114. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::SendResponseMessage
  3115. 0.00% EgoSystem ld-2.31.so [.] do_lookup_x
  3116. 0.00% Thread 0x0x326b ld-2.31.so [.] do_lookup_x
  3117. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::RtpSenderEgress::SendPacket(webrtc::RtpPacketToSend*, webrtc::PacedPacketInfo const&)::$_3>::Run
  3118. 0.00% webrtc_audio_mo EgoSystem [.] rtc::LogMessage::IsNoop<(rtc::LoggingSeverity)0>
  3119. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_ldadd4_acq
  3120. 0.00% pc_network_thre EgoSystem [.] _vpaes_schedule_core
  3121. 0.00% pc_network_thre EgoSystem [.] webrtc::field_trial::IsEnabled
  3122. 0.00% EncoderQueue EgoSystem [.] webrtc::DefaultTemporalLayers::OnRatesUpdated
  3123. 0.00% EgoSystem ld-2.31.so [.] _dl_relocate_object
  3124. 0.00% Thread 0x0x326b libc-2.31.so [.] malloc_consolidate
  3125. 0.00% EncoderQueue EgoSystem [.] vpx_h_predictor_16x16_neon
  3126. 0.00% EgoSystem EgoSystem [.] webrtc::(anonymous namespace)::DataChannelProxyWithInternal<webrtc::DataChannelInterface>::buffered_amount
  3127. 0.00% Thread 0x0x326b EgoSystem [.] std::lock_guard<std::mutex>::lock_guard
  3128. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_smoother_put
  3129. 0.00% EncoderQueue EgoSystem [.] vp8_build_component_cost_table
  3130. 0.00% pc_network_thre EgoSystem [.] RAND_bytes_with_additional_data
  3131. 0.00% pc_network_thre EgoSystem [.] cricket::StunByteStringAttribute::Write
  3132. 0.00% SharedModThread EgoSystem [.] rtc::Thread::IsQuitting
  3133. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::EncodeUsageResource>::Release
  3134. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTCPReceiver::HandleReceiverReport
  3135. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMFecMethod::BitsPerFrame
  3136. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __aarch64_ldadd8_acq
  3137. 0.00% EgoSystem EgoSystem [.] Callback<unsigned char const*, int, unsigned char const*, int, unsigned char const*, int, int const, int const, int const>::operator bool
  3138. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000413cc
  3139. 0.00% webrtc_audio_mo libpthread-2.31.so [.] __condvar_confirm_wakeup
  3140. 0.00% pc_network_thre EgoSystem [.] rtc::MakeNetworkKey
  3141. 0.00% EgoSystem EgoSystem [.] webrtc::I420Buffer::MutableDataV
  3142. 0.00% EgoSystem EgoSystem [.] std::unique_ptr<CPeerConnection, std::default_delete<CPeerConnection> >::operator bool
  3143. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041330
  3144. 0.00% rtp_send_contro EgoSystem [.] webrtc::LinkCapacityEstimator::has_estimate
  3145. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_stream_ref
  3146. 0.00% rtp_send_contro EgoSystem [.] webrtc::voe::(anonymous namespace)::ChannelSend::ModifyEncoder
  3147. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b798
  3148. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_memchunk_reset
  3149. 0.00% threaded-ml libc-2.31.so [.] _int_malloc
  3150. 0.00% EgoSystem EgoSystem [.] std::chrono::duration_cast<std::chrono::duration<long, std::ratio<1l, 1l> >, long, std::ratio<1l, 1000l> >
  3151. 0.00% EgoSystem EgoSystem [.] absl::inlined_vector_internal::Storage<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> >, 4ul, std::allocator<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > > >::EmplaceBack<std::unique_ptr<webrtc::QueuedTask, std::default_delete<webrtc::QueuedTask> > >
  3152. 0.00% rtp_send_contro EgoSystem [.] webrtc::rtcp::TransportFeedback::GetBaseTime
  3153. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b670
  3154. 0.00% pc_network_thre EgoSystem [.] _vpaes_key_preheat
  3155. 0.00% pc_network_thre libc-2.31.so [.] _IO_str_init_static_internal
  3156. 0.00% pc_network_thre EgoSystem [.] pthread_once@plt
  3157. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004032c
  3158. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000416c0
  3159. 0.00% pc_network_thre EgoSystem [.] rtc::ByteBufferReader::ReadUInt32
  3160. 0.00% pc_network_thre libpthread-2.31.so [.] __aarch64_cas4_rel
  3161. 0.00% rtp_send_contro EgoSystem [.] std::_Rb_tree_increment@plt
  3162. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e9b8
  3163. 0.00% pc_network_thre EgoSystem [.] rtc::CountIPMaskBits
  3164. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000406ac
  3165. 0.00% webrtc_audio_mo EgoSystem [.] rtc::internal::RaceCheckerScope::RaceDetected
  3166. 0.00% pc_network_thre EgoSystem [.] cricket::StunAttribute::Create
  3167. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b770
  3168. 0.00% pc_network_thre libc-2.31.so [.] mempcpy
  3169. 0.00% EgoSystem EgoSystem [.] std::mutex::unlock
  3170. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b640
  3171. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002af30
  3172. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtcEventRtcpPacketIncoming::RtcEventRtcpPacketIncoming
  3173. 0.00% EgoSystem libstdc++.so.6.0.28 [.] putc@plt
  3174. 0.00% MQTTAsync_rcv EgoSystem [.] MQTTAsync_cycle
  3175. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002c2e4
  3176. 0.00% pc_network_thre libc-2.31.so [.] __GI___getifaddrs
  3177. 0.00% Thread 0x0x326b ld-2.31.so [.] strcmp
  3178. 0.00% pc_network_thre EgoSystem [.] rtc::IfAddrsConverter::ConvertIfAddrsToIPAddress
  3179. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] pthread_cond_broadcast@plt
  3180. 0.00% PacerThread EgoSystem [.] pthread_cond_broadcast@plt
  3181. 0.00% AudioEncoder EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::HasOneRef
  3182. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037780
  3183. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendStatisticsProxy::GetSendFrameRate
  3184. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000003fb98
  3185. 0.00% pc_network_thre libm-2.31.so [.] exp@GLIBC_2.17
  3186. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003378c
  3187. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002af08
  3188. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004037c
  3189. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::metrics::HistogramFactoryGetCounts
  3190. 0.00% Thread 0x0x326b [vdso] [.] __kernel_gettimeofday
  3191. 0.00% MQTTAsync_rcv libc-2.31.so [.] usleep
  3192. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000bedc
  3193. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000416b0
  3194. 0.00% pc_network_thre EgoSystem [.] rtc::CreateRandomString[abi:cxx11]
  3195. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000de9c
  3196. 0.00% rtp_send_contro EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::PostTask
  3197. 0.00% EgoSystem EgoSystem [.] operator delete@plt
  3198. 0.00% Thread 0x0x326b EgoSystem [.] std::forward<void const*>
  3199. 0.00% EgoSystem EgoSystem [.] webrtc::VideoFrame::video_frame_buffer
  3200. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::ostream::sentry::sentry@plt
  3201. 0.00% EgoSystem EgoSystem [.] google::protobuf::internal::ToCachedSize
  3202. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003f14c
  3203. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_memblock_acquire@plt
  3204. 0.00% pc_network_thre EgoSystem [.] cricket::StunRequestManager::CheckResponse
  3205. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<unsigned int, std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > >, std::_Select1st<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > >, std::less<unsigned int>, std::allocator<std::pair<unsigned int const, std::vector<unsigned short, std::allocator<unsigned short> > > > >::_M_emplace_hint_unique<std::piecewise_construct_t const&, std::tuple<unsigned int const&>, std::tuple<> >
  3206. 0.00% webrtc_audio_mo EgoSystem [.] operator delete@plt
  3207. 0.00% SharedModThread libpthread-2.31.so [.] __condvar_release_lock
  3208. 0.00% rtp_send_contro EgoSystem [.] webrtc::ProcessInterval::ProcessInterval
  3209. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::AllocatePayload
  3210. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d1a0
  3211. 0.00% EncoderQueue EgoSystem [.] webrtc::rtcp::Sdes::Create
  3212. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003f17c
  3213. 0.00% pc_network_thre EgoSystem [.] std::vector<rtc::InterfaceAddress, std::allocator<rtc::InterfaceAddress> >::operator=
  3214. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] operator new@plt
  3215. 0.00% EgoSystem EgoSystem [.] webrtc::VideoFrame::render_time_ms
  3216. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::HandleStunBindingOrGoogPingRequest
  3217. 0.00% rtp_send_contro EgoSystem [.] webrtc::ProcessInterval::~ProcessInterval
  3218. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::stream_delay_ms
  3219. 0.00% SharedModThread libpthread-2.31.so [.] __pthread_getspecific
  3220. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d1d0
  3221. 0.00% EgoSystem EgoSystem [.] std::ostream::operator<<@plt
  3222. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000022bc0
  3223. 0.00% EncoderQueue EgoSystem [.] rtc::LogMessage::IsNoop<(rtc::LoggingSeverity)1>
  3224. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoBitrateAllocation::GetBitrate
  3225. 0.00% pc_network_thre libc-2.31.so [.] __getpagesize
  3226. 0.00% EncoderQueue EgoSystem [.] webrtc::rtcp::SenderReport::Create
  3227. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::(anonymous namespace)::as_string_view
  3228. 0.00% threaded-ml libpthread-2.31.so [.] __pthread_disable_asynccancel
  3229. 0.00% MQTTAsync_rcv [unknown] [k] 0xffffd213435dcfa4
  3230. 0.00% PacerThread EgoSystem [.] webrtc::ForwardErrorCorrection::Packet::~Packet
  3231. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000405f0
  3232. 0.00% SharedModThread libpthread-2.31.so [.] __aarch64_ldadd4_acq
  3233. 0.00% pc_network_thre EgoSystem [.] rtc::CreateIfAddrsConverter
  3234. 0.00% EgoSystem EgoSystem [.] webrtc::AlignedMalloc
  3235. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create
  3236. 0.00% pc_network_thre EgoSystem [.] rtc::InterfaceAddress::operator=
  3237. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResource::OnResourceUsageStateMeasured
  3238. 0.00% EncoderQueue EgoSystem [.] vp8_encode_intra4x4mby
  3239. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e870
  3240. 0.00% MQTTAsync_rcv libpthread-2.31.so [.] __aarch64_cas4_acq
  3241. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  3242. 0.00% Thread 0x0x326b EgoSystem [.] std::forward<char const*>
  3243. 0.00% rtp_send_contro EgoSystem [.] rtc::NullSocketServer::WakeUp
  3244. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x00000000000226e0
  3245. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScalerSettings::InitialBitrateIntervalMs
  3246. 0.00% EgoSystem EgoSystem [.] MessageHead::Serialize
  3247. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000ca54
  3248. 0.00% pc_network_thre EgoSystem [.] cricket::Port::ParseStunUsername
  3249. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::MeanVarianceEstimator::std_deviation
  3250. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e974
  3251. 0.00% rtp_send_contro EgoSystem [.] std::_Rb_tree<webrtc::BitrateAllocatorObserver*, std::pair<webrtc::BitrateAllocatorObserver* const, int>, std::_Select1st<std::pair<webrtc::BitrateAllocatorObserver* const, int> >, std::less<webrtc::BitrateAllocatorObserver*>, std::allocator<std::pair<webrtc::BitrateAllocatorObserver* const, int> > >::_M_get_insert_hint_unique_pos
  3252. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002af54
  3253. 0.00% EncoderQueue EgoSystem [.] rtc::PacketInfo::PacketInfo
  3254. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::ReverbDecayEstimator::Dump
  3255. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e130
  3256. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000404a0
  3257. 0.00% threaded-ml libc-2.31.so [.] __libc_calloc
  3258. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000404c0
  3259. 0.00% EgoSystem libc-2.31.so [.] __lll_lock_wait_private
  3260. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::stable
  3261. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> > >::_M_erase
  3262. 0.00% MQTTAsync_send libc-2.31.so [.] getenv
  3263. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x00000000000316bc
  3264. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003edc0
  3265. 0.00% pc_network_thre EgoSystem [.] inet_pton@plt
  3266. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::MessageLite::MessageLite
  3267. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::condition_variable::notify_all
  3268. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x00000000000336f0
  3269. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::(anonymous namespace)::AudioCodingModuleImpl::ModifyEncoder
  3270. 0.00% pc_network_thre EgoSystem [.] rtc::LogMessage::IsNoop
  3271. 0.00% SharedModThread libstdc++.so.6.0.28 [.] operator new
  3272. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000022bf4
  3273. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocketServer::CreateAsyncSocket
  3274. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x00000000000ed9cc
  3275. 0.00% pc_network_thre EgoSystem [.] webrtc::RtpPacket::ParseBuffer
  3276. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x00000000000ed9c0
  3277. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b9c4
  3278. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::SetPayloadSize
  3279. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d1ec
  3280. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree_rebalance_for_erase@plt
  3281. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ce00
  3282. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000336ec
  3283. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041344
  3284. 0.00% AudioEncoder libpthread-2.31.so [.] __pthread_enable_asynccancel
  3285. 0.00% EgoSystem EgoSystem [.] std::chrono::operator< <std::chrono::_V2::system_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> >, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >
  3286. 0.00% pc_network_thre libc-2.31.so [.] __strchrnul
  3287. 0.00% AudioEncoder EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::voe::(anonymous namespace)::ChannelSend::ProcessAndEncodeAudio(std::unique_ptr<webrtc::AudioFrame, std::default_delete<webrtc::AudioFrame> >)::$_6>::~ClosureTask
  3288. 0.00% SharedModThread EgoSystem [.] std::_Rb_tree<webrtc::RTCPPacketType, webrtc::RTCPPacketType, std::_Identity<webrtc::RTCPPacketType>, std::less<webrtc::RTCPPacketType>, std::allocator<webrtc::RTCPPacketType> >::_M_erase
  3289. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041334
  3290. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] operator delete[]
  3291. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacketizerVp8::NumPackets
  3292. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_tagstruct_new
  3293. 0.00% EgoSystem libpthread-2.31.so [.] __aarch64_swp4_acq
  3294. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000004d3bc
  3295. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d09c
  3296. 0.00% webrtc_audio_mo EgoSystem [.] pthread_cond_timedwait@plt
  3297. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000038458
  3298. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpPacket::SetTimestamp
  3299. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RemoteBitrateEstimatorSingleStream::OnRttUpdate
  3300. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::RtcpPacket::HeaderLength
  3301. 0.00% pc_network_thre EgoSystem [.] CRYPTO_STATIC_MUTEX_lock_read
  3302. 0.00% EncoderQueue EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  3303. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mempool_is_shared
  3304. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to cricket::WebRtcVideoChannel::SendRtcp(unsigned char const*, unsigned long)
  3305. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblock_new
  3306. 0.00% EncoderQueue EgoSystem [.] webrtc::ResourceAdaptationProcessor::OnResourceUnderuse
  3307. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002b7e4
  3308. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::StunDscpValue
  3309. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScalerResource::is_started
  3310. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::~RefCountedObject
  3311. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::OnReceivedRtcpReceiverReport(std::__cxx11::list<webrtc::RTCPReportBlock, std::allocator<webrtc::RTCPReportBlock> > const&, long, long)::$_10>::Run
  3312. 0.00% pc_network_thre EgoSystem [.] std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, rtc::Network*, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> > >::operator[]
  3313. 0.00% pc_network_thre EgoSystem [.] rtc::OpenSSLDigest::GetDigestEVP
  3314. 0.00% EgoSystem libstdc++.so.6.0.28 [.] fwrite@plt
  3315. 0.00% rtp_send_contro EgoSystem [.] webrtc::AcknowledgedBitrateEstimator::bitrate
  3316. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004030c
  3317. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ce78
  3318. 0.00% pc_network_thre EgoSystem [.] rtc::AsyncSocket::AsyncSocket
  3319. 0.00% PacerThread [unknown] [k] 0xffffd213435c02d0
  3320. 0.00% Thread 0x0x326b EgoSystem [.] cricket::RtpDataChannel::OnDataReceived
  3321. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f344
  3322. 0.00% Thread 0x0x326b EgoSystem [.] RemoNet::CCPing::_internal_tick
  3323. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ceb8
  3324. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_ldeor8_rel
  3325. 0.00% EgoSystem EgoSystem [.] malloc@plt
  3326. 0.00% Thread 0x0x326b libc-2.31.so [.] __GI___memset_generic
  3327. 0.00% AudioEncoder EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::OnSendingRtpFrame
  3328. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040454
  3329. 0.00% pc_network_thre EgoSystem [.] rtc::SocketDispatcher::Close
  3330. 0.00% pc_network_thre EgoSystem [.] cricket::Port::OnMessage
  3331. 0.00% SharedModThread EgoSystem [.] webrtc::RealTimeClock::TimeInMicroseconds
  3332. 0.00% EgoSystem libpthread-2.31.so [.] __libc_send
  3333. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b5e4
  3334. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002afe8
  3335. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPSender::SendCompoundRTCP
  3336. 0.00% EncoderQueue EgoSystem [.] operator new@plt
  3337. 0.00% EncoderQueue EgoSystem [.] rtc::Thread::IsQuitting
  3338. 0.00% SharedModThread EgoSystem [.] webrtc::rtcp::CompoundPacket::Append
  3339. 0.00% pc_network_thre EgoSystem [.] rand@plt
  3340. 0.00% pc_network_thre EgoSystem [.] cricket::IceConfig::ice_check_interval_strong_connectivity_or_default
  3341. 0.00% AudioEncoder EgoSystem [.] webrtc::RTPSender::TimestampOffset
  3342. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000033690
  3343. 0.00% Thread 0x0x326b EgoSystem [.] pthread_cond_broadcast@plt
  3344. 0.00% pc_network_thre libc-2.31.so [.] __inet_pton_length
  3345. 0.00% EncoderQueue libc-2.31.so [.] __sigjmp_save
  3346. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e908
  3347. 0.00% EgoSystem libpthread-2.31.so [.] _pthread_cleanup_pop
  3348. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000dbc0
  3349. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000416cc
  3350. 0.00% pc_network_thre EgoSystem [.] cricket::BasicIceController::MarkConnectionPinged
  3351. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::I420Buffer>::~RefCountedObject
  3352. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpSenderEgress::GetSendRates
  3353. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000002cee8
  3354. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000033718
  3355. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPSender::SetFlag
  3356. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ce1c
  3357. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpTransportControllerSend::OnReceivedRtcpReceiverReport
  3358. 0.00% MQTTAsync_rcv EgoSystem [.] Thread_lock_mutex
  3359. 0.00% pc_network_thre EgoSystem [.] sigslot::has_slots<sigslot::single_threaded>::do_disconnect_all
  3360. 0.00% EncoderQueue EgoSystem [.] webrtc::Vp8TemporalLayers::OnRttUpdate
  3361. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000022c04
  3362. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000403e4
  3363. 0.00% pc_network_thre EgoSystem [.] cricket::StunAttribute::SetOwner
  3364. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create@plt
  3365. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040340
  3366. 0.00% SharedModThread libpthread-2.31.so [.] __libc_write
  3367. 0.00% EncoderQueue EgoSystem [.] rtc::internal::WeakReference::~WeakReference
  3368. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::PeerConnection::InitializeRtcpCallback()::$_19::operator()(rtc::CopyOnWriteBuffer const&, long) const::{lambda()#1}>::~SafetyClosureTask
  3369. 0.00% pc_network_thre EgoSystem [.] operator new[]@plt
  3370. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_stream_write
  3371. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000024590
  3372. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ModuleRtpRtcpImpl2::IncomingRtcpPacket
  3373. 0.00% EgoSystem EgoSystem [.] std::__uniq_ptr_impl<CPeerConnection, std::default_delete<CPeerConnection> >::_M_ptr
  3374. 0.00% MQTTAsync_rcv EgoSystem [.] Log_stackTrace
  3375. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoSourceRestrictions::VideoSourceRestrictions
  3376. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpPacketHistory::CullOldPackets
  3377. 0.00% EgoSystem EgoSystem [.] std::lock_guard<std::mutex>::~lock_guard
  3378. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::LibvpxVp8Facade::codec_enc_config_set
  3379. 0.00% EncoderQueue EgoSystem [.] webrtc::OveruseFrameDetector::CheckForOveruse
  3380. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpSenderEgress::GetSendRates
  3381. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e928
  3382. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037840
  3383. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000404b8
  3384. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::Clear
  3385. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::OnStunBindingRequestSucceeded
  3386. 0.00% MQTTAsync_rcv libc-2.31.so [.] __libc_disable_asynccancel
  3387. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::internal::InternalMetadata::Delete<google::protobuf::UnknownFieldSet>
  3388. 0.00% EncoderQueue EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::QualityScaler::CheckQpTask::StartDelayedTask()::{lambda()#1}>::Run
  3389. 0.00% Thread 0x0x326b [unknown] [k] 0xffffd213435c02d0
  3390. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041364
  3391. 0.00% EncoderQueue EgoSystem [.] non-virtual thunk to cricket::BaseChannel::SendRtcp(rtc::CopyOnWriteBuffer*, rtc::PacketOptions const&)
  3392. 0.00% AudioEncoder EgoSystem [.] webrtc::AbsoluteCaptureTimeSender::OnSendPacket
  3393. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000407bc
  3394. 0.00% pc_network_thre EgoSystem [.] rtc::OpenSSLDigest::Size
  3395. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d768
  3396. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioProcessingImpl::set_stream_key_pressed
  3397. 0.00% pc_network_thre EgoSystem [.] std::map<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, rtc::(anonymous namespace)::AddressList, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::(anonymous namespace)::AddressList> > >::operator[]
  3398. 0.00% EncoderQueue EgoSystem [.] webrtc::RtcEvent::RtcEvent
  3399. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003e784
  3400. 0.00% pc_network_thre EgoSystem [.] rtc::IPFromString
  3401. 0.00% EncoderQueue EgoSystem [.] webrtc::StreamDataCounters::StreamDataCounters
  3402. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamAdapter::IncreaseResolution
  3403. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b684
  3404. 0.00% EncoderQueue EgoSystem [.] webrtc::I420Buffer::DataY
  3405. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000414b8
  3406. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002afbc
  3407. 0.00% rtp_send_contro EgoSystem [.] webrtc::internal::AudioSendStream::GetMinMaxBitrateConstraints
  3408. 0.00% pc_network_thre EgoSystem [.] pthread_mutex_destroy@plt
  3409. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e91c
  3410. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000dbb8
  3411. 0.00% pc_network_thre libc-2.31.so [.] __random_r
  3412. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ced8
  3413. 0.00% SharedModThread EgoSystem [.] operator delete@plt
  3414. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::voe::RemixAndResample
  3415. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_sample_format_valid
  3416. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000003fbd4
  3417. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003ea28
  3418. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d1f0
  3419. 0.00% Thread 0x0x326b EgoSystem [.] rtc::ThreadManager::Instance
  3420. 0.00% AudioEncoder EgoSystem [.] webrtc::AudioEncoder::EncodedInfo::~EncodedInfo
  3421. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b6c0
  3422. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::TooManyOutstandingPings
  3423. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpUtility::RtpHeaderParser::RTCP
  3424. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d0ec
  3425. 0.00% EncoderQueue EgoSystem [.] webrtc::RTPSender::TimestampOffset
  3426. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoBitrateAllocationParameters::VideoBitrateAllocationParameters
  3427. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamInputStateProvider::InputState
  3428. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, cricket::StunRequest*> > >::_M_get_insert_hint_unique_pos
  3429. 0.00% pc_network_thre EgoSystem [.] cricket::StunAddressAttribute::Read
  3430. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002c2ec
  3431. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::MessageLite::ParseFromArray
  3432. 0.00% MQTTAsync_send EgoSystem [.] TreeBalanceAfterRemove
  3433. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] 0x0000000000022c4c
  3434. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037a6c
  3435. 0.00% EncoderQueue EgoSystem [.] rtc::ThreadManager::Instance
  3436. 0.00% pc_network_thre EgoSystem [.] sigslot::_opaque_connection::emitter<cricket::BasicPortAllocatorSession, cricket::Port*, cricket::Candidate const&>
  3437. 0.00% pc_network_thre EgoSystem [.] cricket::Port::GetIceRole
  3438. 0.00% Thread 0x0x326b ld-2.31.so [.] _dl_lookup_symbol_x
  3439. 0.00% pc_network_thre EgoSystem [.] rtc::IPAddress::operator<
  3440. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037788
  3441. 0.00% pc_network_thre EgoSystem [.] srtp_rdb_get_value
  3442. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d904
  3443. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> > >::_M_get_insert_unique_pos
  3444. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003eda8
  3445. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000c9d0
  3446. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ReportBlockData::SetReportBlock
  3447. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000038480
  3448. 0.00% Thread 0x0x326b ld-2.31.so [.] calloc@plt
  3449. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_hook
  3450. 0.00% SharedModThread EgoSystem [.] rtc::PacketInfo::PacketInfo
  3451. 0.00% EgoSystem EgoSystem [.] __gthread_mutex_unlock
  3452. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a2dc
  3453. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpGenericFrameDescriptor::FrameDependenciesDiffs
  3454. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003edc8
  3455. 0.00% rtp_send_contro EgoSystem [.] std::map<webrtc::BitrateAllocatorObserver*, int, std::less<webrtc::BitrateAllocatorObserver*>, std::allocator<std::pair<webrtc::BitrateAllocatorObserver* const, int> > >::operator[]
  3456. 0.00% pc_network_thre libc-2.31.so [.] sprintf
  3457. 0.00% pc_network_thre EgoSystem [.] rtc::ScopedMessageData<rtc::AsyncClosure>::~ScopedMessageData
  3458. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocketServer::Update
  3459. 0.00% EgoSystem EgoSystem [.] google::protobuf::internal::WireFormatLite::WriteInt64NoTagToArray
  3460. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b66c
  3461. 0.00% EgoSystem libc-2.31.so [.] __aarch64_cas8_acq
  3462. 0.00% PacerThread libstdc++.so.6.0.28 [.] operator delete[]
  3463. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::RunTimer
  3464. 0.00% EncoderQueue EgoSystem [.] rtc::RefCountedObject<webrtc::EncodeUsageResource>::AddRef
  3465. 0.00% EncoderQueue EgoSystem [.] rtc::Thread::Post
  3466. 0.00% AudioEncoder EgoSystem [.] epoll_wait@plt
  3467. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::GetNonComprehendedAttributes
  3468. 0.00% EgoSystem EgoSystem [.] std::chrono::__duration_cast_impl<std::chrono::duration<long, std::ratio<1l, 1000l> >, std::ratio<1l, 1000000l>, long, true, false>::__cast<long, std::ratio<1l, 1000000000l> >
  3469. 0.00% EncoderQueue EgoSystem [.] rtc::EventDispatcher::Signal
  3470. 0.00% Thread 0x0x326b EgoSystem [.] CPeerConnection::MessageCallback
  3471. 0.00% pc_network_thre libc-2.31.so [.] __random
  3472. 0.00% pc_network_thre libm-2.31.so [.] exp@@GLIBC_2.29
  3473. 0.00% pc_network_thre EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  3474. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000336f4
  3475. 0.00% pc_network_thre EgoSystem [.] cricket::StunXorAddressAttribute::~StunXorAddressAttribute
  3476. 0.00% EgoSystem EgoSystem [.] std::condition_variable::wait_until<std::chrono::_V2::steady_clock, std::chrono::duration<long, std::ratio<1l, 1000000000l> > >
  3477. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacketToSend::RtpPacketToSend
  3478. 0.00% AudioEncoder EgoSystem [.] init_caps
  3479. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003eb6c
  3480. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040310
  3481. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] xcb_wait_for_reply64@plt
  3482. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b820
  3483. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e9ec
  3484. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::OnConnectionRequestResponse
  3485. 0.00% MQTTAsync_rcv EgoSystem [.] Log_output
  3486. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000028da0
  3487. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003c828
  3488. 0.00% pc_network_thre libc-2.31.so [.] __lll_lock_wait_private
  3489. 0.00% AudioEncoder libstdc++.so.6.0.28 [.] operator delete
  3490. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000412cc
  3491. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000416bc
  3492. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::AimdRateControl::SetRtt
  3493. 0.00% pc_network_thre EgoSystem [.] webrtc::RtpTransport::DemuxPacket
  3494. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoFrame::height
  3495. 0.00% AudioEncoder EgoSystem [.] webrtc::RealTimeClock::CurrentTime
  3496. 0.00% rtp_send_contro EgoSystem [.] webrtc::internal::CallStats::OnRttUpdate
  3497. 0.00% PacerThread libc-2.31.so [.] __aarch64_swp4_acq
  3498. 0.00% pc_network_thre EgoSystem [.] rtc::ByteBufferReader::Consume
  3499. 0.00% EncoderQueue EgoSystem [.] webrtc::RtpSenderEgress::GetDataCounters
  3500. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_pdispatch_ref
  3501. 0.00% pc_network_thre EgoSystem [.] webrtc::RtcEvent::RtcEvent
  3502. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_packet_ref
  3503. 0.00% rtp_send_contro EgoSystem [.] rtc::FunctionView<void (std::unique_ptr<webrtc::AudioEncoder, std::default_delete<webrtc::AudioEncoder> >*)>::CallVoidPtr<webrtc::voe::(anonymous namespace)::ChannelSend::CallEncoder(rtc::FunctionView<void (webrtc::AudioEncoder*)>)::$_3>
  3504. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002af18
  3505. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000dcfc
  3506. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::internal::InternalMetadata::have_unknown_fields
  3507. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScaler::CheckQp
  3508. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_xmalloc0
  3509. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003c7f4
  3510. 0.00% webrtc_audio_mo EgoSystem [.] Callback<void const*, int const, int const, int const, int const>::operator bool
  3511. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000db84
  3512. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000002b43c
  3513. 0.00% pc_network_thre EgoSystem [.] std::_Hashtable<rtc::Dispatcher*, std::pair<rtc::Dispatcher* const, unsigned long>, std::allocator<std::pair<rtc::Dispatcher* const, unsigned long> >, std::__detail::_Select1st, std::equal_to<rtc::Dispatcher*>, std::hash<rtc::Dispatcher*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_emplace<rtc::Dispatcher*&, unsigned long&>
  3514. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::TransportFeedback::~TransportFeedback
  3515. 0.00% Thread 0x0x326b EgoSystem [.] cricket::RtpDataChannel::media_channel
  3516. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f310
  3517. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e840
  3518. 0.00% Thread 0x0x326b libpthread-2.31.so [.] pthread_cond_wait@@GLIBC_2.17
  3519. 0.00% EncoderQueue EgoSystem [.] webrtc::rtcp::CompoundPacket::CompoundPacket
  3520. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000dd00
  3521. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b7cc
  3522. 0.00% rtp_send_contro libstdc++.so.6.0.28 [.] std::__detail::_List_node_base::_M_unhook
  3523. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b9a4
  3524. 0.00% EncoderQueue EgoSystem [.] webrtc::SendStatisticsProxy::GetInputFrameRate
  3525. 0.00% pc_network_thre EgoSystem [.] RAND_bytes
  3526. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003368c
  3527. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] 0x0000000000029940
  3528. 0.00% pc_network_thre [unknown] [k] 0xffffd21344780fb8
  3529. 0.00% pc_network_thre libc-2.31.so [.] __snprintf
  3530. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000033868
  3531. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b98c
  3532. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskImpl<webrtc::internal::VideoSendStreamImpl::StartupVideoSendStream()::$_2>::RunClosure
  3533. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b68c
  3534. 0.00% EncoderQueue EgoSystem [.] operator delete@plt
  3535. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a19c
  3536. 0.00% rtp_send_contro EgoSystem [.] webrtc::SendSideBandwidthEstimation::IncomingPacketFeedbackVector
  3537. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000c9d4
  3538. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041368
  3539. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] 0x0000000000029990
  3540. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  3541. 0.00% Thread 0x0x326b EgoSystem [.] cricket::RtpDataMediaChannel::OnPacketReceived
  3542. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002afc8
  3543. 0.00% rtp_send_contro EgoSystem [.] std::_Rb_tree_rebalance_for_erase@plt
  3544. 0.00% SharedModThread libstdc++.so.6.0.28 [.] operator delete
  3545. 0.00% pc_network_thre EgoSystem [.] cricket::StunRequest::OnMessage
  3546. 0.00% SharedModThread EgoSystem [.] webrtc::RTCPSender::SendCompoundRTCP
  3547. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b9ec
  3548. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x00000000000377ac
  3549. 0.00% rtp_send_contro libpthread-2.31.so [.] pthread_cond_broadcast@@GLIBC_2.17
  3550. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::AudioFrame::Mute
  3551. 0.00% EgoSystem EgoSystem [.] std::unique_ptr<DataChannelObserver, std::default_delete<DataChannelObserver> >::operator bool
  3552. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_tagstruct_put_timeval@plt
  3553. 0.00% threaded-ml libpulsecommon-13.99.so [.] __errno_location@plt
  3554. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a244
  3555. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000022bfc
  3556. 0.00% SharedModThread EgoSystem [.] rtc::PacketOptions::~PacketOptions
  3557. 0.00% SharedModThread EgoSystem [.] non-virtual thunk to webrtc::ReceiveSideCongestionController::TimeUntilNextProcess()
  3558. 0.00% EncoderQueue EgoSystem [.] webrtc::TimeMicrosToNtp
  3559. 0.00% Thread 0x0x326b EgoSystem [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_create@plt
  3560. 0.00% EgoSystem libc-2.31.so [.] __vfscanf_internal
  3561. 0.00% pc_network_thre EgoSystem [.] std::_Hashtable<unsigned long, std::pair<unsigned long const, rtc::Dispatcher*>, std::allocator<std::pair<unsigned long const, rtc::Dispatcher*> >, std::__detail::_Select1st, std::equal_to<unsigned long>, std::hash<unsigned long>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_emplace<unsigned long&, rtc::Dispatcher*&>
  3562. 0.00% rtp_send_contro EgoSystem [.] webrtc::PacketResult::~PacketResult
  3563. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d078
  3564. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000be90
  3565. 0.00% SharedModThread [unknown] [k] 0xffffd213435c02d0
  3566. 0.00% MQTTAsync_send EgoSystem [.] Thread_wait_cond
  3567. 0.00% MQTTAsync_send libc-2.31.so [.] __vfprintf_internal
  3568. 0.00% Thread 0x0x326b EgoSystem [.] non-virtual thunk to webrtc::SendStatisticsProxy::OnReportBlockDataUpdated(webrtc::ReportBlockData)
  3569. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::internal::EpsCopyInputStream::EndedAtLimit
  3570. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::Network*> > >::_M_get_insert_hint_unique_pos
  3571. 0.00% pc_network_thre EgoSystem [.] rtc::IPAddressPrecedence
  3572. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::(anonymous namespace)::RenderDelayBufferImpl::GetDownsampledRenderBuffer
  3573. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000ca9c
  3574. 0.00% EgoSystem EgoSystem [.] google::protobuf::FieldOptions::_InternalParse
  3575. 0.00% pc_network_thre EgoSystem [.] non-virtual thunk to rtc::BasicNetworkManager::OnMessage(rtc::Message*)
  3576. 0.00% EgoSystem EgoSystem [.] std::operator&
  3577. 0.00% EgoSystem libjsoncpp.so.1.7.4 [.] 0x000000000001ab4c
  3578. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::Message::Message
  3579. 0.00% AudioEncoder EgoSystem [.] webrtc::RTCPReceiver::NTP
  3580. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000cadc
  3581. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a1a0
  3582. 0.00% pc_network_thre EgoSystem [.] cricket::StunByteStringAttribute::Read
  3583. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::GetByteString
  3584. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000002b3d8
  3585. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e9c8
  3586. 0.00% EgoSystem EgoSystem [.] rtc::tokenize_first
  3587. 0.00% Thread 0x0x326b EgoSystem [.] cricket::Codec::~Codec
  3588. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::ReceiveSideCongestionController::WrappingBitrateEstimator::LatestEstimate
  3589. 0.00% Thread 0x0xffff ld-2.31.so [.] call_dl_init
  3590. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_memblock_acquire
  3591. 0.00% pc_network_thre EgoSystem [.] getifaddrs@plt
  3592. 0.00% AudioEncoder EgoSystem [.] webrtc::RTPSender::AssignSequenceNumber
  3593. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ce04
  3594. 0.00% EgoSystem EgoSystem [.] google::protobuf::internal::CachedSize::Set
  3595. 0.00% EncoderQueue EgoSystem [.] rtc::PacketOptions::PacketOptions
  3596. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_mainloop_wakeup
  3597. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_mutex_destroy
  3598. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037b90
  3599. 0.00% Thread 0x0x326b EgoSystem [.] cricket::TransportDescription::TransportDescription
  3600. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<cricket::MediaDescriptionOptions, std::allocator<cricket::MediaDescriptionOptions> >::_M_realloc_insert<cricket::MediaDescriptionOptions>
  3601. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RealTimeClock::CurrentTime
  3602. 0.00% EncoderQueue EgoSystem [.] webrtc::RTCPSender::PrepareReport
  3603. 0.00% Thread 0x0x326b EgoSystem [.] CMessageQueue::EnQueue
  3604. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::WienerFilter::ComputeOverallScalingFactor
  3605. 0.00% Thread 0x0x326b EgoSystem [.] cricket::VideoContentDescription::as_video
  3606. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_mutexattr_settype
  3607. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d188
  3608. 0.00% AudioEncoder libc-2.31.so [.] __memmove_generic
  3609. 0.00% pc_network_thre EgoSystem [.] webrtc::field_trial::FindFullName
  3610. 0.00% AudioEncoder libstdc++.so.6.0.28 [.] free@plt
  3611. 0.00% rtp_send_contro EgoSystem [.] webrtc::DelayBasedBwe::OnRttUpdate
  3612. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_gettimeofday
  3613. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x00000000000cd770
  3614. 0.00% EgoSystem EgoSystem [.] CaptureOp::IsForward
  3615. 0.00% Thread 0x0x326b libc-2.31.so [.] __aarch64_cas8_acq
  3616. 0.00% pc_network_thre EgoSystem [.] rtc::PhysicalSocketServer::Add
  3617. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040440
  3618. 0.00% EgoSystem EgoSystem [.] std::_Rb_tree<google::protobuf::EncodedDescriptorDatabase::DescriptorIndex::SymbolEntry, google::protobuf::EncodedDescriptorDatabase::DescriptorIndex::SymbolEntry, std::_Identity<google::protobuf::EncodedDescriptorDatabase::DescriptorIndex::SymbolEntry>, google::protobuf::EncodedDescriptorDatabase::DescriptorIndex::SymbolCompare, std::allocator<google::protobuf::EncodedDescriptorDatabase::DescriptorIndex::SymbolEntry> >::_S_right
  3619. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f600
  3620. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003cdec
  3621. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_timeval_rtstore
  3622. 0.00% EgoSystem libpthread-2.31.so [.] __aarch64_ldset4_rel
  3623. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::SetSequenceNumber
  3624. 0.00% EgoSystem libpthread-2.31.so [.] __aarch64_ldadd4_rel
  3625. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::SetMarker
  3626. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002aff0
  3627. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000da10
  3628. 0.00% Thread 0x0x326b EgoSystem [.] std::pair<char const*, unsigned long>::pair<char const*, unsigned long&, true>
  3629. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] operator new[]
  3630. 0.00% EncoderQueue libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_mutate@plt
  3631. 0.00% Thread 0x0x326b EgoSystem [.] rtc::scoped_refptr<rtc::RefCountedObject<rtc::BufferT<unsigned char, false> > >::operator rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >*
  3632. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_iochannel_is_writable
  3633. 0.00% Thread 0x0x326b EgoSystem [.] cricket::RtpDataChannel::CheckDataChannelTypeFromContent
  3634. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_get_insert_unique_pos
  3635. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x0000000000037838
  3636. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e864
  3637. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_flist_push
  3638. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000004d41c
  3639. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMLossProtectionLogic::UpdateRtt
  3640. 0.00% EgoSystem EgoSystem [.] rtc::split
  3641. 0.00% EgoSystem libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_assign
  3642. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::RtpSenderEgress::SendPacket(webrtc::RtpPacketToSend*, webrtc::PacedPacketInfo const&)::$_3>::~SafetyClosureTask
  3643. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002b5fc
  3644. 0.00% EgoSystem EgoSystem [.] std::vector<google::protobuf::EncodedDescriptorDatabase::DescriptorIndex::SymbolEntry, std::allocator<google::protobuf::EncodedDescriptorDatabase::DescriptorIndex::SymbolEntry> >::end
  3645. 0.00% pc_network_thre libc-2.31.so [.] inet_pton4
  3646. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::compare
  3647. 0.00% rtp_send_contro EgoSystem [.] webrtc::RTCPSender::TMMBR
  3648. 0.00% rtp_send_contro EgoSystem [.] webrtc::RemoteEstimatorProxy::OnBitrateChanged
  3649. 0.00% EgoSystem EgoSystem [.] google::protobuf::internal::EpsCopyInputStream::ReadString
  3650. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000495a0
  3651. 0.00% EncoderQueue EgoSystem [.] rtc::LogMessage::IsNoop
  3652. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000000f334
  3653. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<cricket::FeedbackParam, std::allocator<cricket::FeedbackParam> >::_M_realloc_insert<cricket::FeedbackParam const&>
  3654. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::PeerConnection::Initialize
  3655. 0.00% Thread 0x0x326b EgoSystem [.] rtc::PhysicalSocketServer::WakeUp
  3656. 0.00% EgoSystem EgoSystem [.] _vpaes_encrypt_core
  3657. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] writev@plt
  3658. 0.00% pc_network_thre EgoSystem [.] cricket::PortAllocatorSession::generation
  3659. 0.00% PacerThread libpthread-2.31.so [.] __aarch64_ldset4_rel
  3660. 0.00% pc_network_thre EgoSystem [.] rtc::BasicNetworkManager::UpdateNetworksOnce
  3661. 0.00% pc_network_thre EgoSystem [.] cricket::StunByteStringAttribute::~StunByteStringAttribute
  3662. 0.00% pc_network_thre EgoSystem [.] rtc::RecursiveCriticalSection::RecursiveCriticalSection
  3663. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000033744
  3664. 0.00% EncoderQueue EgoSystem [.] set_vp8e_config
  3665. 0.00% webrtc_audio_mo libc-2.31.so [.] unlink_chunk.isra.0
  3666. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000de34
  3667. 0.00% threaded-ml libpthread-2.31.so [.] __aarch64_ldclr4_rel
  3668. 0.00% pc_network_thre EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::(anonymous namespace)::AddressList>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::(anonymous namespace)::AddressList> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, rtc::(anonymous namespace)::AddressList> > >::_M_get_insert_unique_pos
  3669. 0.00% AudioEncoder EgoSystem [.] rtc::CritScope::CritScope
  3670. 0.00% PacerThread EgoSystem [.] webrtc::UlpfecGenerator::SetProtectionParameters
  3671. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000bf14
  3672. 0.00% webrtc_audio_mo EgoSystem [.] webrtc::FrameBlocker::IsBlockAvailable
  3673. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000004d40c
  3674. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtpSenderEgress::SetFecProtectionParameters
  3675. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_memblockq_drop@plt
  3676. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x000000000011b7d8
  3677. 0.00% pc_network_thre EgoSystem [.] sha1_init
  3678. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000004052c
  3679. 0.00% PacerThread libstdc++.so.6.0.28 [.] std::_Rb_tree_decrement
  3680. 0.00% EgoSystem EgoSystem [.] google::protobuf::internal::WireFormatLite::MakeTag
  3681. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000413c4
  3682. 0.00% AudioEncoder EgoSystem [.] rtc::CritScope::~CritScope
  3683. 0.00% pc_network_thre EgoSystem [.] _vpaes_schedule_round
  3684. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003eac0
  3685. 0.00% EncoderQueue EgoSystem [.] webrtc::EncodedImageBuffer::size
  3686. 0.00% pc_network_thre EgoSystem [.] rtc::AsyncClosure::~AsyncClosure
  3687. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_mutate
  3688. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::CreateNew
  3689. 0.00% MQTTAsync_rcv EgoSystem [.] Socket_getReadySocket
  3690. 0.00% pc_network_thre EgoSystem [.] webrtc::RtcEventLogNull::Log
  3691. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000d05c
  3692. 0.00% AudioEncoder EgoSystem [.] operator new@plt
  3693. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::webrtc_new_closure_impl::SafetyClosureTask<webrtc::internal::Call::OnTargetTransferRate(webrtc::TargetTransferRate)::$_1>::~SafetyClosureTask
  3694. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000002af00
  3695. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000da78
  3696. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] memchr@plt
  3697. 0.00% AudioEncoder EgoSystem [.] webrtc::RtpPacket::SetCsrcs
  3698. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::reserve
  3699. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] pa_idxset_trivial_hash_func
  3700. 0.00% webrtc_audio_mo libX11.so.6.3.0 [.] 0x000000000003ca40
  3701. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000040690
  3702. 0.00% Thread 0x0x326b EgoSystem [.] cricket::MediaContentDescription::direction
  3703. 0.00% EgoSystem EgoSystem [.] google::protobuf::Message::MaybeComputeUnknownFieldsSize
  3704. 0.00% SharedModThread EgoSystem [.] std::_Rb_tree_increment@plt
  3705. 0.00% webrtc_audio_mo libpulsecommon-13.99.so [.] 0x000000000004d494
  3706. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::_Rb_tree_decrement
  3707. 0.00% pc_network_thre libstdc++.so.6.0.28 [.] std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::find
  3708. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000379fc
  3709. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_operation_ref
  3710. 0.00% pc_network_thre EgoSystem [.] cricket::BasicIceController::SelectConnectionToPing
  3711. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041370
  3712. 0.00% pc_network_thre EgoSystem [.] rtc::OpenSSLDigest::Finish
  3713. 0.00% pc_network_thre libc-2.31.so [.] malloc@plt
  3714. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002a1bc
  3715. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::Ping
  3716. 0.00% pc_network_thre EgoSystem [.] CRYPTO_is_ARMv8_AES_capable
  3717. 0.00% pc_network_thre EgoSystem [.] webrtc::RtcEventIceCandidatePair::RtcEventIceCandidatePair
  3718. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoEncoder::RateControlParameters::operator!=
  3719. 0.00% SharedModThread libstdc++.so.6.0.28 [.] std::_Rb_tree_increment
  3720. 0.00% MQTTAsync_send EgoSystem [.] myrealloc
  3721. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::internal::VideoSendStreamImpl::OnEncodedImage(webrtc::EncodedImage const&, webrtc::CodecSpecificInfo const*)::$_6&>::~ClosureTask
  3722. 0.00% Thread 0x0x326b EgoSystem [.] rtc::CritScope::~CritScope
  3723. 0.00% pc_network_thre EgoSystem [.] cricket::SrtpSession::UnprotectRtp
  3724. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x00000000000416d0
  3725. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000e310
  3726. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] pa_memchunk_reset@plt
  3727. 0.00% pc_network_thre libc-2.31.so [.] _IO_no_init
  3728. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_timeval_rtstore@plt
  3729. 0.00% rtp_send_contro EgoSystem [.] webrtc::media_optimization::VCMLossProtectionLogic::UpdateMaxLossHistory
  3730. 0.00% Thread 0x0x326b EgoSystem [.] google::protobuf::MessageLite::IsInitializedWithErrors
  3731. 0.00% pc_network_thre EgoSystem [.] rtc::LogMessage::GetMinLogSeverity
  3732. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_repeating_task_impl::RepeatingTaskImpl<webrtc::ModuleRtpRtcpImpl2::ModuleRtpRtcpImpl2(webrtc::RtpRtcpInterface::Configuration const&)::$_1>::RunClosure
  3733. 0.00% pc_network_thre EgoSystem [.] _vpaes_schedule_low_round
  3734. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::AvgCounter::GetMetric
  3735. 0.00% Thread 0x0x326b EgoSystem [.] std::unique_lock<std::mutex>::lock
  3736. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RTPSender::OnReceivedAckOnSsrc
  3737. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000033688
  3738. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::rtcp::ReportBlock::ReportBlock
  3739. 0.00% pc_network_thre EgoSystem [.] non-virtual thunk to rtc::SocketDispatcher::~SocketDispatcher()
  3740. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000b7c0
  3741. 0.00% pc_network_thre EgoSystem [.] cricket::DtlsTransport::SetSslMaxProtocolVersion
  3742. 0.00% EgoSystem ld-2.31.so [.] strcmp
  3743. 0.00% Thread 0x0x326b EgoSystem [.] sigslot::has_slots<sigslot::single_threaded>::do_signal_connect
  3744. 0.00% EgoSystem EgoSystem [.] rtc::scoped_refptr<webrtc::DataChannelInterface>::get
  3745. 0.00% Thread 0x0x326b EgoSystem [.] rtc::UniqueStringGenerator::AddKnownId
  3746. 0.00% rtp_send_contro [unknown] [k] 0xffffd21344778074
  3747. 0.00% pc_network_thre EgoSystem [.] cricket::Connection::MaybeUpdateLocalCandidate
  3748. 0.00% webrtc_audio_mo libxcb.so.1.1.0 [.] 0x000000000000ca60
  3749. 0.00% Thread 0x0x326b libc-2.31.so [.] memcmp
  3750. 0.00% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::SetIceRole
  3751. 0.00% pc_network_thre EgoSystem [.] rtc::EventBasedExponentialMovingAverage::AddSample
  3752. 0.00% Thread 0x0x326b EgoSystem [.] std::_Function_base::_Base_manager<rtc::OperationsChain::CreateOperationsChainCallback()::$_0>::_M_manager
  3753. 0.00% PacerThread EgoSystem [.] webrtc::RoundRobinPacketQueue::Push
  3754. 0.00% pc_network_thre EgoSystem [.] cricket::StunMessage::AddAttribute
  3755. 0.00% Thread 0x0x326b ld-2.31.so [.] _dl_map_object_from_fd
  3756. 0.00% rtp_send_contro EgoSystem [.] webrtc::BitrateAllocator::AddObserver
  3757. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_rwlock_rdlock
  3758. 0.00% Thread 0x0x326b EgoSystem [.] memcpy@plt
  3759. 0.00% pc_network_thre EgoSystem [.] cricket::DtlsTransport::dtls_state
  3760. 0.00% Thread 0x0x326b libpulsecommon-13.99.so [.] 0x000000000002afc0
  3761. 0.00% Thread 0x0x326b EgoSystem [.] cricket::WebRtcVideoChannel::OnNetworkRouteChanged
  3762. 0.00% EncoderQueue EgoSystem [.] pthread_create@plt
  3763. 0.00% pc_network_thre EgoSystem [.] rtc::CopyOnWriteBuffer::CopyOnWriteBuffer
  3764. 0.00% EncoderQueue EgoSystem [.] vp8_create_compressor
  3765. 0.00% EgoSystem EgoSystem [.] google::protobuf::MessageLite::ParseFrom<(google::protobuf::MessageLite::ParseFlags)1, google::protobuf::stringpiece_internal::StringPiece>
  3766. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000002afdc
  3767. 0.00% Thread 0x0x326b EgoSystem [.] cricket::StreamParams::AddSecondarySsrc
  3768. 0.00% pc_network_thre EgoSystem [.] rtc::LogMessage::IsNoop<(rtc::LoggingSeverity)0>
  3769. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<cricket::FeedbackParam, std::allocator<cricket::FeedbackParam> >::vector
  3770. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x000000000003e95c
  3771. 0.00% Thread 0x0x326b EgoSystem [.] rtc::Thread::InvokeInternal(rtc::Location const&, rtc::FunctionView<void ()>)::FunctorMessageHandler::OnMessage
  3772. 0.00% Thread 0x0x326b EgoSystem [.] event_base_priority_init
  3773. 0.00% pc_network_thre libc-2.31.so [.] __libc_fcntl64
  3774. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::SdpSerialize[abi:cxx11]
  3775. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::OnResolveResult
  3776. 0.00% EgoSystem libc-2.31.so [.] _IO_link_in
  3777. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RateControlSettings::RateControlSettings
  3778. 0.00% EgoSystem EgoSystem [.] webrtc::ParseContent
  3779. 0.00% EgoSystem libc-2.31.so [.] memcmp
  3780. 0.00% EncoderQueue EgoSystem [.] rtc::SimpleStringBuilder::AppendFormat
  3781. 0.00% Thread 0x0x326b libc-2.31.so [.] __strchrnul
  3782. 0.00% Thread 0x0x326b EgoSystem [.] cricket::AudioSendParameters::~AudioSendParameters
  3783. 0.00% Thread 0x0x326b EgoSystem [.] std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::pair<char const (&) [], char const (&) [2], true>
  3784. 0.00% Thread 0x0x326b EgoSystem [.] cricket::(anonymous namespace)::ValidateCodecFormats
  3785. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::RtpHeaderExtensionMap::RegisterByUri
  3786. 0.00% Thread 0x0x326b EgoSystem [.] rtc::RefCountedObject<rtc::BufferT<unsigned char, false> >::~RefCountedObject
  3787. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __aarch64_ldset4_rel
  3788. 0.00% Thread 0x0x326b libc-2.31.so [.] __strlen_generic
  3789. 0.00% EncoderQueue EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, webrtc::FieldTrialParameterInterface*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, webrtc::FieldTrialParameterInterface*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, webrtc::FieldTrialParameterInterface*> > >::_M_get_insert_hint_unique_pos
  3790. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::OnSendPacket
  3791. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::JsepSessionDescription::AddCandidate
  3792. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::VideoEncoderConfig::Vp8EncoderSpecificSettings::Vp8EncoderSpecificSettings
  3793. 0.00% EncoderQueue EgoSystem [.] vp8_cost_tokens2
  3794. 0.00% EncoderQueue EgoSystem [.] webrtc::QualityScalerSettings::ScaleFactor
  3795. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::VideoBitrateAllocation::VideoBitrateAllocation
  3796. 0.00% EncoderQueue EgoSystem [.] webrtc::VideoStreamEncoderResourceManager::SetEncoderSettings
  3797. 0.00% Thread 0x0x326b EgoSystem [.] cricket::NegotiateCodecs<cricket::VideoCodec>
  3798. 0.00% Thread 0x0x326b EgoSystem [.] cricket::WebRtcVoiceMediaChannel::SetSendCodecs
  3799. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::operator=
  3800. 0.00% EgoSystem EgoSystem [.] std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::pair
  3801. 0.00% Thread 0x0x326b libc-2.31.so [.] __GI_____strtoll_l_internal
  3802. 0.00% pc_network_thre EgoSystem [.] cricket::UDPPort::SendStunBindingRequest
  3803. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::field_trial_list_impl::TypedFieldTrialListWrapper<int>::GetList
  3804. 0.00% Thread 0x0x326b libc-2.31.so [.] getenv
  3805. 0.00% EgoSystem EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >::_M_emplace_hint_unique<std::piecewise_construct_t const&, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&>, std::tuple<> >
  3806. 0.00% Thread 0x0x326b libc-2.31.so [.] __vfprintf_internal
  3807. 0.00% Thread 0x0x326b libsndfile.so.1.0.28 [.] 0x0000000000006a70
  3808. 0.00% rtp_send_contro EgoSystem [.] rtc::Thread::PostTask
  3809. 0.00% Thread 0x0x326b EgoSystem [.] std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::pair<char const (&) [], true>
  3810. 0.00% EgoSystem ld-2.31.so [.] rtld_lock_default_lock_recursive
  3811. 0.00% EncoderQueue EgoSystem [.] cricket::EncoderStreamFactory::CreateEncoderStreams
  3812. 0.00% Thread 0x0x326b libc-2.31.so [.] _itoa_word
  3813. 0.00% Thread 0x0x326b libc-2.31.so [.] _IO_file_underflow@@GLIBC_2.17
  3814. 0.00% Thread 0x0x326b ld-2.31.so [.] check_match
  3815. 0.00% Thread 0x0x326b EgoSystem [.] cricket::SessionDescription::HasGroup
  3816. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_tagstruct_get_proplist
  3817. 0.00% Thread 0x0x326b EgoSystem [.] rtc::string_to_number_internal::ParseSigned
  3818. 0.00% pc_network_thre EgoSystem [.] rtc::RateTracker::Time
  3819. 0.00% webrtc_audio_mo EgoSystem [.] WebRtcSpl_DotProductWithScale
  3820. 0.00% Thread 0x0x326b ld-2.31.so [.] _dl_relocate_object
  3821. 0.00% Thread 0x0x326b libpthread-2.31.so [.] pthread_create@@GLIBC_2.17
  3822. 0.00% pc_network_thre EgoSystem [.] cricket::SrtpSession::SetSend
  3823. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_idxset_string_hash_func
  3824. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_proplist_set
  3825. 0.00% EgoSystem ld-2.31.so [.] memcpy
  3826. 0.00% pc_network_thre EgoSystem [.] sigslot::has_slots<sigslot::single_threaded>::do_signal_connect
  3827. 0.00% EncoderQueue EgoSystem [.] std::__detail::_List_node_base::_M_hook@plt
  3828. 0.00% pc_network_thre EgoSystem [.] cricket::JsepTransport::JsepTransport
  3829. 0.00% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::SortConnectionsAndUpdateState
  3830. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::(anonymous namespace)::BuiltinVideoEncoderFactory::GetSupportedFormats
  3831. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::AdjustConfig
  3832. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<cricket::AudioCodec, std::allocator<cricket::AudioCodec> >::max_size
  3833. 0.00% Thread 0x0x326b EgoSystem [.] std::_Destroy<cricket::VideoCodec>
  3834. 0.00% EncoderQueue EgoSystem [.] webrtc::RateStatistics::RateStatistics
  3835. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::H264::ParseProfileLevelId
  3836. 0.00% rtp_send_contro EgoSystem [.] webrtc::RtcEventProbeResultSuccess::RtcEventProbeResultSuccess
  3837. 0.00% Thread 0x0x326b EgoSystem [.] cricket::DataMediaChannel::DataMediaChannel
  3838. 0.00% pc_network_thre EgoSystem [.] webrtc::IceEventLog::LogCandidatePairConfig
  3839. 0.00% webrtc_audio_mo libpulse.so.0.21.2 [.] 0x0000000000029948
  3840. 0.00% rtp_send_contro libc-2.31.so [.] __memcpy_generic
  3841. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<int, std::pair<int const, cricket::VideoCodec::CodecType>, std::_Select1st<std::pair<int const, cricket::VideoCodec::CodecType> >, std::less<int>, std::allocator<std::pair<int const, cricket::VideoCodec::CodecType> > >::_M_get_insert_hint_unique_pos
  3842. 0.00% Thread 0x0x326b ld-2.31.so [.] _dl_fixup
  3843. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::Subtractor::Subtractor
  3844. 0.00% pc_network_thre EgoSystem [.] cricket::JsepTransport::SetRemoteJsepTransportDescription
  3845. 0.00% pc_network_thre EgoSystem [.] cricket::P2PTransportChannel::network_route
  3846. 0.00% Thread 0x0x326b libc-2.31.so [.] __pipe
  3847. 0.00% Thread 0x0x326b EgoSystem [.] rtc::Thread::Send
  3848. 0.00% EgoSystem EgoSystem [.] webrtc::GetLine
  3849. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::WebRtcAgc_CalculateGainTable
  3850. 0.00% pc_network_thre EgoSystem [.] rtc::FunctionView<bool ()>::CallVoidPtr<cricket::BaseChannel::RegisterRtpDemuxerSink()::$_8>
  3851. 0.00% EncoderQueue libc-2.31.so [.] _IO_old_init
  3852. 0.00% PacerThread EgoSystem [.] webrtc::BitrateProber::NextProbeTime
  3853. 0.00% Thread 0x0x326b ld-2.31.so [.] strchr
  3854. 0.00% EncoderQueue EgoSystem [.] webrtc::(anonymous namespace)::BuiltinVideoEncoderFactory::CreateVideoEncoder
  3855. 0.00% Thread 0x0xffff libc-2.31.so [.] gaih_inet.constprop.0
  3856. 0.00% Thread 0x0x326b EgoSystem [.] cricket::AudioCodec::AudioCodec
  3857. 0.00% rtp_send_contro EgoSystem [.] webrtc::DelayBasedBwe::Result::Result
  3858. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::StatsCollector::ExtractSenderInfo
  3859. 0.00% Thread 0x0x326b EgoSystem [.] cricket::ChannelManager::GetSupportedAudioRtpHeaderExtensions
  3860. 0.00% MQTTAsync_rcv EgoSystem [.] Socket_continueWrites
  3861. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, webrtc::StatsReport*>, std::_Select1st<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, webrtc::StatsReport*> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >, std::allocator<std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, webrtc::StatsReport*> > >::_M_get_insert_hint_unique_pos
  3862. 0.00% Thread 0x0x326b EgoSystem [.] std::vector<cricket::MediaDescriptionOptions, std::allocator<cricket::MediaDescriptionOptions> >::push_back
  3863. 0.00% EgoSystem EgoSystem [.] webrtc::CreateIceCandidate
  3864. 0.00% MQTTAsync_send ld-2.31.so [.] _dl_fixup
  3865. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::DataChannelController::UpdateRemoteRtpDataChannels
  3866. 0.00% Thread 0x0x326b EgoSystem [.] absl::AsciiStrToLower
  3867. 0.00% Thread 0x0xffff libc-2.31.so [.] _IO_link_in
  3868. 0.00% Thread 0x0xffff libresolv-2.31.so [.] __res_context_mkquery
  3869. 0.00% threaded-ml libpulse.so.0.21.2 [.] pa_socket_client_unref@plt
  3870. 0.00% Thread 0x0x326b EgoSystem [.] _vpaes_encrypt_core
  3871. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] strlen@plt
  3872. 0.00% Thread 0x0x326b EgoSystem [.] std::_Rb_tree<int, std::pair<int const, bool>, std::_Select1st<std::pair<int const, bool> >, std::greater<int>, std::allocator<std::pair<int const, bool> > >::_M_erase
  3873. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x0000000000028a98
  3874. 0.00% Thread 0x0x326b EgoSystem [.] RAND_bytes
  3875. 0.00% Thread 0x0xffff libc-2.31.so [.] context_get.part.0
  3876. 0.00% Thread 0x0x326b EgoSystem [.] std::pair<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >::pair<char const (&) [13], char const (&) [2], true>
  3877. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::PeerConnection::GetChannel
  3878. 0.00% Thread 0x0x326b libstdc++.so.6.0.28 [.] std::_Rb_tree_decrement
  3879. 0.00% EgoSystem libpthread-2.31.so [.] __libc_recv
  3880. 0.00% EgoSystem EgoSystem [.] google::protobuf::internal::EpsCopyInputStream::DoneFallback
  3881. 0.00% Thread 0x0xffff libc-2.31.so [.] inet_pton4
  3882. 0.00% threaded-ml EgoSystem [.] strncpy@plt
  3883. 0.00% rtp_send_contro EgoSystem [.] webrtc::webrtc_new_closure_impl::ClosureTask<webrtc::RtpTransportControllerSend::UpdateBitrateConstraints(webrtc::BitrateConstraints const&)::$_8>::Run
  3884. 0.00% pc_network_thre EgoSystem [.] webrtc::RtpHeaderExtensionMap::RegisterByUri
  3885. 0.00% Thread 0x0xffff libc-2.31.so [.] malloc
  3886. 0.00% EgoSystem ld-2.31.so [.] __GI___tunables_init
  3887. 0.00% EgoSystem ld-2.31.so [.] check_match
  3888. 0.00% AudioDeviceBuff EgoSystem [.] rtc::LogMessage::IsNoop
  3889. 0.00% pc_network_thre EgoSystem [.] rtc::FunctionView<void ()>::CallVoidPtr<rtc::Thread::Invoke<webrtc::RTCError, void>(rtc::Location const&, rtc::FunctionView<webrtc::RTCError ()>)::{lambda()#1}>
  3890. 0.00% AudioDeviceBuff libc-2.31.so [.] malloc
  3891. 0.00% threaded-ml libpulsecommon-13.99.so [.] pa_mcalign_push
  3892. 0.00% EgoSystem EgoSystem [.] google::protobuf::MessageLite::MessageLite
  3893. 0.00% EgoSystem EgoSystem [.] google::protobuf::io::CodedInputStream::GetDefaultRecursionLimit
  3894. 0.00% threaded-ml libpulsecommon-13.99.so [.] 0x0000000000041efc
  3895. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::VideoTrackProxyWithInternal<webrtc::VideoTrackInterface>::kind[abi:cxx11]
  3896. 0.00% EgoSystem EgoSystem [.] RemoNet::Candidate::SharedDtor
  3897. 0.00% EgoSystem EgoSystem [.] std::chrono::duration<long, std::ratio<1l, 1000l> >::duration<int, void>
  3898. 0.00% pc_network_thre EgoSystem [.] rtc::FunctionView<void ()>::CallVoidPtr<rtc::Thread::Invoke<bool, void>(rtc::Location const&, rtc::FunctionView<bool ()>)::{lambda()#1}>
  3899. 0.00% Thread 0x0x326b EgoSystem [.] non-virtual thunk to webrtc::VideoTrackSource::AddOrUpdateSink(rtc::VideoSinkInterface<webrtc::VideoFrame>*, rtc::VideoSinkWants const&)
  3900. 0.00% MQTTAsync_rcv EgoSystem [.] isReady
  3901. 0.00% rtp_send_contro EgoSystem [.] webrtc::internal::VideoSendStreamImpl::VideoSendStreamImpl
  3902. 0.00% EgoSystem EgoSystem [.] webrtc::PeerConnectionProxyWithInternal<webrtc::PeerConnectionInterface>::AddIceCandidate
  3903. 0.00% Thread 0x0x326b EgoSystem [.] cricket::RtpDataContentDescription::type
  3904. 0.00% EgoSystem EgoSystem [.] std::_Hashtable<void*, std::pair<void* const, rtc::scoped_refptr<PeerConnection> >, std::allocator<std::pair<void* const, rtc::scoped_refptr<PeerConnection> > >, std::__detail::_Select1st, std::equal_to<void*>, std::hash<void*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::_M_bucket_index
  3905. 0.00% Thread 0x0x326b libpulsecommon-13.99.so [.] 0x000000000002af60
  3906. 0.00% AudioDeviceBuff EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::RunTimer
  3907. 0.00% webrtc_audio_mo EgoSystem [.] GetPulseSymbolTable
  3908. 0.00% EgoSystem EgoSystem [.] google::protobuf::MessageLite::~MessageLite
  3909. 0.00% EgoSystem libc-2.31.so [.] tcache_init.part.0
  3910. 0.00% EgoSystem EgoSystem [.] CMessageQueue::OnVideoCandidate
  3911. 0.00% Thread 0x0x326b EgoSystem [.] webrtc::MethodCall<webrtc::PeerConnectionInterface, void, webrtc::CreateSessionDescriptionObserver*, webrtc::PeerConnectionInterface::RTCOfferAnswerOptions const&>::Run
  3912. 0.00% AudioDeviceBuff EgoSystem [.] webrtc::(anonymous namespace)::TaskQueueLibevent::ThreadMain
  3913. 0.00% pc_network_thre ld-2.31.so [.] _dl_fixup
  3914. 0.00% Thread 0x0x326b libc-2.31.so [.] __ctype_init
  3915. 0.00% threaded-ml libpulse.so.0.21.2 [.] 0x000000000002c3fc
  3916. 0.00% pc_network_thre libpthread-2.31.so [.] __pthread_setspecific
  3917. 0.00% EgoSystem EgoSystem [.] mrsPeerConnectionCreate
  3918. 0.00% EgoSystem libc-2.31.so [.] malloc_init_state
  3919. 0.00% Thread 0x0x326b libpthread-2.31.so [.] _setjmp@plt
  3920. 0.00% EgoSystem ld-2.31.so [.] _dl_fixup
  3921. 0.00% EgoSystem libstdc++.so.6.0.28 [.] operator delete@plt
  3922. 0.00% AudioDeviceBuff EgoSystem [.] event_base_loop
  3923. 0.00% EgoSystem libc-2.31.so [.] __ctype_init
  3924. 0.00% EgoSystem libc-2.31.so [.] arena_get2
  3925. 0.00% SharedModThread libc-2.31.so [.] __sched_setscheduler
  3926. 0.00% MQTTAsync_rcv EgoSystem [.] Log
  3927. 0.00% Thread 0x0x326b libpulsecommon-13.99.so [.] 0x0000000000051058
  3928. 0.00% EncoderQueue libpthread-2.31.so [.] pthread_setschedparam
  3929. 0.00% MQTTAsync_send EgoSystem [.] MQTTAsync_sendThread
  3930. 0.00% PacerThread libc-2.31.so [.] __sched_get_priority_min
  3931. 0.00% PacerThread libc-2.31.so [.] __sched_get_priority_max
  3932. 0.00% AudioDeviceBuff EgoSystem [.] epoll_dispatch
  3933. 0.00% rtp_send_contro EgoSystem [.] webrtc::TaskQueueBase::CurrentTaskQueueSetter::CurrentTaskQueueSetter
  3934. 0.00% Thread 0x0x326b libpulse.so.0.21.2 [.] pa_operation_unref
  3935. 0.00% Thread 0x0x326b EgoSystem [.] rtc::PlatformThread::StartThread
  3936. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x00000000000ccf80
  3937. 0.00% EgoSystem EgoSystem [.] std::__detail::_Hash_code_base<short, std::pair<short const, void (SocketClient::*)(signed char*, short)>, std::__detail::_Select1st, std::hash<short>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code
  3938. 0.00% EgoSystem EgoSystem [.] std::_Hashtable<short, std::pair<short const, void (SocketClient::*)(signed char*, short)>, std::allocator<std::pair<short const, void (SocketClient::*)(signed char*, short)> >, std::__detail::_Select1st, std::equal_to<short>, std::hash<short>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::find
  3939. 0.00% EgoSystem libpthread-2.31.so [.] pthread_cond_destroy@@GLIBC_2.17
  3940. 0.00% EgoSystem libpthread-2.31.so [.] pthread_cond_timedwait@@GLIBC_2.17
  3941. 0.00% EgoSystem EgoSystem [.] rtc::Event::Wait
  3942. 0.00% Thread 0x0x326b libc-2.31.so [.] __GI___prctl
  3943. 0.00% EncoderQueue libc-2.31.so [.] __ctype_init
  3944. 0.00% EgoSystem ld-2.31.so [.] _dl_start
  3945. 0.00% EgoSystem libpthread-2.31.so [.] start_thread
  3946. 0.00% Thread 0x0x326b libc-2.31.so [.] _setjmp
  3947. 0.00% EgoSystem EgoSystem [.] pthread_mutex_destroy@plt
  3948. 0.00% pc_network_thre libpthread-2.31.so [.] start_thread
  3949. 0.00% EgoSystem EgoSystem [.] MQTTAsync_sendThread
  3950. 0.00% Thread 0x0x326b libpthread-2.31.so [.] start_thread
  3951. 0.00% pc_network_thre libc-2.31.so [.] __ctype_init
  3952. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x00000000000ccf84
  3953. 0.00% EncoderQueue libpthread-2.31.so [.] __aarch64_swp4_acq
  3954. 0.00% EgoSystem EgoSystem [.] pthread_cond_destroy@plt
  3955. 0.00% PacerThread libpthread-2.31.so [.] pthread_setschedparam
  3956. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_mutex_cond_lock_full
  3957. 0.00% EgoSystem EgoSystem [.] MessageHead::Deserialize
  3958. 0.00% EgoSystem libstdc++.so.6.0.28 [.] 0x00000000000ccf98
  3959. 0.00% pc_network_thre EgoSystem [.] rtc::Thread::PreRun
  3960. 0.00% EncoderQueue libpthread-2.31.so [.] start_thread
  3961. 0.00% Thread 0x0x326b [unknown] [k] 0xffffd21344778074
  3962. 0.00% EgoSystem EgoSystem [.] webrtc::MethodCall<webrtc::PeerConnectionInterface, void, std::unique_ptr<webrtc::SessionDescriptionInterface, std::default_delete<webrtc::SessionDescriptionInterface> >, rtc::scoped_refptr<webrtc::SetRemoteDescriptionObserverInterface> >::Marshal
  3963. 0.00% MQTTAsync_send libpthread-2.31.so [.] _pthread_cleanup_pop
  3964. 0.00% EgoSystem EgoSystem [.] SocketClient::Run
  3965. 0.00% Thread 0x0x326b libc-2.31.so [.] __sigsetjmp
  3966. 0.00% AudioDeviceBuff libc-2.31.so [.] __libc_disable_asynccancel
  3967. 0.00% pc_network_thre libc-2.31.so [.] _setjmp
  3968. 0.00% EgoSystem libpthread-2.31.so [.] __pthread_disable_asynccancel
  3969. 0.00% EgoSystem EgoSystem [.] std::condition_variable::__wait_until_impl<std::chrono::duration<long, std::ratio<1l, 1000000000l> > >
  3970. 0.00% EgoSystem libc-2.31.so [.] __sigsetjmp
  3971. 0.00% pc_network_thre [unknown] [k] 0xffffd21344778074
  3972. 0.00% EgoSystem libc-2.31.so [.] __clone
  3973. 0.00% EgoSystem EgoSystem [.] UTF8_validateString
  3974. 0.00% EgoSystem libpthread-2.31.so [.] __pthread_mutex_cond_lock
  3975. 0.00% Thread 0x0x326b libc-2.31.so [.] __clone
  3976. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __ctype_init@plt
  3977. 0.00% AudioDeviceBuff libc-2.31.so [.] __aarch64_cas4_acq
  3978. 0.00% MQTTAsync_send libpthread-2.31.so [.] pthread_cond_timedwait@@GLIBC_2.17
  3979. 0.00% MQTTAsync_send libpthread-2.31.so [.] __aarch64_swp4_acq
  3980. 0.00% AudioDeviceBuff libc-2.31.so [.] epoll_pwait
  3981. 0.00% pc_network_thre libc-2.31.so [.] __sigsetjmp
  3982. 0.00% EncoderQueue libc-2.31.so [.] __clone
  3983. 0.00% MQTTAsync_rcv libc-2.31.so [.] __poll
  3984. 0.00% MQTTAsync_send libpthread-2.31.so [.] __lll_lock_wait
  3985. 0.00% pc_network_thre libc-2.31.so [.] __clone
  3986. 0.00% EgoSystem EgoSystem [.] GSMLCapturer::start_streams
  3987. 0.00% EgoSystem EgoSystem [.] MQTTAsync_createWithOptions
  3988. 0.00% EgoSystem EgoSystem [.] usleep@plt
  3989. 0.00% EgoSystem ld-2.31.so [.] _start
  3990. 0.00% EgoSystem libc-2.31.so [.] usleep
  3991. 0.00% EgoSystem libpthread-2.31.so [.] __condvar_confirm_wakeup
  3992. 0.00% EgoSystem libpthread-2.31.so [.] __condvar_dec_grefs
  3993. 0.00% EgoSystem [unknown] [k] 0xffffd213447780f0
  3994. 0.00% EncoderQueue libc-2.31.so [.] thread_start
  3995. 0.00% Thread 0x0x326b libpthread-2.31.so [.] __pthread_mutex_unlock_full
  3996. 0.00% pc_network_thre libc-2.31.so [.] thread_start
  3997. #
  3998. # (Tip: To add Node.js USDT(User-Level Statically Defined Tracing): perf buildid-cache --add `which node`)
  3999. #