GstSystemClock

GstSystemClock — Default clock that uses the current system time

Synopsis


#include <gst/gst.h>


            GstSystemClock;
GstClock*   gst_system_clock_obtain         (void);

Description

The System clock is an implementation of GstClock using the system time.

Details

GstSystemClock

typedef struct {
  GstClock 	 clock;
} GstSystemClock;


gst_system_clock_obtain ()

GstClock*   gst_system_clock_obtain         (void);

Get a handle to the default system clock. The refcount of the clock will be increased so you need to unref the clock after usage.

Returns : the default clock. MT safe.

See Also

GstClock