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:
Sebastian Dröge 2015-06-18 14:29:33 +02:00
parent ade625111e
commit 26396bfac2

View file

@ -488,7 +488,7 @@ gst_amc_jni_detach_current_thread (void *env)
GST_DEBUG ("Detaching thread %p", g_thread_self ()); GST_DEBUG ("Detaching thread %p", g_thread_self ());
if ((ret = (*java_vm)->DetachCurrentThread (java_vm)) != JNI_OK) { 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);
} }
} }