Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
GI.Gst.Objects.Bin
Description
Bin
is an element that can contain other Element
, allowing them to be
managed as a group.
Pads from the child elements can be ghosted to the bin, see GhostPad
.
This makes the bin look like any other elements and enables creation of
higher-level abstraction elements.
A new Bin
is created with binNew
. Use a Pipeline
instead if you
want to create a toplevel bin because a normal bin doesn't have a bus or
handle clock distribution of its own.
After the bin has been created you will typically add elements to it with
binAdd
. You can remove elements with binRemove
.
An element can be retrieved from a bin with binGetByName
, using the
elements name. binGetByNameRecurseUp
is mainly used for internal
purposes and will query the parent bins when the element is not found in the
current bin.
An iterator of elements in a bin can be retrieved with
binIterateElements
. Various other iterators exist to retrieve the
elements in a bin.
objectUnref
is used to drop your reference to the bin.
The Bin
::element-added
signal is fired whenever a new element is added to
the bin. Likewise the Bin
::element-removed
signal is fired whenever an
element is removed from the bin.
Notes
A Bin
internally intercepts every Message
posted by its children and
implements the following default behaviour for each of them:
- GST_MESSAGE_EOS: This message is only posted by sinks in the PLAYING state. If all sinks posted the EOS message, this bin will post and EOS message upwards.
- GST_MESSAGE_SEGMENT_START: Just collected and never forwarded upwards. The messages are used to decide when all elements have completed playback of their segment.
- GST_MESSAGE_SEGMENT_DONE: Is posted by
Bin
when all elements that posted a SEGMENT_START have posted a SEGMENT_DONE. - GST_MESSAGE_DURATION_CHANGED: Is posted by an element that detected a change in the stream duration. The default bin behaviour is to clear any cached duration values so that the next duration query will perform a full duration recalculation. The duration change is posted to the application so that it can refetch the new duration with a duration query. Note that these messages can be posted before the bin is prerolled, in which case the duration query might fail.
- GST_MESSAGE_CLOCK_LOST: This message is posted by an element when it can no longer provide a clock. The default bin behaviour is to check if the lost clock was the one provided by the bin. If so and the bin is currently in the PLAYING state, the message is forwarded to the bin parent. This message is also generated when a clock provider is removed from the bin. If this message is received by the application, it should PAUSE the pipeline and set it back to PLAYING to force a new clock distribution.
- GST_MESSAGE_CLOCK_PROVIDE: This message is generated when an element can provide a clock. This mostly happens when a new clock provider is added to the bin. The default behaviour of the bin is to mark the currently selected clock as dirty, which will perform a clock recalculation the next time the bin is asked to provide a clock. This message is never sent tot the application but is forwarded to the parent of the bin.
- OTHERS: posted upwards.
A Bin
implements the following default behaviour for answering to a
Query
:
- GST_QUERY_DURATION:If the query has been asked before with the same format and the bin is a toplevel bin (ie. has no parent), use the cached previous value. If no previous value was cached, the query is sent to all sink elements in the bin and the MAXIMUM of all values is returned. If the bin is a toplevel bin the value is cached. If no sinks are available in the bin, the query fails.
- GST_QUERY_POSITION:The query is sent to all sink elements in the bin and the MAXIMUM of all values is returned. If no sinks are available in the bin, the query fails.
- OTHERS:the query is forwarded to all sink elements, the result of the first sink that answers the query successfully is returned. If no sink is in the bin, the query fails.
A Bin
will by default forward any event sent to it to all sink
(GST_EVENT_TYPE_DOWNSTREAM
) or source (GST_EVENT_TYPE_UPSTREAM
) elements
depending on the event type.
If all the elements return True
, the bin will also return True
, else False
is returned. If no elements of the required type are in the bin, the event
handler will return True
.
- newtype Bin = Bin (ManagedPtr Bin)
- class GObject o => IsBin o
- toBin :: (MonadIO m, IsBin o) => o -> m Bin
- noBin :: Maybe Bin
- binAdd :: (HasCallStack, MonadIO m, IsBin a, IsElement b) => a -> b -> m Bool
- binFindUnlinkedPad :: (HasCallStack, MonadIO m, IsBin a) => a -> PadDirection -> m (Maybe Pad)
- binGetByInterface :: (HasCallStack, MonadIO m, IsBin a) => a -> GType -> m Element
- binGetByName :: (HasCallStack, MonadIO m, IsBin a) => a -> Text -> m (Maybe Element)
- binGetByNameRecurseUp :: (HasCallStack, MonadIO m, IsBin a) => a -> Text -> m (Maybe Element)
- binGetSuppressedFlags :: (HasCallStack, MonadIO m, IsBin a) => a -> m [ElementFlags]
- binIterateAllByInterface :: (HasCallStack, MonadIO m, IsBin a) => a -> GType -> m (Maybe Iterator)
- binIterateElements :: (HasCallStack, MonadIO m, IsBin a) => a -> m (Maybe Iterator)
- binIterateRecurse :: (HasCallStack, MonadIO m, IsBin a) => a -> m (Maybe Iterator)
- binIterateSinks :: (HasCallStack, MonadIO m, IsBin a) => a -> m (Maybe Iterator)
- binIterateSorted :: (HasCallStack, MonadIO m, IsBin a) => a -> m (Maybe Iterator)
- binIterateSources :: (HasCallStack, MonadIO m, IsBin a) => a -> m (Maybe Iterator)
- binNew :: (HasCallStack, MonadIO m) => Maybe Text -> m Bin
- binRecalculateLatency :: (HasCallStack, MonadIO m, IsBin a) => a -> m Bool
- binRemove :: (HasCallStack, MonadIO m, IsBin a, IsElement b) => a -> b -> m Bool
- binSetSuppressedFlags :: (HasCallStack, MonadIO m, IsBin a) => a -> [ElementFlags] -> m ()
- binSyncChildrenStates :: (HasCallStack, MonadIO m, IsBin a) => a -> m Bool
- constructBinAsyncHandling :: IsBin o => Bool -> IO (GValueConstruct o)
- getBinAsyncHandling :: (MonadIO m, IsBin o) => o -> m Bool
- setBinAsyncHandling :: (MonadIO m, IsBin o) => o -> Bool -> m ()
- constructBinMessageForward :: IsBin o => Bool -> IO (GValueConstruct o)
- getBinMessageForward :: (MonadIO m, IsBin o) => o -> m Bool
- setBinMessageForward :: (MonadIO m, IsBin o) => o -> Bool -> m ()
- type BinDeepElementAddedCallback = Bin -> Element -> IO ()
- type C_BinDeepElementAddedCallback = Ptr () -> Ptr Bin -> Ptr Element -> Ptr () -> IO ()
- afterBinDeepElementAdded :: (IsBin a, MonadIO m) => a -> BinDeepElementAddedCallback -> m SignalHandlerId
- genClosure_BinDeepElementAdded :: BinDeepElementAddedCallback -> IO Closure
- mk_BinDeepElementAddedCallback :: C_BinDeepElementAddedCallback -> IO (FunPtr C_BinDeepElementAddedCallback)
- noBinDeepElementAddedCallback :: Maybe BinDeepElementAddedCallback
- onBinDeepElementAdded :: (IsBin a, MonadIO m) => a -> BinDeepElementAddedCallback -> m SignalHandlerId
- wrap_BinDeepElementAddedCallback :: BinDeepElementAddedCallback -> Ptr () -> Ptr Bin -> Ptr Element -> Ptr () -> IO ()
- type BinDeepElementRemovedCallback = Bin -> Element -> IO ()
- type C_BinDeepElementRemovedCallback = Ptr () -> Ptr Bin -> Ptr Element -> Ptr () -> IO ()
- afterBinDeepElementRemoved :: (IsBin a, MonadIO m) => a -> BinDeepElementRemovedCallback -> m SignalHandlerId
- genClosure_BinDeepElementRemoved :: BinDeepElementRemovedCallback -> IO Closure
- mk_BinDeepElementRemovedCallback :: C_BinDeepElementRemovedCallback -> IO (FunPtr C_BinDeepElementRemovedCallback)
- noBinDeepElementRemovedCallback :: Maybe BinDeepElementRemovedCallback
- onBinDeepElementRemoved :: (IsBin a, MonadIO m) => a -> BinDeepElementRemovedCallback -> m SignalHandlerId
- wrap_BinDeepElementRemovedCallback :: BinDeepElementRemovedCallback -> Ptr () -> Ptr Bin -> Ptr Element -> Ptr () -> IO ()
- type BinDoLatencyCallback = IO Bool
- type C_BinDoLatencyCallback = Ptr () -> Ptr () -> IO CInt
- afterBinDoLatency :: (IsBin a, MonadIO m) => a -> BinDoLatencyCallback -> m SignalHandlerId
- genClosure_BinDoLatency :: BinDoLatencyCallback -> IO Closure
- mk_BinDoLatencyCallback :: C_BinDoLatencyCallback -> IO (FunPtr C_BinDoLatencyCallback)
- noBinDoLatencyCallback :: Maybe BinDoLatencyCallback
- onBinDoLatency :: (IsBin a, MonadIO m) => a -> BinDoLatencyCallback -> m SignalHandlerId
- wrap_BinDoLatencyCallback :: BinDoLatencyCallback -> Ptr () -> Ptr () -> IO CInt
- type BinElementAddedCallback = Element -> IO ()
- type C_BinElementAddedCallback = Ptr () -> Ptr Element -> Ptr () -> IO ()
- afterBinElementAdded :: (IsBin a, MonadIO m) => a -> BinElementAddedCallback -> m SignalHandlerId
- genClosure_BinElementAdded :: BinElementAddedCallback -> IO Closure
- mk_BinElementAddedCallback :: C_BinElementAddedCallback -> IO (FunPtr C_BinElementAddedCallback)
- noBinElementAddedCallback :: Maybe BinElementAddedCallback
- onBinElementAdded :: (IsBin a, MonadIO m) => a -> BinElementAddedCallback -> m SignalHandlerId
- wrap_BinElementAddedCallback :: BinElementAddedCallback -> Ptr () -> Ptr Element -> Ptr () -> IO ()
- type BinElementRemovedCallback = Element -> IO ()
- type C_BinElementRemovedCallback = Ptr () -> Ptr Element -> Ptr () -> IO ()
- afterBinElementRemoved :: (IsBin a, MonadIO m) => a -> BinElementRemovedCallback -> m SignalHandlerId
- genClosure_BinElementRemoved :: BinElementRemovedCallback -> IO Closure
- mk_BinElementRemovedCallback :: C_BinElementRemovedCallback -> IO (FunPtr C_BinElementRemovedCallback)
- noBinElementRemovedCallback :: Maybe BinElementRemovedCallback
- onBinElementRemoved :: (IsBin a, MonadIO m) => a -> BinElementRemovedCallback -> m SignalHandlerId
- wrap_BinElementRemovedCallback :: BinElementRemovedCallback -> Ptr () -> Ptr Element -> Ptr () -> IO ()
Exported types
Constructors
Bin (ManagedPtr Bin) |
Methods
add
Arguments
:: (HasCallStack, MonadIO m, IsBin a, IsElement b) | |
=> a |
|
-> b |
|
-> m Bool | Returns: |
Adds the given element to the bin. Sets the element's parent, and thus takes ownership of the element. An element can only be added to one bin.
If the element's pads are linked to other pads, the pads will be unlinked before the element is added to the bin.
When you add an element to an already-running pipeline, you will have to take care to set the state of the newly-added element to the desired state (usually PLAYING or PAUSED, same you set the pipeline to originally) with 'GI.Gst.Objects.Element.elementSetState', or use 'GI.Gst.Objects.Element.elementSyncStateWithParent'. The bin or pipeline will not take care of this for you.
MT safe.
findUnlinkedPad
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> PadDirection |
|
-> m (Maybe Pad) | Returns: unlinked pad of the given
direction, |
Recursively looks for elements with an unlinked pad of the given
direction within the specified bin and returns an unlinked pad
if one is found, or Nothing
otherwise. If a pad is found, the caller
owns a reference to it and should use objectUnref
on the
pad when it is not needed any longer.
getByInterface
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> GType |
|
-> m Element | Returns: A |
Looks for an element inside the bin that implements the given
interface. If such an element is found, it returns the element.
You can cast this element to the given interface afterwards. If you want
all elements that implement the interface, use
binIterateAllByInterface
. This function recurses into child bins.
MT safe. Caller owns returned reference.
getByName
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> Text |
|
-> m (Maybe Element) |
Gets the element with the given name from a bin. This function recurses into child bins.
Returns Nothing
if no element with the given name is found in the bin.
MT safe. Caller owns returned reference.
getByNameRecurseUp
binGetByNameRecurseUp Source #
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> Text |
|
-> m (Maybe Element) |
Gets the element with the given name from this bin. If the element is not found, a recursion is performed on the parent bin.
Returns Nothing
if:
- no element with the given name is found in the bin
MT safe. Caller owns returned reference.
getSuppressedFlags
binGetSuppressedFlags Source #
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> m [ElementFlags] | Returns: the bin's suppressed |
Return the suppressed flags of the bin.
MT safe.
Since: 1.10
iterateAllByInterface
binIterateAllByInterface Source #
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> GType |
|
-> m (Maybe Iterator) | Returns: a |
Looks for all elements inside the bin that implements the given
interface. You can safely cast all returned elements to the given interface.
The function recurses inside child bins. The iterator will yield a series
of Element
that should be unreffed after use.
MT safe. Caller owns returned value.
iterateElements
Gets an iterator for the elements in this bin.
MT safe. Caller owns returned value.
iterateRecurse
Gets an iterator for the elements in this bin. This iterator recurses into GstBin children.
MT safe. Caller owns returned value.
iterateSinks
Gets an iterator for all elements in the bin that have the
GST_ELEMENT_FLAG_SINK
flag set.
MT safe. Caller owns returned value.
iterateSorted
Gets an iterator for the elements in this bin in topologically sorted order. This means that the elements are returned from the most downstream elements (sinks) to the sources.
This function is used internally to perform the state changes of the bin elements and for clock selection.
MT safe. Caller owns returned value.
iterateSources
Gets an iterator for all elements in the bin that have the
GST_ELEMENT_FLAG_SOURCE
flag set.
MT safe. Caller owns returned value.
new
Arguments
:: (HasCallStack, MonadIO m) | |
=> Maybe Text |
|
-> m Bin | Returns: a new |
Creates a new bin with the given name.
recalculateLatency
binRecalculateLatency Source #
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> m Bool | Returns: |
Query bin
for the current latency using and reconfigures this latency to all the
elements with a LATENCY event.
This method is typically called on the pipeline when a GST_MESSAGE_LATENCY
is posted on the bus.
This function simply emits the 'do-latency' signal so any custom latency calculations will be performed.
remove
Arguments
:: (HasCallStack, MonadIO m, IsBin a, IsElement b) | |
=> a |
|
-> b |
|
-> m Bool | Returns: |
Removes the element from the bin, unparenting it as well.
Unparenting the element means that the element will be dereferenced,
so if the bin holds the only reference to the element, the element
will be freed in the process of removing it from the bin. If you
want the element to still exist after removing, you need to call
objectRef
before removing it from the bin.
If the element's pads are linked to other pads, the pads will be unlinked before the element is removed from the bin.
MT safe.
setSuppressedFlags
binSetSuppressedFlags Source #
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> [ElementFlags] |
|
-> m () |
Suppress the given flags on the bin. ElementFlags
of a
child element are propagated when it is added to the bin.
When suppressed flags are set, those specified flags will
not be propagated to the bin.
MT safe.
Since: 1.10
syncChildrenStates
binSyncChildrenStates Source #
Arguments
:: (HasCallStack, MonadIO m, IsBin a) | |
=> a |
|
-> m Bool | Returns: |
Synchronizes the state of every child of bin
with the state
of bin
. See also elementSyncStateWithParent
.
Since: 1.6
Properties
asyncHandling
constructBinAsyncHandling :: IsBin o => Bool -> IO (GValueConstruct o) Source #
messageForward
constructBinMessageForward :: IsBin o => Bool -> IO (GValueConstruct o) Source #
Signals
deepElementAdded
afterBinDeepElementAdded :: (IsBin a, MonadIO m) => a -> BinDeepElementAddedCallback -> m SignalHandlerId Source #
mk_BinDeepElementAddedCallback :: C_BinDeepElementAddedCallback -> IO (FunPtr C_BinDeepElementAddedCallback) Source #
onBinDeepElementAdded :: (IsBin a, MonadIO m) => a -> BinDeepElementAddedCallback -> m SignalHandlerId Source #
wrap_BinDeepElementAddedCallback :: BinDeepElementAddedCallback -> Ptr () -> Ptr Bin -> Ptr Element -> Ptr () -> IO () Source #
deepElementRemoved
afterBinDeepElementRemoved :: (IsBin a, MonadIO m) => a -> BinDeepElementRemovedCallback -> m SignalHandlerId Source #
mk_BinDeepElementRemovedCallback :: C_BinDeepElementRemovedCallback -> IO (FunPtr C_BinDeepElementRemovedCallback) Source #
onBinDeepElementRemoved :: (IsBin a, MonadIO m) => a -> BinDeepElementRemovedCallback -> m SignalHandlerId Source #
wrap_BinDeepElementRemovedCallback :: BinDeepElementRemovedCallback -> Ptr () -> Ptr Bin -> Ptr Element -> Ptr () -> IO () Source #
doLatency
type BinDoLatencyCallback = IO Bool Source #
afterBinDoLatency :: (IsBin a, MonadIO m) => a -> BinDoLatencyCallback -> m SignalHandlerId Source #
onBinDoLatency :: (IsBin a, MonadIO m) => a -> BinDoLatencyCallback -> m SignalHandlerId Source #
wrap_BinDoLatencyCallback :: BinDoLatencyCallback -> Ptr () -> Ptr () -> IO CInt Source #
elementAdded
type BinElementAddedCallback = Element -> IO () Source #
afterBinElementAdded :: (IsBin a, MonadIO m) => a -> BinElementAddedCallback -> m SignalHandlerId Source #
mk_BinElementAddedCallback :: C_BinElementAddedCallback -> IO (FunPtr C_BinElementAddedCallback) Source #
onBinElementAdded :: (IsBin a, MonadIO m) => a -> BinElementAddedCallback -> m SignalHandlerId Source #
wrap_BinElementAddedCallback :: BinElementAddedCallback -> Ptr () -> Ptr Element -> Ptr () -> IO () Source #
elementRemoved
type BinElementRemovedCallback = Element -> IO () Source #
afterBinElementRemoved :: (IsBin a, MonadIO m) => a -> BinElementRemovedCallback -> m SignalHandlerId Source #
mk_BinElementRemovedCallback :: C_BinElementRemovedCallback -> IO (FunPtr C_BinElementRemovedCallback) Source #
onBinElementRemoved :: (IsBin a, MonadIO m) => a -> BinElementRemovedCallback -> m SignalHandlerId Source #
wrap_BinElementRemovedCallback :: BinElementRemovedCallback -> Ptr () -> Ptr Element -> Ptr () -> IO () Source #