gstbase.base_src

Module for [BaseSrc] class

Types 3

This is a generic base class for source elements. The following types of sources are supported:

  • random access sources like files
  • seekable sources
  • live sources

The source can be configured to operate in any #GstFormat with the gstbase.base_src.BaseSrc.setFormat method. The currently set format determines the format of the internal #GstSegment and any gst.types.EventType.Segment events. The default format for #GstBaseSrc is gst.types.Format.Bytes.

#GstBaseSrc always supports push mode scheduling. If the following conditions are met, it also supports pull mode scheduling:

If all the conditions are met for operating in pull mode, #GstBaseSrc is automatically seekable in push mode as well. The following conditions must be met to make the element seekable in push mode when the format is not gst.types.Format.Bytes:

  • #GstBaseSrcClass::is_seekable returns true.
  • #GstBaseSrcClass::query can convert all supported seek formats to the internal format as set with gstbase.base_src.BaseSrc.setFormat.
  • #GstBaseSrcClass::do_seek is implemented, performs the seek and returns true.

When the element does not meet the requirements to operate in pull mode, the offset and length in the #GstBaseSrcClass::create method should be ignored. It is recommended to subclass #GstPushSrc instead, in this situation. If the element can operate in pull mode but only with specific offsets and lengths, it is allowed to generate an error when the wrong values are passed to the #GstBaseSrcClass::create function.

#GstBaseSrc has support for live sources. Live sources are sources that when paused discard data, such as audio or video capture devices. A typical live source also produces data at a fixed rate and thus provides a clock to publish this rate. Use gstbase.base_src.BaseSrc.setLive to activate the live source mode.

A live source does not produce data in the PAUSED state. This means that the #GstBaseSrcClass::create method will not be called in PAUSED but only in PLAYING. To signal the pipeline that the element will not produce data, the return value from the READY to PAUSED state will be gst.types.StateChangeReturn.NoPreroll.

A typical live source will timestamp the buffers it creates with the current running time of the pipeline. This is one reason why a live source can only produce data in the PLAYING state, when the clock is actually distributed and running.

Live sources that synchronize and block on the clock (an audio source, for example) can use gstbase.base_src.BaseSrc.waitPlaying when the #GstBaseSrcClass::create function was interrupted by a state change to PAUSED.

The #GstBaseSrcClass::get_times method can be used to implement pseudo-live sources. It only makes sense to implement the #GstBaseSrcClass::get_times function if the source is a live source. The #GstBaseSrcClass::get_times function should return timestamps starting from 0, as if it were a non-live source. The base class will make sure that the timestamps are transformed into the current running_time. The base source will then wait for the calculated running_time before pushing out the buffer.

For live sources, the base class will by default report a latency of 0. For pseudo live sources, the base class will by default measure the difference between the first buffer timestamp and the start time of get_times and will report this value as the latency. Subclasses should override the query function when this behaviour is not acceptable.

There is only support in #GstBaseSrc for exactly one source pad, which should be named "src". A source implementation (subclass of #GstBaseSrc) should install a pad template in its class_init function, like so:

static void
my_element_class_init (GstMyElementClass *klass)
{
  GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
  // srctemplate should be a #GstStaticPadTemplate with direction
  // %GST_PAD_SRC and name "src"
  gst_element_class_add_static_pad_template (gstelement_class, &srctemplate);

  gst_element_class_set_static_metadata (gstelement_class,
     "Source name",
     "Source",
     "My Source element",
     "The author <my.sink@my.email>");
}

Controlled shutdown of live sources in applications

Applications that record from a live source may want to stop recording in a controlled way, so that the recording is stopped, but the data already in the pipeline is processed to the end (remember that many live sources would go on recording forever otherwise). For that to happen the application needs to make the source stop recording and send an EOS event down the pipeline. The application would then wait for an EOS message posted on the pipeline's bus to know when all data has been processed and the pipeline can safely be stopped.

An application may send an EOS event to a source element to make it perform the EOS logic (send EOS event downstream or post a gst.types.MessageType.SegmentDone on the bus). This can typically be done with the gst.element.Element.sendEvent function on the element or its parent bin.

After the EOS has been sent to the element, the application should wait for an EOS message to be posted on the pipeline's bus. Once this EOS message is received, it may safely shut down the entire pipeline.

