ADTF
|
Namespace for all functionality of the ADTF Streaming SDK provided since v3.3. More...
Functions | |
tResult | add_graph_object (ant::cGraph &oGraph, const util::cString &strCID, const util::cString &strName, const std::map< util::cString, util::cString > &oProperties, int32_t nOrderNumber, ucom::iobject_ptr< ucom::IObject > &pObject) |
Convenience functionality to create and add add graph object to a existing graph. More... | |
tResult | add_graph_object (ant::cGraph &oGraph, const util::cString &strCID, const util::cString &strName, const std::map< util::cString, util::cString > &oProperties={}, int32_t nOrderNumber=0) |
Convenience functionality to add graph object to a existing graph. More... | |
tResult | add_sample_stream (ant::cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber, ucom::iobject_ptr< ucom::IObject > &pSampleStream) |
tResult | add_sample_stream (ant::cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber=0) |
Adds a sample stream to the graph. More... | |
tResult | add_binding_proxy (ant::cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber, ucom::iobject_ptr< ucom::IObject > &pBindingProxy) |
adds a Binding Proxy to a graph and return the created proxy. More... | |
tResult | add_binding_proxy (cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber=0) |
adds a Binding Proxy to a graph. More... | |
tResult | add_data_out_port (ant::cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber, ucom::iobject_ptr< ucom::IObject > &pPort) |
adds an Out Port to a graph and return the created port. More... | |
tResult | add_data_out_port (ant::cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber=0) |
adds an Out Port to a graph. More... | |
tResult | add_data_in_port (ant::cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber, ucom::iobject_ptr< ucom::IObject > &pPort) |
adds an In Port to a graph and return the created port. More... | |
tResult | add_data_in_port (ant::cGraph &oGraph, const util::cString &strName, int32_t nOrderNumber=0) |
adds an In Port to a graph. More... | |
tResult | add_sample_stream_out_port (ant::cGraph &oGraph, const util::cString &strName, const util::cString &strPortID, int32_t nOrderNumber, ucom::iobject_ptr< ucom::IObject > &pPort) |
adds a Stream Out Port to a graph and return the created port. More... | |
tResult | add_sample_stream_out_port (ant::cGraph &oGraph, const util::cString &strName, const util::cString &strPortID, int32_t nOrderNumber=0) |
adds a Stream Out Port to a graph. More... | |
tResult | add_sample_stream_in_port (ant::cGraph &oGraph, const util::cString &strName, const util::cString &strPortID, int32_t nOrderNumber, ucom::iobject_ptr< ucom::IObject > &pPort) |
adds a Stream In Port to a graph and return the created port. More... | |
tResult | add_sample_stream_in_port (ant::cGraph &oGraph, const util::cString &strName, const util::cString &strPortID, int32_t nOrderNumber=0) |
adds a Stream In Port to a graph and return the created port. More... | |
Namespace for all functionality of the ADTF Streaming SDK provided since v3.3.
|
inline |
adds a Binding Proxy to a graph and return the created proxy.
oGraph | The graph where to add the Binding Proxy to. |
strName | Name of the Binding Proxy within the graph |
nOrderNumber | The order numer of the new Binding Proxy. |
pBindingProxy | Return value for the instance of the Binding Proxy created. |
Definition at line 117 of file graph_utils.h.
References cGraph::AddNamedGraphObject(), iobject_ptr_base< T >::Reset(), and RETURN_IF_FAILED.
Referenced by add_binding_proxy().
|
inline |
adds a Binding Proxy to a graph.
oGraph | The graph where to add the Binding Proxy to. |
strName | Name of the Binding Proxy within the graph |
nOrderNumber | The order numer of the new Binding Proxy. |
Definition at line 134 of file graph_utils.h.
References add_binding_proxy().
|
inline |
adds an In Port to a graph and return the created port.
oGraph | The graph where to add the In Port to. |
strName | Name of the In Port within the graph |
nOrderNumber | The order numer of the new In Port. |
pPort | Return value for the instance of the port created. |
Definition at line 184 of file graph_utils.h.
References cGraph::AddNamedGraphObject(), iobject_ptr_base< T >::Reset(), and RETURN_IF_FAILED.
Referenced by add_data_in_port().
|
inline |
adds an In Port to a graph.
oGraph | The graph where to add the In Port to. |
strName | Name of the In Port within the graph |
nOrderNumber | The order numer of the new In Port. |
Definition at line 202 of file graph_utils.h.
References add_data_in_port().
|
inline |
adds an Out Port to a graph and return the created port.
oGraph | The graph where to add the Out Port to. |
strName | Name of the Out Port within the graph. |
nOrderNumber | The order numer of the new Out Port. |
pPort | Return value for the instance of the port created. |
Definition at line 149 of file graph_utils.h.
References cGraph::AddNamedGraphObject(), iobject_ptr_base< T >::Reset(), and RETURN_IF_FAILED.
Referenced by add_data_out_port().
|
inline |
adds an Out Port to a graph.
oGraph | The graph where to add the Out Port to. |
strName | Name of the Out Port within the graph. |
nOrderNumber | The order numer of the new Out Port. |
Definition at line 167 of file graph_utils.h.
References add_data_out_port().
|
inline |
Convenience functionality to create and add add graph object to a existing graph.
oGraph | The Graph where to add the object. |
strCID | The class interface name of class to create the object. |
strName | The name of the object within the graph. |
oProperties | The properties to set. |
nOrderNumber | the order number of the object |
pObject | Return value for the instance of the object created. |
Definition at line 39 of file graph_utils.h.
References _runtime, cGraph::AddNamedGraphObject(), IRuntime::CreateInstance(), object_ptr< T >::Get(), iobject_ptr_base< T >::Reset(), and RETURN_IF_FAILED.
|
inline |
Convenience functionality to add graph object to a existing graph.
oGraph | The Graph where to create and add the object. |
strCID | The class interface name of class to create the object. |
strName | The name of the object within the graph. |
oProperties | The properties to set. |
nOrderNumber | the order number of the object |
Definition at line 72 of file graph_utils.h.
|
inline |
Adds a sample stream to the graph.
oGraph | The graph where to add the Sample Stream to. |
strName | Name of the Sample Stream |
nOrderNumber | the order numer of the new Sample Stream. |
Definition at line 100 of file graph_utils.h.
|
inline |
adds a Stream In Port to a graph and return the created port.
oGraph | The graph where to add the Stream In Port to. |
strName | Name of the Stream In Port within the graph |
strPortID | Port ID as it appears in the streaming graph |
nOrderNumber | The order numer of the new Stream In Port. |
pPort | Return value for the instance of the port created. |
Definition at line 259 of file graph_utils.h.
References cGraph::AddNamedGraphObject(), iobject_ptr_base< T >::Reset(), and RETURN_IF_FAILED.
Referenced by add_sample_stream_in_port().
|
inline |
adds a Stream In Port to a graph and return the created port.
oGraph | The graph where to add the Stream In Port to. |
strName | Name of the Stream In Port within the graph |
strPortID | Port ID as it appears in the streaming graph |
nOrderNumber | The order numer of the new Stream In Port. |
Definition at line 279 of file graph_utils.h.
References add_sample_stream_in_port().
|
inline |
adds a Stream Out Port to a graph and return the created port.
oGraph | The graph where to add the Stream Out Port to. |
strName | Name of the Stream Out Port within the graph |
strPortID | Port ID As it appears in the streaming graph |
nOrderNumber | The order numer of the new Stream Out Port. |
pPort | Return value for the instance of the port created. |
Definition at line 220 of file graph_utils.h.
References cGraph::AddNamedGraphObject(), iobject_ptr_base< T >::Reset(), and RETURN_IF_FAILED.
Referenced by add_sample_stream_out_port().
|
inline |
adds a Stream Out Port to a graph.
oGraph | The graph where to add the Stream Out Port to. |
strName | Name of the Stream Out Port within the graph |
strPortID | Port ID as it appears in the streaming graph |
nOrderNumber | The order numer of the new Stream Out Port. |
Definition at line 240 of file graph_utils.h.
References add_sample_stream_out_port().