Trait gstreamer::prelude::TagSetterExt

source ·
pub trait TagSetterExt: IsA<TagSetter> + Sealed + 'static {
    // Provided methods
    fn tag_list(&self) -> Option<TagList> { ... }
    fn tag_merge_mode(&self) -> TagMergeMode { ... }
    fn merge_tags(&self, list: &TagList, mode: TagMergeMode) { ... }
    fn reset_tags(&self) { ... }
    fn set_tag_merge_mode(&self, mode: TagMergeMode) { ... }
}
Expand description

Trait containing all TagSetter methods.

§Implementors

TagSetter

Provided Methods§

source

fn tag_list(&self) -> Option<TagList>

Returns the current list of tags the setter uses. The list should not be modified or freed.

This function is not thread-safe.

§Returns

a current snapshot of the taglist used in the setter or None if none is used.

source

fn tag_merge_mode(&self) -> TagMergeMode

Queries the mode by which tags inside the setter are overwritten by tags from events

§Returns

the merge mode used inside the element.

source

fn merge_tags(&self, list: &TagList, mode: TagMergeMode)

Merges the given list into the setter’s list using the given mode.

§list

a tag list to merge from

§mode

the mode to merge with

source

fn reset_tags(&self)

Reset the internal taglist. Elements should call this from within the state-change handler.

source

fn set_tag_merge_mode(&self, mode: TagMergeMode)

Sets the given merge mode that is used for adding tags from events to tags specified by this interface. The default is TagMergeMode::Keep, which keeps the tags set with this interface and discards tags from events.

§mode

The mode with which tags are added

Object Safety§

This trait is not object safe.

Implementors§