You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In ffmpeg_mediaplayer.c, stop() won't wait player_decode thread to end.
Sometimes JVM will free resources of player, but the player_decode thread might still be running.
Thus cause JNI crash inside player_decode.
Suggest pthread_join(state->decoder_thread as in reset().
The text was updated successfully, but these errors were encountered:
In ffmpeg_mediaplayer.c, stop() won't wait player_decode thread to end.
Sometimes JVM will free resources of player, but the player_decode thread might still be running.
Thus cause JNI crash inside player_decode.
Suggest pthread_join(state->decoder_thread as in reset().
The text was updated successfully, but these errors were encountered: