mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
tests: mpegtsmux: port to the new GLib thread API
This commit is contained in:
parent
0b2dd2e723
commit
84cea735e9
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ pad_push (GstPad * pad, GstBuffer * buffer, GstClockTime timestamp)
|
|||
data->pad = pad;
|
||||
data->buffer = buffer;
|
||||
GST_BUFFER_TIMESTAMP (buffer) = timestamp;
|
||||
data->thread = g_thread_create (pad_push_thread, data, TRUE, NULL);
|
||||
data->thread = g_thread_try_new ("gst-check", pad_push_thread, data, NULL);
|
||||
|
||||
return data;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue