mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
androidmedia: Failing to detach a thread is not that much of a problem
Someone else might have detached it before us, so make this just normal debug output instead of a GST_ERROR()
This commit is contained in:
parent
ade625111e
commit
26396bfac2
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ gst_amc_jni_detach_current_thread (void *env)
|
|||
|
||||
GST_DEBUG ("Detaching thread %p", g_thread_self ());
|
||||
if ((ret = (*java_vm)->DetachCurrentThread (java_vm)) != JNI_OK) {
|
||||
GST_ERROR ("Failed to detach current thread: %d", ret);
|
||||
GST_DEBUG ("Failed to detach current thread: %d", ret);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue