Miłosz
Miłosz
I confirm the fix works, please merge the PR by @esilvia
It's quite important since the current version gets stuck in an infinite loop for some input data. Please merge this PR, it solves the problem.
I see. That would be great if you decide to support this. I think that being able to establish the communication between workers is quite important. Do you know of...
> Is there some reason you need to use postMessage rather than shared memory? I'm [capturing camera frames](https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrackProcessor) on the main thread and need to transfer the ownership of a...
Right, I'm copying the data for further processing in C++. However, I'm concerned about the efficiency and would like to offload work from the main thread if possible. I think...
> Why not copy the data out on the main thread? I tried this approach suggested by @sbc100 and it turns out to work quite well.
However, I'm still a bit concerned with this new approach, since I need to do some kind of synchronization (e.g. mutex) which requires blocking on the main thread (not recommended,...
@sbc100 @juj any updates on that? Is it possible to merge https://github.com/emscripten-core/emscripten/pull/20235 ?
I experienced the same problem. However, the program worked when I built and installed it from the sources.