pincache耗时的优化

news/2024/7/20 21:50:55 标签: ios, 前端, javascript

pincache耗时的优化

kdebug_signpost_start 加了这个东西 instruments里面的interest points 就会有标注

整体目标 就是减少进入滑切直播间的cpu调用

总共是5个点,1.avaudio(已开发)  2.pincache 3.swithroom 4.saveConfigToFile 5.gift红点(guoan)

其中2 3 4 都是滑切的

PINBackgroundTask *task = [PINBackgroundTask start]的作用是放到app退出之后的后台去执行,pincache 会引起findcloestsymbol耗时,会比较耗用CPU,然后新版本的库里面,PINBackgroundTask里面已经没有了,所以考虑能不能去掉这些

PINBackgroundTask *task = [PINBackgroundTask start]的作用是放到app退出之后的后台去执行,pincache 会引起findcloestsymbol耗时,会比较耗用CPU,然后新版本的库里面,PINBackgroundTask里面已经没有了,所以考虑能不能去掉这些,整体目标 就是减少进入滑切直播间的cpu调用

audisession预加载的秒出指标分房型看一下:

还可以分房型看一下 数据

多人房 语音房

分机型看一下:

#import <BGProtocolKit/BSCommon.h>

#import <BGProtocolKit/GiftStoreDef.h>

#import <Photos/Photos.h>

#import <sys/kdebug_signpost.h>

#import "BLEmojiTabPresenter.h"

#import <sys/kdebug_signpost.h>

@property (nonatomic, strong) BLLiveNetworkStatusView *networkStatusView;

@property (nonatomic, strong) BigoTimer *networkTimer;

@property (nonatomic, assign) CFAbsoluteTime startTime;

@property (nonatomic, assign) CFAbsoluteTime startTime;

