#include <PipelineLink.h>
Public Member Functions | |
void | RegisterCallback (SceneCallback *scb) |
virtual void | NextScene (Scene next)=0 |
Protected Member Functions | |
void | NextScene (Scene scene) |
Protected Attributes | |
SceneCallback * | sceneCallback = nullptr |
A simple class which extends SceneCallback to add a RegisterCallback method. Also implements a default NextScene function. This class forms the basis for pipeline elements in the Signapse video processing architecture.
Definition at line 10 of file PipelineLink.h.
|
protectedvirtual |
Default NextScene implementation, simply passes the scene on to the registered callback
scene |
Implements SceneCallback.
Reimplemented in SchedulableLink, and PreProcessor.
Definition at line 14 of file PipelineLink.cpp.
void PipelineLink::RegisterCallback | ( | SceneCallback * | scb | ) |
Used to register the next pipeline element.
scb | reference to the next pipeline element |
Definition at line 7 of file PipelineLink.cpp.
|
protected |
Definition at line 16 of file PipelineLink.h.