mpv_error class abstract
List of error codes than can be returned by API functions. 0 and positive return values always mean success, negative values are always errors.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
- MPV_ERROR_AO_INIT_FAILED → const int
- Initializing the audio output failed.
- MPV_ERROR_COMMAND → const int
- General error when running a command with mpv_command and similar.
- MPV_ERROR_EVENT_QUEUE_FULL → const int
- The event ringbuffer is full. This means the client is choked, and can't receive any events. This can happen when too many asynchronous requests have been made, but not answered. Probably never happens in practice, unless the mpv core is frozen for some reason, and the client keeps making asynchronous requests. (Bugs in the client API implementation could also trigger this, e.g. if events become "lost".)
- MPV_ERROR_GENERIC → const int
- Unspecified error.
- MPV_ERROR_INVALID_PARAMETER → const int
- Generic catch-all error if a parameter is set to an invalid or unsupported value. This is used if there is no better error code.
- MPV_ERROR_LOADING_FAILED → const int
- Generic error on loading (usually used with mpv_event_end_file.error).
- MPV_ERROR_NOMEM → const int
- Memory allocation failed.
- MPV_ERROR_NOT_IMPLEMENTED → const int
- The API function which was called is a stub only.
- MPV_ERROR_NOTHING_TO_PLAY → const int
- There was no audio or video data to play. This also happens if the file was recognized, but did not contain any audio or video stream, or no stream were selected.
- MPV_ERROR_OPTION_ERROR → const int
- Setting the option failed. Typically this happens if the provided option value could not be parsed.
- MPV_ERROR_OPTION_FORMAT → const int
- Trying to set an option using an unsupported MPV_FORMAT.
- MPV_ERROR_OPTION_NOT_FOUND → const int
- Trying to set an option that doesn't exist.
- MPV_ERROR_PROPERTY_ERROR → const int
- Error setting or getting a property.
- MPV_ERROR_PROPERTY_FORMAT → const int
- Trying to set or get a property using an unsupported MPV_FORMAT.
- MPV_ERROR_PROPERTY_NOT_FOUND → const int
- The accessed property doesn't exist.
- MPV_ERROR_PROPERTY_UNAVAILABLE → const int
- The property exists, but is not available. This usually happens when the associated subsystem is not active, e.g. querying audio parameters while audio is disabled.
- MPV_ERROR_SUCCESS → const int
- No error happened (used to signal successful operation). Keep in mind that many API functions returning error codes can also return positive values, which also indicate success. API users can hardcode the fact that ">= 0" means success.
- MPV_ERROR_UNINITIALIZED → const int
- The mpv core wasn't configured and initialized yet. See the notes in mpv_create().
- MPV_ERROR_UNKNOWN_FORMAT → const int
- When trying to load the file, the file format could not be determined, or the file was too broken to open it.
- MPV_ERROR_UNSUPPORTED → const int
- Generic error for signaling that certain system requirements are not fulfilled.
- MPV_ERROR_VO_INIT_FAILED → const int
- Initializing the video output failed.