- (void)switchToNextRoomWithAnimation {

    self.startTime = CFAbsoluteTimeGetCurrent();

    kdebug_signpost_start(10,0,0,0,0);

    [self.audienceSession manualSwitchToNextRoom];

- (void)audienceSessionDidReceiveFirstFrame:(BLLiveRoomAudienceSession *)sender {

    LOG_V(LOG_TAG, @"--> audienceSessionDidReceiveFirstFrame");

    CFAbsoluteTime intervalTime = (CFAbsoluteTimeGetCurrent() - self.startTime);

    LOG_V(@"yzy audienceSessionDidReceiveFirstFrame", @"crop cost %f ms", intervalTime * 1000.0);

    NSLog(@"yzy audienceSessionDidReceiveFirstFrame, crop cost %f ms", intervalTime * 1000.0);

    kdebug_signpost_end(10,0,0,0,0);

- (void)audienceSessionDidReceiveFirstFrame:(BLLiveRoomAudienceSession *)sender {

    LOG_V(LOG_TAG, @"--> audienceSessionDidReceiveFirstFrame");

    CFAbsoluteTime intervalTime = (CFAbsoluteTimeGetCurrent() - self.startTime);

//    LOG_F(@"yzy audienceSessionDidReceiveFirstFrame", @"crop cost %f ms", intervalTime * 1000.0);

    NSLog(@"yzy audienceSessionDidReceiveFirstFrame, crop cost %f ms", intervalTime * 1000.0);

    kdebug_signpost_end(10,0,0,0,0);

2023.9.8

2023-09-08 11:36:36.123810+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 499.804020 ms

2023-09-08 11:36:38.542595+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 650.654078 ms

2023-09-08 11:36:40.135700+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 878.282070 ms

2023-09-08 11:36:41.520445+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 712.846041 ms

2023-09-08 11:36:42.854838+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 763.684034 ms

2023-09-08 11:36:44.289177+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 837.682962 ms

2023-09-08 11:36:45.768618+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 400.503993 ms

2023-09-08 11:36:46.838006+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 279.945016 ms

2023-09-08 11:36:48.049246+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 457.210064 ms

2023-09-08 11:36:49.076642+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 451.912045 ms

2023-09-08 11:36:50.075380+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 434.162021 ms

2023-09-08 11:36:52.109119+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 858.080983 ms

2023-09-08 11:36:53.588893+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 887.488008 ms

2023-09-08 11:36:55.122519+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 854.179025 ms

2023-09-08 11:36:56.185610+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 383.866072 ms

平均值 622.8ms

2023-09-08 11:37:02.422727+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 753.214002 ms

2023-09-08 11:37:03.886711+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 592.935085 ms

2023-09-08 11:37:05.189053+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 746.762991 ms

2023-09-08 11:37:07.093843+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 724.659085 ms

2023-09-08 11:37:08.432828+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 780.858994 ms

2023-09-08 11:37:09.887313+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 701.279044 ms

2023-09-08 11:37:10.999168+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 539.649010 ms

2023-09-08 11:37:15.025085+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 736.021042 ms

2023-09-08 11:37:18.559028+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 815.762043 ms

2023-09-08 11:37:19.595903+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 426.447034 ms

2023-09-08 11:37:21.136916+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 577.085018 ms

2023-09-08 11:37:22.472367+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 395.816922 ms

2023-09-08 11:37:23.942320+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 405.305028 ms

2023-09-08 11:37:25.463045+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 419.581056 ms

2023-09-08 11:37:26.915746+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 696.431041 ms

2023-09-08 11:37:28.139062+0800 bigoshow[10792:1008134] yzy audienceSessionDidReceiveFirstFrame, crop cost 546.960950 ms

平均值 615.625ms

2023-09-08 14:21:56.898567+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 643.620014 ms

2023-09-08 14:21:57.992731+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 397.804976 ms

2023-09-08 14:21:59.095014+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 489.861012 ms

2023-09-08 14:22:00.228173+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 549.648046 ms

2023-09-08 14:22:01.225412+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 397.017956 ms

2023-09-08 14:22:02.257174+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 378.704906 ms

2023-09-08 14:22:03.288591+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 367.837071 ms

2023-09-08 14:22:04.324049+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 419.139981 ms

2023-09-08 14:22:05.314705+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 442.756057 ms

2023-09-08 14:22:06.374523+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 479.588985 ms

2023-09-08 14:22:07.433726+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 555.142999 ms

2023-09-08 14:22:08.494805+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 556.848049 ms

2023-09-08 14:22:09.507953+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 479.644895 ms

2023-09-08 14:22:10.768800+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 707.049966 ms

2023-09-08 14:22:11.702778+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 463.304043 ms

平均值450ms

2023-09-08 14:22:13.526037+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 236.998916 ms

2023-09-08 14:22:14.777419+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 588.718057 ms

2023-09-08 14:22:15.849278+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 536.731005 ms

2023-09-08 14:22:16.864133+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 435.245991 ms

2023-09-08 14:22:18.514758+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 792.003036 ms

2023-09-08 14:22:19.950905+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 862.190008 ms

2023-09-08 14:22:21.680672+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 751.704931 ms

2023-09-08 14:22:22.750110+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 494.029045 ms

2023-09-08 14:22:24.039149+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 576.789021 ms

2023-09-08 14:22:25.656717+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 427.561998 ms

2023-09-08 14:22:26.629123+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 449.980974 ms

2023-09-08 14:22:27.560486+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 437.646031 ms

2023-09-08 14:22:28.409647+0800 bigoshow[11793:1060488] yzy audienceSessionDidReceiveFirstFrame, crop cost 337.007046 ms

Hou

2023-09-08 11:41:45.889268+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 759.627938 ms

2023-09-08 11:41:47.429109+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 542.616963 ms

2023-09-08 11:41:49.084510+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 454.779983 ms

2023-09-08 11:41:50.414091+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 427.350044 ms

2023-09-08 11:41:51.722314+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 619.318008 ms

2023-09-08 11:41:52.704301+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 401.368022 ms

2023-09-08 11:41:53.735739+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 455.160975 ms

2023-09-08 11:41:54.666710+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 379.750013 ms

2023-09-08 11:41:55.493327+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 263.494015 ms

2023-09-08 11:41:56.538289+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 351.856947 ms

2023-09-08 11:41:58.373685+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 761.011004 ms

2023-09-08 11:41:59.847568+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 809.913993 ms

2023-09-08 11:42:09.605716+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 841.233015 ms

2023-09-08 11:42:10.618112+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 262.873054 ms

2023-09-08 11:42:12.474214+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 485.576034 ms

平均值 520.53ms

2023-09-08 11:42:13.612080+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 474.519014 ms

2023-09-08 11:42:14.455443+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 234.189987 ms

2023-09-08 11:42:16.119173+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 951.807022 ms

2023-09-08 11:42:17.740859+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 892.992020 ms

2023-09-08 11:42:18.887052+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 438.932896 ms

2023-09-08 11:42:20.122216+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 458.092093 ms

2023-09-08 11:42:21.423860+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 686.210990 ms

2023-09-08 11:42:23.290636+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 842.623949 ms

2023-09-08 11:42:29.572967+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 467.638016 ms

2023-09-08 11:43:39.324382+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 448.827028 ms

2023-09-08 11:43:41.240860+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 421.967983 ms

2023-09-08 11:43:42.597857+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 412.521958 ms

2023-09-08 11:43:43.996786+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 727.550983 ms

2023-09-08 11:43:45.113574+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 577.729940 ms

2023-09-08 11:43:46.231780+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 478.995919 ms

2023-09-08 11:43:47.398058+0800 bigoshow[10836:1012749] yzy audienceSessionDidReceiveFirstFrame, crop cost 645.390034 ms

平均值 571.875ms

2023-09-08 14:08:58.821676+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 251.397967 ms

2023-09-08 14:08:59.843825+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 339.694023 ms

2023-09-08 14:09:01.087374+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 683.562040 ms

2023-09-08 14:09:01.886185+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 448.914886 ms

2023-09-08 14:09:03.285204+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 871.213913 ms

2023-09-08 14:09:04.275932+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 528.821945 ms

2023-09-08 14:09:05.269458+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 365.310907 ms

2023-09-08 14:09:06.451515+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 480.715990 ms

2023-09-08 14:09:07.409084+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 405.031919 ms

2023-09-08 14:09:08.819284+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 788.584948 ms

2023-09-08 14:09:10.282259+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 860.802889 ms

2023-09-08 14:09:11.297347+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 362.846971 ms

2023-09-08 14:09:12.684929+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 263.762951 ms

2023-09-08 14:09:13.891376+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 503.641009 ms

2023-09-08 14:09:14.902212+0800 bigoshow[11701:1054415] yzy audienceSessionDidReceiveFirstFrame, crop cost 454.784989 ms

平均值 546.875ms

2023.9.26更新:

优化后:

2023-09-26 10:45:59.917704+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 717389159917.693970 ms

2023-09-26 10:46:00.793302+0800 bigoshow[4624:200449] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

3-09-26 10:46:04.327213+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 717389164327.206055 ms

2023-09-26 10:46:04.445623+0800 bigoshow[4624:200443] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

how[4624:200787] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:10.579126+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 1049.999952 ms

2023-09-26 10:46:10.710948+0800 bigoshow[4624:200338] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:12.949450+0800 bigoshow[4624:200835] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

 audienceSessionDidReceiveFirstFrame, crop cost 916.648984 ms

:16.022490+0800 bigoshow[4624:200338] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

-26 10:46:18.649834+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 1276.690960 ms

2023-09-26 10:46:23.535418+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 2478.688002 ms

+0800 bigoshow[4624:200439] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 533.150077 ms

2023-09-26 10:46:25.374281+0800 bigoshow[4624:201040] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:26.945576+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 539.949059 ms

2023-09-26 10:46:27.135000+0800 bigoshow[4624:200788] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:29.069819+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 1079.560995 ms

2023-09-26 10:46:29.098081+0800 bigoshow[4624:201037] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:31.093204+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 1229.468107 ms

2023-09-26 10:46:31.275945+0800 bigoshow[4624:201035] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:33.161211+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 830.417037 ms

2023-09-26 10:46:33.256460+0800 bigoshow[4624:200396] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:34.434678+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 454.113007 ms

10:46:37.191244+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 517.102957 ms

2023-09-26 10:46:37.223867+0800 bigoshow[4624:200996] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:39.117631+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 1053.233027 ms

2023-09-26 10:46:39.179669+0800 bigoshow[4624:201040] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:40.591561+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 694.152951 ms

2023-09-26 10:46:40.593320+0800 bigoshow[4624:201502] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

24:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 514.449000 ms

2023-09-26 10:46:41.926083+0800 bigoshow[4624:201503] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:43.584064+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 542.587042 ms

2023-09-26 10:46:43.713656+0800 bigoshow[4624:201420] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:46.883546+0800 bigoshow[4624:201503] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

270] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

audienceSessionDidReceiveFirstFrame, crop cost 376.100063 ms

2023-09-26 10:46:52.746877+0800 bigoshow[4624:201040] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:46:54.449875+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 634.662032 ms

2023-09-26 10:46:54.452935+0800 bigoshow[4624:200920] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

LiveShowVC] --> audienceSessionDidReceiveFirstFrame

26+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 539.772987 ms

2023-09-26 10:46:58.168318+0800 bigoshow[4624:201271] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:00.687472+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 972.172976 ms

2023-09-26 10:47:01.995509+0800 bigoshow[4624:200920] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:03.287406+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 1571.419001 ms

2023-09-26 10:47:03.470985+0800 bigoshow[4624:201532] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

3-09-26 10:47:04.487478+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 478.754997 ms

2023-09-26 10:47:04.491700+0800 bigoshow[4624:201047] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:05.655577+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 489.452004 ms

2023-09-26 10:47:05.658221+0800 bigoshow[4624:201047] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:08.409833+0800 bigoshow[4624:201046] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:15.136033+0800 bigoshow[4624:201040] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:18.219861+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 1492.045999 ms

2023-09-26 10:47:18.528229+0800 bigoshow[4624:201270] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:21.160521+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 993.123055 ms

2023-09-26 10:47:21.163243+0800 bigoshow[4624:202258] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:27.143335+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 626.006961 ms

7.174563+0800 bigoshow[4624:201801] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:29.669994+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 509.063959 ms

2023-09-26 10:47:29.763044+0800 bigoshow[4624:202222] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 2023-09-26 10:47:30.871053+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 603.860974 ms

2023-09-26 10:47:30.895840+0800 bigoshow[4624:202357] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:47:31.750367+0800 bigoshow[4624:200154] yzy audienceSessionDidReceiveFirstFrame, crop cost 366.467953 ms

2023-09-26 10:47:32.080318+0800 bigoshow[4624:201801] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

优化前

2023-09-26 10:49:38.838216+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 717389378838.204956 ms

2023-09-26 10:49:39.195541+0800 bigoshow[4657:203595] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:49:41.159328+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 684.988022 ms

2023-09-26 10:49:41.166100+0800 bigoshow[4657:203525] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:49:43.228175+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 460.880041 ms

023-09-26 10:49:43.230769+0800 bigoshow[4657:203596] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:49:48.269317+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 717389388269.310913 ms

2023-09-26 10:49:48.995119+0800 bigoshow[4657:203603] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:49:51.724637+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1806.538939 ms

2023-09-26 10:49:51.791530+0800 bigoshow[4657:203828] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:49:53.700486+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1025.987983 ms

00 bigoshow[4657:203548] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:49:56.909784+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1351.451039 ms

2023-09-26 10:49:57.559922+0800 bigoshow[4657:204006] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:49:58.540786+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 799.235940 ms

2023-09-26 10:49:59.032113+0800 bigoshow[4657:204006] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:00.582303+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 563.524961 ms

2023-09-26 10:50:00.585569+0800 bigoshow[4657:203525] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:09.135619+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 610.188961 ms

452034+0800 bigoshow[4657:203601] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:11.178660+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 531.713009 ms

6_param1\",\"27716_continue_play_on\",\"27734_con_1\",\"27802_def\",\"27849_test_session\",\"27885_con\",\"27903_ajb_guard_on2\",\"28005_fix_recorder_occupy_on\",\"28058_trans_abr_iw2\",\"28085_sw265_encode_v3_def1\",\"28148_perf_test_on_ios\",\"28229_audioSession_no_preload\",\"28229_audioSession_no_preload_accu\",\"28341_short_dcd_est_off\",\"28362_mtcnn\",\"28362_mtcnn_accu\",\"28374_trans_abr_default\",\"28493_multiroom_dyn_map_def0\",\"28529_trans_abr_bbr_lt2\",\"28532_exp\",\"28632_mg_usm_def0\",\"28679_audio_sedv2_mode_ref\",\"28727_encode_helper_refactor\",\"28769_goose_openGOP_opt\",\"28990_perf_report_open\",\"29033_fec_code_adjust_exp\",\"29049_default2\",\"29084_def1\",\"29102_trans_abr_df\",\"29170_trans_abr_df1\",\"29199_venus_mtl_fbf_off\",\"29199_venus_mtl_fbf_off_accu\",\"642023-09-26 10:50:12.906230+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 937.711000 ms

023-09-26 10:50:13.145141+0800 bigoshow[4657:204059] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:15.953304+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 876.977921 ms

2023-09-26 10:50:16.193323+0800 bigoshow[4657:204058] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

how[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 542.602062 ms

2023-09-26 10:50:17.457255+0800 bigoshow[4657:203542] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:19.451270+0800 bigoshow[4657:203525] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:21.555491+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1646.404028 ms

2023-09-26 10:50:21.559272+0800 bigoshow[4657:204392] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:22.965462+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 560.337067 ms

2023-09-26 10:50:22.966722+0800 bigoshow[4657:203756] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:27.680137+0800 bigoshow[4657:204009] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1130.622983 ms

2023-09-26 10:50:32.556408+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 903.361082 ms

2023-09-26 10:50:32.605467+0800 bigoshow[4657:204454] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:33.719802+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 449.496031 ms

2023-09-26 10:50:33.728847+0800 bigoshow[4657:204743] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:34.811791+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 409.312963 ms

2023-09-26 10:50:36.370767+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 484.578967 ms

3337+0800 bigoshow[4657:204766] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:37.690572+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 553.346992 ms

2023-09-26 10:50:37.696742+0800 bigoshow[4657:204766] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:38.768882+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 442.134023 ms

2023-09-26 10:50:38.779536+0800 bigoshow[4657:204802] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 500.123978 ms

57:204586] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:41.048379+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 494.485021 ms

79+0800 bigoshow[4657:203756] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:42.633754+0800 bigoshow[4657:204766] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:43.903425+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 983.855009 ms

2023-09-26 10:50:43.973869+0800 bigoshow[4657:205019] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:44.905373+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 451.503992 ms

2023-09-26 10:50:45.096769+0800 bigoshow[4657:205012] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:46.382786+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 762.408972 ms

2023-09-26 10:50:46.670215+0800 bigoshow[4657:204766] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:47.462410+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 491.466999 ms

2023-09-26 10:50:47.512254+0800 bigoshow[4657:205020] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:48.970619+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 533.572078 ms

2023-09-26 10:50:48.973822+0800 bigoshow[4657:204743] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:50.209738+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 689.532042 ms

2023-09-26 10:50:50.215949+0800 bigoshow[4657:205024] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:51.708208+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 379.997969 ms

2023-09-26 10:50:51.853312+0800 bigoshow[4657:204743] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:52.715196+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 420.938969 ms

2023-09-26 10:50:52.765161+0800 bigoshow[4657:203542] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:54.124238+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 837.267995 ms

2023-09-26 10:50:54.410291+0800 bigoshow[4657:204586] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

audienceSessionDidReceiveFirstFrame, crop cost 742.664933 ms

2023-09-26 10:50:55.953973+0800 bigoshow[4657:205024] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:50:56.710161+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 539.556026 ms

how[4657:205284] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

    "<PullUserInfo: 0x280ce1f50> uid = 1544583287, grade = 30, contribution = 0, enterTimestamp = 1695694093432, otherInfo = {\n    beanGrade = 15;\n    \"bind_status\" = 0;\n    data1 = \"http://gdl.bigo.sg/as/like/2s1/04vGaq.jpg\";\n    data2 = \"{\\\"bigUrl\\\":\\\"http://gdl.bigo.sg/as/like/2s1/04vGaq.jpg\\\",\\\"gender\\\":\\\"1\\\"}\";\n    data4 = \"{\\\"st\\\":\\\"\\Ud83d\\Udccd| Indonesia \\Ud83c\\Uddee\\Ud83c\\Udde9\\Ud83c\\Udf1f Part of #JBBInsider, @geng.glowing\\\"}\";\n    ident = 1;\n    loc = \"\";\n    log2023-09-26 10:50:57.845579+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 590.535998 ms

2023-09-26 10:50:59.931577+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 910.120964 ms

2023-09-26 10:51:00.185771+0800 bigoshow[4657:205283] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:02.952367+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1791.221976 ms

2023-09-26 10:51:03.542090+0800 bigoshow[4657:205020] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:04.310005+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 795.188904 ms

2023-09-26 10:51:04.783206+0800 bigoshow[4657:205020] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:06.138969+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1243.999958 ms

2023-09-26 10:51:06.149124+0800 bigoshow[4657:205459] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:07.473901+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 651.651978 ms

800 bigoshow[4657:205499] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:09.037111+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 942.273021 ms

howVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:11.258923+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 697.209954 ms

2023-09-26 10:51:11.260923+0800 bigoshow[4657:205501] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:12.911370+0800 bigoshow[4657:205410] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:14.650269+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 904.970050 ms

2023-09-26 10:51:15.158605+0800 bigoshow[4657:205410] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:16.095645+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 806.995034 ms

2023-09-26 10:51:16.099991+0800 bigoshow[4657:205472] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:18.432493+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 427.466989 ms

2023-09-26 10:51:18.660941+0800 bigoshow[4657:205284] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2\",\"28005_fix_recorder_occupy_on\",\"28058_trans_abr_iw2\",\"28085_sw265_encode_v3_def1\",\"28148_perf_test_on_ios\",\"28229_audioSession_no_preload\",\"28229_audioSession_no_preload_accu\",\"28341_short_dcd_est_off\",\"28362_mtcnn\",\"28362_mtcnn_accu\",\"28374_trans_abr_default\",\"28493_multiroom_dyn_map_def0\",\"28529_trans_abr_bbr_lt2\",\"28532_exp\",\"28632_mg_usm_def0\",\"28679_audio_sedv2_mode_ref\",\"28727_encode_helper_refactor\",\"28769_goose_openGOP_opt\",\"28990_perf_report_open\",\"29033_fec_code_adjust_exp\",\"29049_default2\",\"29084_def1\",\"29102_trans_abr_df\",\"29170_trans_abr_df1\",\"29199_venus_mtl_fbf_off\",\"29199_venus_mtl_fbf_off_accu\",\"6452_qoe_report_cn\"]}"; jailbroken = 0; "local_abflags_v2" = "{\"countrycode\":\"HK\",\"group_na2023-09-26 10:51:19.690585+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 578.621030 ms

2023-09-26 10:51:19.708734+0800 bigoshow[4657:205458] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:21.112863+0800 bigoshow[4657:205458] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:22.517639+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 938.130975 ms

2023-09-26 10:51:22.534327+0800 bigoshow[4657:204481] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

show[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1048.476100 ms

2023-09-26 10:51:24.999909+0800 bigoshow[4657:205407] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

10:51:26.144522+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 688.535929 ms

2023-09-26 10:51:26.162621+0800 bigoshow[4657:205277] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:27.930377+0800 bigoshow[4657:205876] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

7:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 734.475017 ms

how[4657:205024] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:45.572665+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 492.372990 ms

2023-09-26 10:51:45.604644+0800 bigoshow[4657:206049] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:46.621672+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 441.738009 ms

2023-09-26 10:51:46.825027+0800 bigoshow[4657:205024] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:47.808644+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 585.213065 ms

2023-09-26 10:51:47.816795+0800 bigoshow[4657:206057] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:48.760151+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 404.284000 ms

2023-09-26 10:51:48.923484+0800 bigoshow[4657:206049] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:49.720654+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 446.732044 ms

6 10:51:51.307791+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1017.567992 ms

2023-09-26 10:51:52.310839+0800 bigoshow[4657:206053] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:53.668940+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1261.492968 ms

2023-09-26 10:51:54.048775+0800 bigoshow[4657:206053] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:54.551579+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 378.144979 ms

2023-09-26 10:51:54.867760+0800 bigoshow[4657:206053] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:51:56.159845+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 935.683012 ms

2023-09-26 10:51:56.206865+0800 bigoshow[4657:206054] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

3303] yzy audienceSessionDidReceiveFirstFrame, crop cost 936.053038 ms

2023-09-26 10:51:58.017575+0800 bigoshow[4657:206050] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

023-09-26 10:51:58.980757+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 606.156945 ms

2023-09-26 10:51:58.982213+0800 bigoshow[4657:206053] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:00.655798+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 532.708049 ms

--> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:02.371540+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 473.440051 ms

2023-09-26 10:52:02.509288+0800 bigoshow[4657:206175] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:03.800053+0800 bigoshow[4657:206049] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:05.035497+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 937.675953 ms

2023-09-26 10:52:05.134086+0800 bigoshow[4657:206175] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

:52:06.707020+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 942.389011 ms

2023-09-26 10:52:06.731395+0800 bigoshow[4657:206237] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:08.054885+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 813.927054 ms

how[4657:206592] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

\\"data3\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hd\\\\/0vkdL2_1.jpg?type=20\\\",\\\"data2\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hd\\\\/0rgY37_1.jpg?type=20\\\",\\\"data1\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hd\\\\/2yfGN4_1.jpg?type=20\\\",\\\"data4\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hd\\\\/0tibdn_1.jpg?type=20\\\"}\";\n    \"bind_status\" = 49;\n    \"cert_list_ok\" = \"[\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\"]\";\n    \"cert_list_result\" = \"[{},{},{},{},{}]\";\n    \"cert2023-09-26 10:52:09.332783+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 484.538078 ms

2023-09-26 10:52:09.486432+0800 bigoshow[4657:205024] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:12.059922+0800 bigoshow[4657:206049] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:13.718276+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 461.066008 ms

51291+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 559.191942 ms

[WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:18.759383+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 732.769966 ms

2023-09-26 10:52:18.767378+0800 bigoshow[4657:206777] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:20.347068+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1098.473907 ms

howVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:21.830752+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 962.025046 ms

2023-09-26 10:52:21.989734+0800 bigoshow[4657:206049] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:23.036212+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 544.252992 ms

2023-09-26 10:52:23.040643+0800 bigoshow[4657:206591] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:24.716660+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1051.020026 ms

2023-09-26 10:52:24.719976+0800 bigoshow[4657:206849] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:26.793133+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1267.374039 ms

2023-09-26 10:52:26.962057+0800 bigoshow[4657:206856] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:28.283255+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 891.600013 ms

2023-09-26 10:52:28.608800+0800 bigoshow[4657:206849] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:31.344541+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1195.343971 ms

2023-09-26 10:52:33.359090+0800 bigoshow[4657:206849] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1245.025039 ms

2023-09-26 10:52:34.684853+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 385.098934 ms

2023-09-26 10:52:34.850269+0800 bigoshow[4657:206849] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:35.338106+0800 bigoshow[4657:206849] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

6 10:52:36.663512+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 490.212083 ms

2023-09-26 10:52:36.910324+0800 bigoshow[4657:206849] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

] yzy audienceSessionDidReceiveFirstFrame, crop cost 453.534007 ms

2023-09-26 10:52:39.386630+0800 bigoshow[4657:207054] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:40.384214+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 434.674025 ms

2023-09-26 10:52:41.518466+0800 bigoshow[4657:207064] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

023-09-26 10:52:42.770705+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 394.407988 ms

2023-09-26 10:52:42.848344+0800 bigoshow[4657:207064] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

[WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:45.582830+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1149.904966 ms

2023-09-26 10:52:45.914623+0800 bigoshow[4657:206778] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

023-09-26 10:52:46.926201+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 813.848019 ms

2023-09-26 10:52:47.337929+0800 bigoshow[4657:206778] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:48.159277+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 599.282980 ms

2023-09-26 10:52:48.452487+0800 bigoshow[4657:207255] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 10:52:51.705141+0800 bigoshow[4657:203303] yzy audienceSessionDidReceiveFirstFrame, crop cost 1171.323061 ms

2023-09-26 10:52:52.021806+0800 bigoshow[4657:206949] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

第二次 优化前:audienceSessionDidReceiveFirstFrame, crop cost 493.752003 ms

2023-09-26 14:39:57.612248+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 348.846912 ms

7586_param1\",\"27716_continue_play_on\",\"27716_continue_play_on_accu\",\"27734_con_1\",\"27802_def\",\"27849_test_session\",\"27885_con\",\"27903_ajb_guard_on2\",\"28005_fix_recorder_occupy_on\",\"28058_trans_abr_iw2\",\"28085_sw265_encode_v3_def1\",\"28148_perf_t2023-09-26 14:39:58.768432+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 444.720984 ms

ory_opt_v2_CTRL\",\"17368_virtual_pk_encode_def\",\"17517_group_0\",\"17527_ios_game_opt\",\"17546_new_sdk\",\"17546_new_sdk_accu\",\"17752_group_0\",\"17752_group_0_accu\",\"17813_nv12_block_off\",\"18193_pacing_queue_manage_on\",\"18289_ios_tex_hw_dec_close\",\"18674_stat_slice_upload_on\",\"19079_fix_hw_encode_def\",\"19115_iOS_g265_replace_opt\",\"19189_voice_stuck_stat_on\",\"19279_optim_loss_cal_on\",\"19468_hwenc_param_opt_off\",\"19488_short_video_long_def\",\"19648_auto_release_explore\",\"19648_auto_release_explore_accu\",\"19655_brtpArq_on\",\"19711_ios_split_dat_fix_close\",\"19938_disable_pacing_off\2023-09-26 14:39:59.990050+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 376.270056 ms

opt\",\"22072_initial_bwe_b3\",\"22080_show_web_game\",\"22105_increase_speed_opt\",\"22278_high_coderate_open\",\"22340_brtp_on_bwe_on\",\"22344_audio_aec_saf_opt_close\",\"22450_fix_call_back_crash_opt\",\"22470_down_arq_limit_opt_on\",\"22476_default\",\"22689_longvideo_prelevel_opt3\",\"22708_al2023-09-26 14:40:01.618718+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 361.904025 ms

2023-09-26 14:40:05.310842+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 425.109029 ms

2023-09-26 14:40:19.413873+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 671.038985 ms

2023-09-26 14:40:20.568385+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 469.703078 ms

2023-09-26 14:40:21.576280+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 450.950027 ms

2023-09-26 14:40:22.460740+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 361.748934 ms

2023-09-26 14:40:23.544238+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 484.264016 ms

05] yzy audienceSessionDidReceiveFirstFrame, crop cost 347.134948 ms

2023-09-26 14:40:25.537790+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 338.822007 ms

2023-09-26 14:40:27.097014+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 371.951938 ms

2023-09-26 14:40:28.548767+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 439.908028 ms

2023-09-26 14:40:30.790122+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 823.848009 ms

2023-09-26 14:40:32.025930+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 565.658927 ms

2023-09-26 14:40:33.708669+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 408.892035 ms

2023-09-26 14:40:34.607884+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 291.357994 ms

goshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 408.036947 ms

2023-09-26 14:40:36.969937+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 744.120002 ms

2023-09-26 14:40:38.497861+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 981.211901 ms

    videoWidth = 720;2023-09-26 14:40:40.088829+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 905.023098 ms

2023-09-26 14:40:42.094660+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 410.891056 ms

2023-09-26 14:46:00.435082+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 1451.508045 ms

\",\"19711_ios_split_dat_fix_close\",\"19938_disable_pacing_off\",\"20520_pk_opt\",\"20826_broadcaster_mirror_ori\",\"21031_reduce_neteq_delay_1\",\"21732_audio_sed_mode_exp\",\"21808_audio_pipeline_opt\",\"22072_initial_bwe_b3\",\"22080_show_web_game\",\"22105_increase_speed_opt\",\"22278_high_coderate_open\",\"22340_brtp_on_bwe_on\",\"22344_audio_aec_saf_opt_close\",\"22450_fix_call_back_crash_opt\",\"22470_down_arq_limit_opt_on\",\"22476_default\",\"22689_longvideo_prelevel_opt3\",\"22708_all\",\"22771_new\",\"23004_cancel_strategy_opt2\",\"23029_nm_ednet_opt_clos2023-09-26 14:46:02.898017+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 590.620995 ms

6:04.494607+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 540.309906 ms

2023-09-26 14:46:06.424959+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 307.453036 ms

2023-09-26 14:46:07.852253+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 367.661953 ms

2023-09-26 14:46:09.426984+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 835.878015 ms

2023-09-26 14:46:11.042595+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 924.275041 ms

2023-09-26 14:46:13.916936+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 692.021012 ms

2023-09-26 14:46:15.710400+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 508.960962 ms

2023-09-26 14:46:16.844738+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 559.961081 ms

023-09-26 14:46:17.876034+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 450.317025 ms

2023-09-26 14:46:19.453712+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 1045.014024 ms

2023-09-26 14:46:20.729941+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 708.007932 ms

2023-09-26 14:46:21.778685+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 543.390036 ms

2023-09-26 14:49:47.379827+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 665.441036 ms2023-09-26 14:53:46.348672+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 470.386982 ms

2023-09-26 14:53:48.424279+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 729.050994 ms

2023-09-26 14:53:50.346351+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 617.721081 ms

2023-09-26 14:53:51.417243+0800 bigoshow[5726:260605] yzy audienceSessionDidReceiveFirstFrame, crop cost 520.196915 ms

493 + 

第二次 优化后:

2023-09-26 11:03:47.986817+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 717390227986.812012 ms

47.994309+0800 bigoshow[4767:216124] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:03:53.431430+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 717390233431.416992 ms

[4767:216209] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:03:54.613736+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 414.827943 ms

2023-09-26 11:03:54.787183+0800 bigoshow[4767:216124] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:03:56.266473+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 934.599042 ms

2023-09-26 11:03:56.268356+0800 bigoshow[4767:216117] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:03:59.232775+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1151.128054 ms

2023-09-26 11:03:59.237035+0800 bigoshow[4767:216183] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:01.220657+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1121.729016 ms

2023-09-26 11:04:01.229446+0800 bigoshow[4767:216214] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

09-26 11:04:04.699578+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1171.463013 ms

2023-09-26 11:04:04.751675+0800 bigoshow[4767:216212] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:07.495319+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1602.771997 ms

2023-09-26 11:04:08.420039+0800 bigoshow[4767:216212] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:10.517312+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1735.171914 ms

2023-09-26 11:04:10.519995+0800 bigoshow[4767:216123] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:13.232611+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1856.606007 ms

2023-09-26 11:04:13.539170+0800 bigoshow[4767:216182] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:15.918455+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1926.009893 ms

2023-09-26 11:04:15.950483+0800 bigoshow[4767:216123] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

7.214220+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 570.831895 ms

2023-09-26 11:04:17.506852+0800 bigoshow[4767:216805] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:20.506203+0800 bigoshow[4767:216674] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:22.492998+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1910.333991 ms

2023-09-26 11:04:22.499188+0800 bigoshow[4767:216673] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:24.495186+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1235.321045 ms

2023-09-26 11:04:24.497575+0800 bigoshow[4767:216214] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:26.153428+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 770.120025 ms

2023-09-26 11:04:26.329553+0800 bigoshow[4767:216984] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:27.919226+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 419.553041 ms

2023-09-26 11:04:28.026734+0800 bigoshow[4767:216802] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:29.737205+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 377.619028 ms

2023-09-26 11:04:30.179145+0800 bigoshow[4767:216182] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:31.119797+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 619.987965 ms

2023-09-26 11:04:31.278992+0800 bigoshow[4767:216211] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

6+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 388.018012 ms

2023-09-26 11:04:32.265293+0800 bigoshow[4767:216674] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:33.030789+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 478.351951 ms

2023-09-26 11:04:33.032044+0800 bigoshow[4767:216235] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:34.185695+0800 bigoshow[4767:216114] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:35.154484+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 520.717978 ms

2023-09-26 11:04:35.156712+0800 bigoshow[4767:216803] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:36.115496+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 481.020927 ms

2023-09-26 11:04:36.293408+0800 bigoshow[4767:216675] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

dk_accu\",\"17752_group_0\",\"17752_group_0_accu\",\"17813_nv12_block_off\",\"18193_pacing_queue_manage_on\",\"18289_ios_tex_hw_dec_close\",\"18674_stat_slice_upload_on\",\"19079_fix_hw_encode_def\",\"19115_iOS_g265_replace_opt\",\"19189_voice_stuck_stat_on\",\"19279_optim_loss_cal_on\",\"19468_hwenc_param_opt_off\",\"19488_short_video_long_def\",\"19648_auto_release_explore\",\"19648_auto_rel2023-09-26 11:04:38.237988+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 870.928049 ms

2023-09-26 11:04:38.271098+0800 bigoshow[4767:216114] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

7+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 805.492997 ms

2023-09-26 11:04:40.560590+0800 bigoshow[4767:216114] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:41.711534+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 418.452978 ms

2023-09-26 11:04:43.303272+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 519.299030 ms

2023-09-26 11:04:43.372529+0800 bigoshow[4767:216601] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

26 11:04:44.265510+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 405.547023 ms

2023-09-26 11:04:44.361428+0800 bigoshow[4767:216675] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:45.217039+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 432.829022 ms

2023-09-26 11:04:45.250237+0800 bigoshow[4767:216675] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:46.324588+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 524.003983 ms

2023-09-26 11:04:46.326860+0800 bigoshow[4767:217355] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:47.904098+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 776.879072 ms

2023-09-26 11:04:47.911850+0800 bigoshow[4767:216801] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:49.483164+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1099.021912 ms

2023-09-26 11:04:49.801606+0800 bigoshow[4767:217355] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:51.702398+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1341.457963 ms

2023-09-26 11:04:52.065592+0800 bigoshow[4767:217355] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:53.119853+0800 bigoshow[4767:217354] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

800 bigoshow[4767:216235] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:04:56.213991+0800 bigoshow[4767:217356] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

59.581706+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 462.628007 ms

2023-09-26 11:05:00.994172+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 709.645033 ms

2023-09-26 11:05:00.997791+0800 bigoshow[4767:217736] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

opt\",\"26500_no_hit_time_limit\",\"26508_enable_mfo\",\"26508_enable_mfo_accu\",\"26519_bv2023-09-26 11:05:02.476658+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 458.072066 ms

2023-09-26 11:05:02.545011+0800 bigoshow[4767:217577] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:03.770052+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 408.887029 ms

2023-09-26 11:05:03.771457+0800 bigoshow[4767:216114] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:05.248601+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 437.472939 ms

2023-09-26 11:05:05.278276+0800 bigoshow[4767:216602] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 410.683990 ms

2023-09-26 11:05:06.386169+0800 bigoshow[4767:216114] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:07.307582+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 445.927024 ms

2023-09-26 11:05:07.312058+0800 bigoshow[4767:217078] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

23-09-26 11:05:08.254615+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 435.873032 ms

873+0800 bigoshow[4767:217577] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:09.919821+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1091.438055 ms

2023-09-26 11:05:09.990489+0800 bigoshow[4767:217574] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:11.232133+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 746.815920 ms

2023-09-26 11:05:11.365426+0800 bigoshow[4767:216387] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:12.607625+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 605.230927 ms

2023-09-26 11:05:12.614242+0800 bigoshow[4767:217356] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:14.464258+0800 bigoshow[4767:216387] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2058+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1306.869030 ms

2023-09-26 11:05:16.568680+0800 bigoshow[4767:217574] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:17.881158+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 601.865053 ms

2023-09-26 11:05:17.929489+0800 bigoshow[4767:215832] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:19.168871+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 523.695111 ms

2023-09-26 11:05:19.260075+0800 bigoshow[4767:217577] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:20.183829+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 420.801044 ms

2023-09-26 11:05:20.189748+0800 bigoshow[4767:216602] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

show[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 443.475008 ms

2023-09-26 11:05:21.737422+0800 bigoshow[4767:217356] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:23.062486+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 451.231956 ms

2023-09-26 11:05:23.063545+0800 bigoshow[4767:218029] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:24.657267+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 367.949963 ms

2023-09-26 11:05:24.826697+0800 bigoshow[4767:218164] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:26.434079+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 497.621059 ms

2023-09-26 11:05:26.436184+0800 bigoshow[4767:217577] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:28.383895+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 464.216113 ms

56170+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 386.202931 ms

2023-09-26 11:05:29.648247+0800 bigoshow[4767:217739] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:30.769324+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 365.743041 ms

oshow[4767:217739] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:31.884855+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 498.749018 ms

2023-09-26 11:05:31.886855+0800 bigoshow[4767:218263] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:32.981056+0800 bigoshow[4767:218028] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

ftesx.bigo.sg/live/4hc/1H8kd3.webp\\\"}}\";\n    \"mid_album\" = \"{\\\"data3\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hb\\\\/1eWSLk_2.jpg?type=20\\\",\\\"data2\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hd\\\\/2wBi7E_2.jpg?type=20\\\",\\\"data1\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hb\\\\/1PHD1U_2.jpg?type=20\\\",\\\"data4\\\":\\\"http:\\\\/\\\\/esx.bigo.sg\\\\/live\\\\/4hb\\\\/2VdKX0_2.jpg?type=20\\\"}\";\n    \"nick_name\" = \"\\U590f\\U6c90\";\n    \"prefer_to_know\" = \"\";\n    \"prefered_countries\" = \"\";\n    race = \"\";\n    registertime = \"2023-08-25 16:33:16\";\n    \"sex_interest\" = \"\";\n    \"small_album\" = \"{\\\"data3\\\":\\\"http:\\\\/\\\\/esx.bigo2023-09-26 11:05:33.953126+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 424.399018 ms

2023-09-26 11:05:33.997796+0800 bigoshow[4767:215832] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:35.113340+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 409.867048 ms

2023-09-26 11:05:36.340644+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 461.657047 ms

2023-09-26 11:05:36.345437+0800 bigoshow[4767:217739] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

0+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 952.813983 ms

] yzy audienceSessionDidReceiveFirstFrame, crop cost 458.317995 ms

2023-09-26 11:05:39.154900+0800 bigoshow[4767:217927] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:40.283145+0800 bigoshow[4767:218029] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:42.513712+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 767.580986 ms

2023-09-26 11:05:42.516009+0800 bigoshow[4767:215832] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

igoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 449.906945 ms

2023-09-26 11:05:44.444956+0800 bigoshow[4767:217353] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:46.060068+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1097.023964 ms

6.214101+0800 bigoshow[4767:217353] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:48.289778+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 909.880042 ms

2023-09-26 11:05:48.316849+0800 bigoshow[4767:218530] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:49.566875+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 387.048960 ms

2023-09-26 11:05:49.891087+0800 bigoshow[4767:218529] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:51.176050+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 972.383022 ms

2023-09-26 11:05:51.182507+0800 bigoshow[4767:218530] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:53.991579+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 2037.987947 ms

2023-09-26 11:05:54.020710+0800 bigoshow[4767:216602] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:55.705623+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 940.153956 ms

2023-09-26 11:05:55.984194+0800 bigoshow[4767:218028] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:05:57.525450+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 488.137960 ms

2023-09-26 11:06:00.167787+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 537.662029 ms

2023-09-26 11:06:00.270906+0800 bigoshow[4767:218530] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

69] yzy audienceSessionDidReceiveFirstFrame, crop cost 1114.241004 ms

