Skip to content

x265: Fix a deadlock when failing to create the x265enc.

He Junyan requested to merge He_Junyan/gst-plugins-bad:x265_deadlock into master

The GST_ELEMENT_ERROR will call the gst_object_get_path_string and use gst_object_get_parent to get the full object path name, which needs to lock the object. But we are already in a locked context and so this will cause a deadlock, the pipeline can not exit normally.

Merge request reports