VideoError
Indicates the result of a video operation in the engine's video subsystem.
Items 19
| History | Name | Value | Description | |
|---|---|---|---|---|
| 616 | Ok | 0 | The video operation completed successfully without error. | |
| 616 | Eof | 1 | The end of the video stream or file has been reached. | |
| 616 | EAgain | 2 | No data is available at this moment; the caller should retry the operation. | |
| 616 | BadParameter | 3 | An invalid or out-of-range parameter was supplied to the video operation. | |
| 616 | AllocFailed | 4 | A memory allocation required for the video operation failed. | |
| 616 | CodecInitFailed | 5 | The video codec failed to initialize. | |
| 616 | CodecCloseFailed | 6 | The video codec failed to shut down cleanly. | |
| 616 | DecodeFailed | 7 | The video decoder failed to decode a frame from the stream. | |
| 616 | ParsingFailed | 8 | Parsing the video stream or container format failed. | |
| 616 | Unsupported | 9 | The requested video operation or format is not supported on this platform. | |
| 616 | Generic | 10 | A generic or unclassified error occurred in the video subsystem. | |
| 616 | DownloadFailed | 11 | The video asset could not be downloaded. | |
| 616 | StreamNotFound | 12 | The requested video stream could not be found. | |
| 616 | EncodeFailed | 13 | The video encoder failed to encode a frame. | |
| 616 | CreateFailed | 14 | Creating a required video resource or object failed. | |
| 616 | NoPermission | 15 | The video operation was denied because the required permission, such as camera access, has not been granted. | |
| 616 | NoService | 16 | The required video service is unavailable on this device or platform. | |
| 616 | ReleaseFailed | 17 | Releasing a video resource failed. | |
| 616 | Unknown | 18 | An unknown or unrecognized error occurred; this value covers errors that have no specific classification in this enum. |
Description
VideoError represents the outcome of video operations performed by the
engine. Values are surfaced through video-related callbacks and APIs to
describe why an operation succeeded or failed.
History 20
- 616 Add Unsupported
- 616 Add Unknown
- 616 Add StreamNotFound
- 616 Add ReleaseFailed
- 616 Add ParsingFailed
- 616 Add Ok
- 616 Add NoService
- 616 Add NoPermission
- 616 Add Generic
- 616 Add Eof
- 616 Add EncodeFailed
- 616 Add EAgain
- 616 Add DownloadFailed
- 616 Add DecodeFailed
- 616 Add CreateFailed
- 616 Add CodecInitFailed
- 616 Add CodecCloseFailed
- 616 Add BadParameter
- 616 Add AllocFailed
- 616 Add VideoError