Class PlayerError
Corresponds to kMediaError
public sealed class PlayerError
- Inheritance
-
PlayerError
- Inherited Members
Properties
Cause
Errors potentially have a root cause error, ie, a DecoderError might be caused by an WindowsError
[JsonPropertyName("cause")]
public PlayerError[] Cause { get; set; }
Property Value
Code
Code is the numeric enum entry for a specific set of error codes, such as PipelineStatusCodes in media/base/pipeline_status.h
[JsonPropertyName("code")]
public long Code { get; set; }
Property Value
Data
Extra data attached to an error, such as an HRESULT, Video Codec, etc.
[JsonPropertyName("data")]
public object Data { get; set; }
Property Value
ErrorType
errorType
[JsonPropertyName("errorType")]
public string ErrorType { get; set; }
Property Value
Stack
A trace of where this error was caused / where it passed through.
[JsonPropertyName("stack")]
public PlayerErrorSourceLocation[] Stack { get; set; }