PushSrc

class PushSrc(**properties: Any)

Superclasses: BaseSrc, Element, Object, InitiallyUnowned, Object

This class is mostly useful for elements that cannot do random access, or at least very slowly. The source usually prefers to push out a fixed size buffer.

Subclasses usually operate in a format that is different from the default GST_FORMAT_BYTES format of BaseSrc.

Classes extending this base class will usually be scheduled in a push based mode. If the peer accepts to operate without offsets and within the limits of the allowed block size, this class can operate in getrange based mode automatically. To make this possible, the subclass should implement and override the SCHEDULING query.

The subclass should extend the methods from the baseclass in addition to the ::create method.

Seeking, flushing, scheduling and sync is all handled by this base class.

Virtual Methods

class PushSrc
do_alloc() tuple[FlowReturn, Buffer]

Allocate memory for a buffer.

do_create() tuple[FlowReturn, Buffer]

Ask the subclass to create a buffer, the default implementation will call alloc if no allocated buf is provided and then call fill.

do_fill(buf: Buffer) FlowReturn
Parameters:

buf

Fields

class PushSrc
parent