Home
last modified time | relevance | path

Searched refs:GstPromiseImpl (Results 1 – 1 of 1) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgstpromise.c94 #define GST_PROMISE_REPLY(p) (((GstPromiseImpl *)(p))->reply)
95 #define GST_PROMISE_RESULT(p) (((GstPromiseImpl *)(p))->result)
96 #define GST_PROMISE_LOCK(p) (&(((GstPromiseImpl *)(p))->lock))
97 #define GST_PROMISE_COND(p) (&(((GstPromiseImpl *)(p))->cond))
98 #define GST_PROMISE_CHANGE_FUNC(p) (((GstPromiseImpl *)(p))->change_func)
99 #define GST_PROMISE_CHANGE_DATA(p) (((GstPromiseImpl *)(p))->user_data)
100 #define GST_PROMISE_CHANGE_NOTIFY(p) (((GstPromiseImpl *)(p))->notify)
114 } GstPromiseImpl; typedef
341 memset (promise, 0xff, sizeof (GstPromiseImpl)); in gst_promise_free()
376 GstPromise *promise = GST_PROMISE (g_new0 (GstPromiseImpl, 1)); in gst_promise_new()