gi-gst-1.0.14: GStreamer bindings

CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria (garetxe@gmail.com)
Safe HaskellNone
LanguageHaskell2010

GI.Gst.Objects.SystemClock

Contents

Description

The GStreamer core provides a GstSystemClock based on the system time. Asynchronous callbacks are scheduled from an internal thread.

Clock implementors are encouraged to subclass this systemclock as it implements the async notification.

Subclasses can however override all of the important methods for sync and async notifications to implement their own callback methods or blocking wait operations.

Synopsis

Exported types

Methods

obtain

systemClockObtain Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> m Clock

Returns: the default clock.

MT safe.

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.

setDefault

systemClockSetDefault Source #

Arguments

:: (HasCallStack, MonadIO m, IsClock a) 
=> a

newClock: a Clock

-> m () 

Sets the default system clock that can be obtained with systemClockObtain.

This is mostly used for testing and debugging purposes when you want to have control over the time reported by the default system clock.

MT safe.

Since: 1.4

Properties

clockType