mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
introspection: add Value annotations for GST_SECOND, GST_MSECOND, GST_USECOND, GST_NSECOND constants
gobject-introspection won't parse them properly otherwise. Still need to force the right type though (either GstClockTime or guint64), but Type: xyz has no effect for me here, so someone with a newer g-i needs to test this. Some other defines are also missing, e.g. GST_CLOCK_TIME_NONE.
This commit is contained in:
parent
84e10969f4
commit
795e836ce3
1 changed files with 13 additions and 0 deletions
|
@ -81,28 +81,41 @@ typedef gpointer GstClockID;
|
|||
*/
|
||||
#define GST_CLOCK_TIME_IS_VALID(time) (((GstClockTime)(time)) != GST_CLOCK_TIME_NONE)
|
||||
|
||||
/* FIXME: still need to explicitly force types on the defines below */
|
||||
/**
|
||||
* GST_SECOND:
|
||||
*
|
||||
* Constant that defines one GStreamer second.
|
||||
*
|
||||
* Value: 1000000000
|
||||
*
|
||||
*/
|
||||
#define GST_SECOND (G_USEC_PER_SEC * G_GINT64_CONSTANT (1000))
|
||||
/**
|
||||
* GST_MSECOND:
|
||||
*
|
||||
* Constant that defines one GStreamer millisecond.
|
||||
*
|
||||
* Value: 1000000
|
||||
*
|
||||
*/
|
||||
#define GST_MSECOND (GST_SECOND / G_GINT64_CONSTANT (1000))
|
||||
/**
|
||||
* GST_USECOND:
|
||||
*
|
||||
* Constant that defines one GStreamer microsecond.
|
||||
*
|
||||
* Value: 1000
|
||||
*
|
||||
*/
|
||||
#define GST_USECOND (GST_SECOND / G_GINT64_CONSTANT (1000000))
|
||||
/**
|
||||
* GST_NSECOND:
|
||||
*
|
||||
* Constant that defines one GStreamer nanosecond
|
||||
*
|
||||
* Value: 1
|
||||
*
|
||||
*/
|
||||
#define GST_NSECOND (GST_SECOND / G_GINT64_CONSTANT (1000000000))
|
||||
|
||||
|
|
Loading…
Reference in a new issue