Byoungchan Lee
Byoungchan Lee
I saw other comments on [http://go/totw/203](http://go/totw/203). I wish these were made public.
I ran `$ gdb --args $HOME/.local/share/Steam/ubuntu12_32/gldriverquery` to obtain a symbolized stack trace. Here is the output: ``` (gdb) bt #0 __kernel_vsyscall () at arch/x86/entry/vdso/vdso32/system_call.S:72 #1 0xf7c4c2b7 in __pthread_kill_implementation (threadid=threadid@entry=4155410176, signo=signo@entry=6,...
I think you are referring to the case with spatial scalability. I think the case of temporal scalability is fine. For example, consider L2T3 with an input case of 30...
I never heard about Arc Browser before, but it is obviously a different browser than Chrome. I don't understand why you want to specify it as a `CHROME_EXECUTABLE`. Even though...
Hi, I also encountered this problem related to the latency field. I found a workaround by adjusting the Latency field with `TickInUsec()`. However, I noticed that there was a `time2Tick(latency)`...
It seems that [vscode-catch2-test-adapter](https://github.com/matepek/vscode-catch2-test-adapter) extensions does the job. Minimal `.vscode/settings.json`: ```json { "testMate.cpp.test.advancedExecutables": [ { "pattern": "out/host_debug_unopt/*unittests" } ] } ``` Result: 
When I set TextStyle with a custom font family like `GoogleFonts.notoSansKr()` (obtained from [google_fonts](https://pub.dev/packages/google_fonts)), it renders correctly. However, it's strange that the default TextStyle on Linux Arm64 cannot render CJK...
I believe preparing the codebase for the transition to GTK 4.0 is a good idea. However, directly mixing GTK 3.0 and 4.0 in the same codebase isn't feasible. Here are...
In my opinion, per-layer (spatial or temporal) stats require a lot of work. Let's start with the simplest one. For example, how about adding three fields to `RTCOutboundRTPStreamStats`? `spatialLayerCount`: For...
Yes, it was only after I wrote the comment and uploaded my CL that I realized that there is a similar CL. I'll wait for the changes to `RTCOutboundRtpStreamStats.scalabilityMode` to...