mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
splitmuxsink: do not access property variable without the object lock, use the local stack copy instead
This commit is contained in:
parent
1954726328
commit
97c03449a4
1 changed files with 1 additions and 1 deletions
|
@ -1295,7 +1295,7 @@ create_elements (GstSplitMuxSink * splitmux)
|
|||
create_element (splitmux, "mp4mux", "muxer")) == NULL)
|
||||
goto fail;
|
||||
} else {
|
||||
if (!gst_bin_add (GST_BIN (splitmux), splitmux->provided_muxer)) {
|
||||
if (!gst_bin_add (GST_BIN (splitmux), provided_muxer)) {
|
||||
g_warning ("Could not add muxer element - splitmuxsink will not work");
|
||||
gst_object_unref (provided_muxer);
|
||||
goto fail;
|
||||
|
|
Loading…
Reference in a new issue