Exeldro
Active Member
@BearClaymore it looks to be a threading issue in the stream elements plugin. It creates a new thread for every change in the scene here:
github.com
which calls obs_data_get_json which is not thread safe. A solution would be running the code queued on a single thread instead of on a new thread every time. An other solution would be to put a mutex around calling and using the data of obs_data_get_json.
obs-streamelements-core/streamelements/StreamElementsObsSceneManager.cpp at 506862a85a19e0e0e151c4b34bf6891acdf0148b · StreamElements/obs-streamelements-core
OBS plugin core (SE.Live). Contribute to StreamElements/obs-streamelements-core development by creating an account on GitHub.