2023-09-26 11:06:01.934111+0800 bigoshow[4767:218031] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:03.147062+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 649.866939 ms

2023-09-26 11:06:03.347172+0800 bigoshow[4767:218800] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:04.956510+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 585.200071 ms

2023-09-26 11:06:04.965990+0800 bigoshow[4767:218268] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:05.954188+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 357.316971 ms

2023-09-26 11:06:06.122238+0800 bigoshow[4767:218808] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:07.144205+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 573.112011 ms

9-26 11:06:07.235509+0800 bigoshow[4767:216602] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:08.272893+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 618.481994 ms

2023-09-26 11:06:08.366153+0800 bigoshow[4767:218808] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:09.260179+0800 bigoshow[4767:218029] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:10.297683+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 550.040007 ms

2023-09-26 11:06:10.474337+0800 bigoshow[4767:218813] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:11.335882+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 531.564951 ms

2023-09-26 11:06:11.337896+0800 bigoshow[4767:217353] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:12.786928+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 939.340949 ms

ShowVC] --> audienceSessionDidReceiveFirstFrame

69] yzy audienceSessionDidReceiveFirstFrame, crop cost 1353.507042 ms

2023-09-26 11:06:17.468909+0800 bigoshow[4767:218810] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

zy audienceSessionDidReceiveFirstFrame, crop cost 1155.554056 ms

