Navigation
Unreal Engine C++ API Reference > Plugins > ElectraDecoders > IElectraDecoder
References
Module | ElectraDecoders |
Header | /Engine/Plugins/Media/ElectraCodecs/Source/ElectraDecoders/Public/IElectraDecoder.h |
Include | #include "IElectraDecoder.h" |
Syntax
enum EOutputStatus
{
Available,
NeedInput,
TryAgainLater,
EndOfData,
Error,
}
Values
Name | Description |
---|---|
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. |