Navigation
API > API/Plugins > API/Plugins/ElectraDecoders
Syntax
const TCHAR *const IsAdaptive
Remarks
FVariant(bool) : true - adaptive decoding supported, false - not supported
Indicates whether or not the decoder is adaptive on input format changes, like different resolutions for video decoders. If the decoder is not adaptive then you need to perform end-of-stream handling like so:
SendEndOfData(); // indicate no further data will be sent while(HaveOutput() == Available) { GetOutput(); } Reset();