gst-buffer1

gst/gst-buffer/gst-buffer1

No description
gst-buffer1
@/gst-buffer1
NEWgeneric t1
A value to store
UPDpulse
Saves `NEW` value in memory
gst-buffer1
NEW
UPD
MEM
DONE
DONEpulse
MEMgeneric t1
The latest saved value
To use the node in your project you should have the gst/gst-buffer library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

struct State {
};

{{ GENERATED_CODE }}

void evaluate(Context ctx) {
    if (!isInputDirty<input_UPD>(ctx))
        return;
    emitValue<output_DONE>(ctx, true);
    emitValue<output_MEM>(ctx, getValue<input_NEW>(ctx));
    
}