Methods
GType _getGType() static nothrow
GType _gType() @property nothrow
BaseSrc self() nothrowReturns `this`, for use in `with` statements.
BaseSrcGidBuilder builder() static nothrowGet builder for [gstbase.base_src.BaseSrc] Returns: New builder object
bool automaticEos() @property nothrowGet `automaticEos` property. Returns: See [gstbase.base_src.BaseSrc.setAutomaticEos]
void automaticEos(bool propval) @property nothrowSet `automaticEos` property. Params: propval = See [gstbase.base_src.BaseSrc.setAutomaticEos]
uint blocksize() @property nothrow
void blocksize(uint propval) @property nothrow
bool doTimestamp() @property nothrow
void doTimestamp(bool propval) @property nothrow
int numBuffers() @property nothrow
void numBuffers(int propval) @property nothrow
bool typefind() @property nothrow
void typefind(bool propval) @property nothrow
void getAllocator(out gst.allocator.Allocator allocator, out gst.allocation_params.AllocationParams params) nothrowLets #GstBaseSrc sub-classes to know the memory allocator used by the base class and its params.
uint getBlocksize() nothrowGet the number of bytes that src will push out with each buffer. Returns: the number of bytes pushed with each buffer.
bool getDoTimestamp() nothrowQuery if src timestamps outgoing buffers based on the current running_time. Returns: true if the base class will automatically timestamp outgoing buffers.
bool isAsync() nothrowGet the current async behaviour of src. See also [gstbase.base_src.BaseSrc.setAsync]. Returns: true if src is operating in async mode.
bool isLive() nothrowCheck if an element is in live mode. Returns: true if element is in live mode.
bool negotiate() nothrowNegotiates src pad caps with downstream elements. Unmarks GST_PAD_FLAG_NEED_RECONFIGURE in any case. But marks it again if #GstBaseSrcClass::negotiate fails.
bool newSeamlessSegment(long start, long stop, long time) nothrowPrepare a new seamless segment for emission downstream. This function must only be called by derived sub-classes, and only from the #GstBaseSrcClass::create function, as the stream-lock needs to be...
bool newSegment(gst.segment.Segment segment) nothrowPrepare a new segment for emission downstream. This function must only be called by derived sub-classes, and only from the #GstBaseSrcClass::create function, as the stream-lock needs to be held.
bool pushSegment(gst.segment.Segment segment) nothrowSend a new segment downstream. This function must only be called by derived sub-classes, and only from the #GstBaseSrcClass::create function, as the stream-lock needs to be held. This method also r...
bool queryLatency(out bool live, out gst.types.ClockTime minLatency, out gst.types.ClockTime maxLatency) nothrowQuery the source for the latency parameters. live will be true when src is configured as a live source. min_latency and max_latency will be set to the difference between the running time and the ti...
void setAsync(bool async) nothrowConfigure async behaviour in src, no state change will block. The open, close, start, stop, play and pause virtual methods will be executed in a different thread and are thus allowed to perform blo...
void setAutomaticEos(bool automaticEos) nothrowIf automatic_eos is true, src will automatically go EOS if a buffer after the total size is returned. By default this is true but sources that can't return an authoritative size and only know that ...
void setBlocksize(uint blocksize) nothrowSet the number of bytes that src will push out with each buffer. When blocksize is set to -1, a default length will be used.
bool setCaps(gst.caps.Caps caps) nothrowSet new caps on the basesrc source pad.
void setDoTimestamp(bool timestamp) nothrowConfigure src to automatically timestamp outgoing buffers based on the current running_time of the pipeline. This property is mostly useful for live sources.
void setDynamicSize(bool dynamic) nothrowIf not dynamic, size is only updated when needed, such as when trying to read past current tracked size. Otherwise, size is checked for upon each read.
void setFormat(gst.types.Format format) nothrowSets the default format of the source. This will be the format used for sending SEGMENT events and for performing seeks.
void setLive(bool live) nothrowIf the element listens to a live source, live should be set to true.
void startComplete(gst.types.FlowReturn ret) nothrowComplete an asynchronous start operation. When the subclass overrides the start method, it should call [gstbase.base_src.BaseSrc.startComplete] when the start operation completes either from the sa...
gst.types.FlowReturn startWait() nothrowWait until the start operation completes. Returns: a #GstFlowReturn.
void submitBufferList(gst.buffer_list.BufferList bufferList) nothrowSubclasses can call this from their create virtual method implementation to submit a buffer list to be pushed out later. This is useful in cases where the create function wants to produce multiple ...
gst.types.FlowReturn waitPlaying() nothrowIf the #GstBaseSrcClass::create method performs its own synchronisation against the clock it must unblock when going from PLAYING to the PAUSED state and call this method before continuing to produ...
Constructors
this(void * ptr, Flag!"Take" take)

Fluent builder implementation template for gstbase.base_src.BaseSrc

Methods
T automaticEos(bool propval) nothrowSet `automaticEos` property. Params: propval = See [gstbase.base_src.BaseSrc.setAutomaticEos] Returns: Builder instance for fluent chaining
T blocksize(uint propval) nothrow
T doTimestamp(bool propval) nothrow
T numBuffers(int propval) nothrow
T typefind(bool propval) nothrow

Fluent builder for gstbase.base_src.BaseSrc

Methods
BaseSrc build() nothrowCreate object from builder. Returns: New object