mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-13 03:46:34 +00:00
b94528f8e7
git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@60875 e3ebcda4-bce8-0310-ba0a-eca2169e7518
24 lines
328 B
C
24 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;
|
|
}
|