Navigation
API > API/Plugins > API/Plugins/ElectraDecoders > API/Plugins/ElectraDecoders/IElectraDecoder
| Name | EOutputStatus |
| Type | enum |
| Header File | /Engine/Plugins/Media/ElectraCodecs/Source/ElectraDecoders/Public/IElectraDecoder.h |
| Include Path | #include "IElectraDecoder.h" |
Syntax
enum EOutputStatus
{
Available,
NeedInput,
TryAgainLater,
EndOfData,
Error,
}
Values
| Name | Remarks |
|---|---|
| Available | Output is available. |
| NeedInput | Output is not available. Provide more input. |
| TryAgainLater | Output is not available right now. New input is not required, call HaveOutput() again. |
| EndOfData | All output has been provided. |
| Error | An internal decoder error occurred. Call GetError() to get the error code. |