Membrane.FLAC.Parser.Engine
(Membrane FLAC plugin v0.12.1)
View Source
Stateful parser based on FLAC format specification available here
The parser outputs:
Membrane.FLACMembrane.Bufferwith "fLaC" - the FLAC stream marker in ASCII- At least one
Membrane.Bufferwith metadata block(s) Membrane.Buffers containing one frame each, with decoded metadata from its header (asMembrane.FLAC.FrameMetadatastruct)
The parsing is done by calling init/0 and than parse/2 with the data to parse.
The last buffer can be obtained by calling flush/1
The parser returns a frame once it encounters a beginning of the next one since there's no other way to determine where the frame ends.
Summary
Functions
Outputs the last buffer queued in parser. Should be called afer providing all data to the parser.
Returns an initialized parser state
Parses FLAC stream, splitting it into Membrane.Buffers and providing format.
Types
Functions
@spec flush(state()) :: {:ok, Membrane.Buffer.t()}
Outputs the last buffer queued in parser. Should be called afer providing all data to the parser.
Returns an initialized parser state
@spec parse(binary(), state()) :: {:ok, [Membrane.StreamFormat.t() | Membrane.Buffer.t()], state()} | {:error, any()}
Parses FLAC stream, splitting it into Membrane.Buffers and providing format.
See moduledoc (Membrane.FLAC.Parser.Engine) for more info
The call without state provided is an equivalent of using init/0 as state