wVC] --> audienceSessionDidReceiveFirstFrame

569] yzy audienceSessionDidReceiveFirstFrame, crop cost 549.807072 ms

2023-09-26 11:06:20.405882+0800 bigoshow[4767:218810] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:21.316499+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 644.748092 ms

2023-09-26 11:06:21.322511+0800 bigoshow[4767:219093] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:22.549882+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 668.120980 ms

2023-09-26 11:06:22.551799+0800 bigoshow[4767:219093] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:23.779630+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 524.361014 ms

2023-09-26 11:06:23.782318+0800 bigoshow[4767:217353] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:24.818014+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 459.495068 ms

2023-09-26 11:06:25.065977+0800 bigoshow[4767:217353] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:25.790811+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 419.080019 ms

2023-09-26 11:06:25.975370+0800 bigoshow[4767:219094] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:26.743741+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 421.429038 ms

2023-09-26 11:06:26.870247+0800 bigoshow[4767:219195] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

1:06:27.734158+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 469.357967 ms

2023-09-26 11:06:28.043923+0800 bigoshow[4767:218801] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:28.725010+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 475.944996 ms

2023-09-26 11:06:28.969294+0800 bigoshow[4767:219094] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:29.753909+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 638.756037 ms

2023-09-26 11:06:29.755431+0800 bigoshow[4767:218812] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

eShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:31.660222+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 504.518986 ms

2023-09-26 11:06:31.722179+0800 bigoshow[4767:219335] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:32.618562+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 463.137984 ms

2023-09-26 11:06:34.450319+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 602.059960 ms

2023-09-26 11:06:34.451520+0800 bigoshow[4767:218699] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:35.333744+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 418.440938 ms

2023-09-26 11:06:35.418031+0800 bigoshow[4767:218810] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:36.375488+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 586.646080 ms

2023-09-26 11:06:36.377490+0800 bigoshow[4767:218812] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

5569] yzy audienceSessionDidReceiveFirstFrame, crop cost 457.635999 ms

2023-09-26 11:06:37.238652+0800 bigoshow[4767:218801] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:38.154264+0800 bigoshow[4767:218810] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:40.323128+0800 bigoshow[4767:219435] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:41.905479+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1123.165965 ms

2023-09-26 11:06:43.167280+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 672.514915 ms

2023-09-26 11:06:43.399964+0800 bigoshow[4767:219091] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:44.069955+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 496.889949 ms

2023-09-26 11:06:45.167267+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 611.277938 ms

2023-09-26 11:06:45.296350+0800 bigoshow[4767:219093] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:46.207033+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 525.037050 ms

2023-09-26 11:06:46.209034+0800 bigoshow[4767:218810] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:47.137787+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 514.994025 ms

