defmodule Membrane.Element.WithOutputPads do @moduledoc """ Module defining behaviour for source and filter elements. When used declares behaviour implementation, provides default callback definitions and imports macros. For more information on implementing elements, see `Membrane.Element.Base`. """ alias Membrane.{Buffer, Element, Pad} alias Membrane.Core.Child.PadsSpecs alias Membrane.Element.CallbackContext @doc """ Callback called when buffers should be emitted by a source, filter or endpoint. It is called only for output pads in the `:manual` flow control mode, as in their case demand is triggered by the input pad of the subsequent element. In sources and endpoint, appropriate amount of data should be sent here. In filters, this callback should usually return `:demand` action with size sufficient for supplying incoming demand. This will result in calling `c:Membrane.WithInputPads.handle_buffer/4`, which is to supply the demand. If a source or an endpoint is unable to produce enough buffers, or a filter underestimated returned demand, the `:redemand` action should be used (see `t:Membrane.Element.Action.redemand/0`). Context passed to this callback contains additional field `:incoming_demand`. """ @callback handle_demand( pad :: Pad.ref(), size :: non_neg_integer, unit :: Buffer.Metric.unit(), context :: CallbackContext.t(), state :: Element.state() ) :: Membrane.Element.Base.callback_return() @optional_callbacks handle_demand: 5 @doc PadsSpecs.def_pad_docs(:output, :element) defmacro def_output_pad(name, spec) do element_type = Module.get_attribute(__CALLER__.module, :__membrane_element_type__) PadsSpecs.def_pad(name, :output, spec, element_type) end defmacro __using__(_) do quote location: :keep do @behaviour unquote(__MODULE__) import unquote(__MODULE__), only: [def_output_pad: 2] end end end