Output Class
Pull-side terminal sink. More...
Declaration
class simaai::neat::Output { ... }
Included Headers
#include <Output.h>
Base class
| class | Node |
Public Constructors Index
| Output ()=default | |
|
Construct with default options (max_buffers=4, drop=false, sync=false). More... | |
| Output (OutputOptions opt) | |
|
Construct with explicit options. More... | |
Public Member Functions Index
| const OutputOptions & | options () const |
|
Inspect the Node's options. More... | |
| std::string | kind () const override |
|
Type label for this Node kind. More... | |
| NodeCapsBehavior | caps_behavior () const override |
|
Whether the Node negotiates static or dynamic caps. More... | |
| std::string | backend_fragment (int node_index) const override |
|
GStreamer fragment this Node emits. More... | |
| std::vector< std::string > | element_names (int node_index) const override |
|
Deterministic element names this Node will create. More... | |
Private Member Attributes Index
| OutputOptions | opt_ |
Description
Pull-side terminal sink.
Samples land here for Run::pull() to consume.
Definition at line 46 of file Output.h.
Public Constructors
Output()
| default |
Output()
| inline explicit |
Construct with explicit options.
Definition at line 51 of file Output.h.
51 explicit Output(OutputOptions opt) : opt_(std::move(opt)) {}
Public Member Functions
backend_fragment()
|
caps_behavior()
| inline |
Whether the Node negotiates static or dynamic caps.
element_names()
|
kind()
| inline |
options()
| inline |
Inspect the Node's options.