2023-09-26 11:06:47.552051+0800 bigoshow[4767:219216] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:48.463468+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 855.970979 ms

2023-09-26 11:06:48.822026+0800 bigoshow[4767:219216] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:49.335527+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 512.725949 ms

2023-09-26 11:06:49.483853+0800 bigoshow[4767:219216] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:50.187742+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 381.369948 ms

2023-09-26 11:06:50.398231+0800 bigoshow[4767:218810] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:51.303653+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 547.327995 ms

2023-09-26 11:06:51.313984+0800 bigoshow[4767:218810] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

audienceSessionDidReceiveFirstFrame, crop cost 368.510962 ms

-09-26 11:06:52.271189+0800 bigoshow[4767:219196] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:53.098888+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 449.630022 ms

2023-09-26 11:06:53.328065+0800 bigoshow[4767:219590] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:53.954988+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 397.974968 ms

2023-09-26 11:06:54.142796+0800 bigoshow[4767:219437] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:54.956228+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 589.604974 ms

owVC] --> audienceSessionDidReceiveFirstFrame

1:06:55.744366+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 660.807967 ms

2023-09-26 11:06:55.808061+0800 bigoshow[4767:218812] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:56.150014+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 243.206024 ms

2023-09-26 11:06:56.426940+0800 bigoshow[4767:219589] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame

2023-09-26 11:06:57.910070+0800 bigoshow[4767:215569] yzy audienceSessionDidReceiveFirstFrame, crop cost 1177.234054 ms

2023-09-26 11:06:57.975060+0800 bigoshow[4767:219091] [V][WatchLiveShowVC] --> audienceSessionDidReceiveFirstFrame


http://www.niftyadmin.cn/n/5139876.html

相关文章

利用chatgpt大语言模型来做数据预处理

数据预处理是机器学习中的一个重要步骤&#xff0c;包括数据清洗、数据转换、特征选择等。这些步骤通常需要人工进行&#xff0c;或者使用专门的数据预处理工具和库&#xff0c;如Python的Pandas库、Scikit-learn库等。 今天我们将利用chatgpt(国内版本-小策智能问答)的辅助帮…

uniapp 关于 video 组件的缩放比例问题

在 container 样式的 padding-bottom 设置比例值 9/16 比例值&#xff1a;56.25% 3/4 比例值&#xff1a;75% <view class"container"><video class"video-box" src"xxx.mp4" /> </view> .container {position: relative;wid…

KnowledgeGPT:利用检索和存储访问知识库上增强大型语言模型10.30

利用检索和存储访问知识库上增强大型语言模型 摘要引言2 相关研究3方法3.1 任务定义3.2 知识检索3.2.1 代码实现3.2.2 实体链接3.2.3 获取实体信息3.2.4 查找实体或值3.2.5 查找关系 3.3 知识存储 4 实验 摘要 大型语言模型&#xff08;LLM&#xff09;在自然语言处理领域展现…

