mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-04 23:46:43 +00:00
448405d86a
* gstreamer-sharp.mds: * gstreamer-sharp.mdp: Updated MonoDevelo project/solution * source/gstreamer-sharp-source.xml: Cleaned up a bit * sample/DecodeBinTranscoder.cs: Updated to reflect renaming of Clock.GstSecond to Clock.Second, etc. * gstreamer-sharp/glue/clock.c: Added gstsharp_gst_clock_get_time_none and gstsharp_gst_clock_time_is_valid * gstreamer-sharp/Clock.custom: Added bindings for new clock glue and renamed GstNSecond to NSecond (and friends) git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@62535 e3ebcda4-bce8-0310-ba0a-eca2169e7518
33 lines
521 B
C
33 lines
521 B
C
#include <glib.h>
|
|
#include <gst/gstclock.h>
|
|
|
|
guint64 gstsharp_gst_clock_get_gst_second()
|
|
{
|
|
return GST_SECOND;
|
|
}
|
|
|
|
guint64 gstsharp_gst_clock_get_gst_msecond()
|
|
{
|
|
return GST_MSECOND;
|
|
}
|
|
|
|
guint64 gstsharp_gst_clock_get_gst_usecond()
|
|
{
|
|
return GST_USECOND;
|
|
}
|
|
|
|
guint64 gstsharp_gst_clock_get_gst_nsecond()
|
|
{
|
|
return GST_NSECOND;
|
|
}
|
|
|
|
guint64 gstsharp_gst_clock_get_time_none()
|
|
{
|
|
return GST_CLOCK_TIME_NONE;
|
|
}
|
|
|
|
gboolean gstsharp_gst_clock_time_is_valid(GstClockTime time)
|
|
{
|
|
return GST_CLOCK_TIME_IS_VALID(time);
|
|
}
|
|
|