mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 15:36:35 +00:00
13 lines
236 B
C
13 lines
236 B
C
#include <gst/gst.h>
|
|
|
|
GstClockCallback
|
|
gstsharp_gst_clock_entry_get_func (GstClockEntry * entry)
|
|
{
|
|
return entry->func;
|
|
}
|
|
|
|
void
|
|
gstsharp_gst_clock_entry_set_func (GstClockEntry * entry, GstClockCallback func)
|
|
{
|
|
entry->func = func;
|
|
}
|