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 EDecoderError
{
None,
EndOfData,
NoBuffer,
LostDecoder,
Error,
}
Values
Name | Description |
---|---|
None | No error, all is well. |
EndOfData | End of data processed. |
NoBuffer | No buffer available when sending access unit to decode or no output available yet (more input required) |
LostDecoder | The decoder was lost due to resource sharing conflicts or when the application was suspended. |
Error | An internal decoder error occurred. Call GetError() to get the error code. |