关于CSS的几种字体悬浮的设置方法

关于CSS的几种字体悬浮的设置方法 1. 鼠标放上动态的2. 静态的&#xff08;位置看上悬浮&#xff09;2.1 参考QQ邮箱2.2 参考知乎 1. 鼠标放上动态的 效果如下&#xff1a; 代码如下&#xff1a; <!DOCTYPE html> <html lang"en"> <head><met…

MySQL分布式架构设计与实现

随着互联网的快速发展&#xff0c;数据量呈现爆炸式增长的趋势。传统的单机数据库已经无法满足大规模数据处理的需求&#xff0c;因此分布式数据库成为了一种重要的解决方案。本文将介绍MySQL分布式架构的设计与实现&#xff0c;包括数据分片、负载均衡和故障恢复等方面的内容&…

mysql中日期的加减 date_add()、date_sub() 函数

一、说明 DATE_ADD() &#xff1a;从日期增加指定的时间间隔&#xff0c;返回的是一个字符串 DATE_ADD(date,INTERVAL expr type) date 参数是合法的日期表达式。expr 参数是您希望添加的时间间隔。 type 参数可以是下列值 二、使用 now() //now函数为获取当前时间 sele…

商城小程序开发流程详解:一步步打造专属电商应用

​随着移动互联网的普及&#xff0c;电商行业也迅速发展起来。而商城小程序作为电商行业中的一种新形式&#xff0c;越来越受到企业和个人的关注。那么&#xff0c;如何开发一款专属的商城小程序呢&#xff1f;下面给大家介绍商城小程序的开发流程&#xff0c;帮助大家一步步打…

LuatOS-SOC接口文档(air780E)--mlx90640 - 红外测温(MLX90640)

常量# 常量 类型 解释 mlx90640.FPS1HZ number FPS1HZ mlx90640.FPS2HZ number FPS2HZ mlx90640.FPS4HZ number FPS4HZ mlx90640.FPS8HZ number FPS8HZ mlx90640.FPS16HZ number FPS16HZ mlx90640.FPS32HZ number FPS32HZ mlx90640.FPS64HZ number FPS6…