mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-13 03:46:34 +00:00
25 lines
328 B
C
25 lines
328 B
C
|
|
||
|
#include <glib.h>
|
||
|
#include <gst/gstclock.h>
|
||
|
|
||
|
|
||
|
gint64 gstsharp_gst_clock_get_gst_second ()
|
||
|
{
|
||
|
return GST_SECOND;
|
||
|
}
|
||
|
|
||
|
gint64 gstsharp_gst_clock_get_gst_msecond ()
|
||
|
{
|
||
|
return GST_MSECOND;
|
||
|
}
|
||
|
|
||
|
gint64 gstsharp_gst_clock_get_gst_usecond ()
|
||
|
{
|
||
|
return GST_USECOND;
|
||
|
}
|
||
|
|
||
|
gint64 gstsharp_gst_clock_get_gst_nsecond ()
|
||
|
{
|
||
|
return GST_NSECOND;
|
||
|
}
|