mm_error_code_t

Error codes set by Client API functions.

Synopsis:

#include <mm/renderer/types.h>
typedef enum mm_error_code {
    MMR_ERROR_NONE,   
    MMR_ERROR_UNKNOWN,   
    MMR_ERROR_INVALID_PARAMETER,   
    MMR_ERROR_INVALID_STATE,   
    MMR_ERROR_UNSUPPORTED_VALUE,   
    MMR_ERROR_UNSUPPORTED_MEDIA_TYPE,   
    MMR_ERROR_MEDIA_PROTECTED,   
    MMR_ERROR_UNSUPPORTED_OPERATION,   
    MMR_ERROR_READ,   
    MMR_ERROR_WRITE,   
    MMR_ERROR_MEDIA_UNAVAILABLE,   
    MMR_ERROR_MEDIA_CORRUPTED,   
    MMR_ERROR_OUTPUT_UNAVAILABLE,   
    MMR_ERROR_NO_MEMORY,   
    MMR_ERROR_RESOURCE_UNAVAILABLE,   
    MMR_ERROR_MEDIA_DRM_NO_RIGHTS,   
    MMR_ERROR_DRM_CORRUPTED_DATA_STORE,   
    MMR_ERROR_DRM_OUTPUT_PROTECTION,   
    MMR_ERROR_DRM_OPL_HDMI,   
    MMR_ERROR_DRM_OPL_DISPLAYPORT,   
    MMR_ERROR_DRM_OPL_DVI,   
    MMR_ERROR_DRM_OPL_ANALOG_VIDEO,   
    MMR_ERROR_DRM_OPL_ANALOG_AUDIO,   
    MMR_ERROR_DRM_OPL_TOSLINK,   
    MMR_ERROR_DRM_OPL_SPDIF,   
    MMR_ERROR_DRM_OPL_BLUETOOTH,   
    MMR_ERROR_DRM_OPL_WIRELESSHD,   
    MMR_ERROR_DRM_OPL_RESERVED_LAST = 
            MMR_ERROR_DRM_OPL_WIRELESSHD + 4,   
    MMR_ERROR_MEDIA_DRM_EXPIRED_LICENSE,
    MMR_ERROR_COUNT,
} mm_error_code_t;

Data:

MMR_ERROR_NONE
No error has occurred. This value is set when the end of media is reached.
MMR_ERROR_UNKNOWN
An unexpected error.
MMR_ERROR_INVALID_PARAMETER
An invalid parameter, such as an invalid output ID or a seek string that's incorrectly formatted or out of range.
MMR_ERROR_INVALID_STATE
An illegal operation given the context state, such as attempt to play or seek while no input is attached, to change the playlist when playback was stopped, or to access the context after it's been destroyed.
MMR_ERROR_UNSUPPORTED_VALUE
An unrecognized input or output type or an out-of-range speed setting.
MMR_ERROR_UNSUPPORTED_MEDIA_TYPE
An unrecognized data format.
MMR_ERROR_MEDIA_PROTECTED
The file is DRM-protected and either uses an unsupported DRM scheme or there's a DRM error not corresponding to any of the errors listed below.
MMR_ERROR_UNSUPPORTED_OPERATION
An illegal operation, such as a seek, a speed set, or an attach/detach of output on media that doesn't support it.
MMR_ERROR_READ
An I/O error at the source.
MMR_ERROR_WRITE
An I/O error at the sink.
MMR_ERROR_MEDIA_UNAVAILABLE
mm-renderer can't open the source.
MMR_ERROR_MEDIA_CORRUPTED
mm-renderer found corrupt data on the media.
MMR_ERROR_OUTPUT_UNAVAILABLE
mm-renderer can't open the sink (possibly because mm-renderer can't recognize the sink).
MMR_ERROR_NO_MEMORY
Insufficient memory to perform the requested operation.
MMR_ERROR_RESOURCE_UNAVAILABLE
A required resource such as an encoder or an output feed is presently unavailable.
MMR_ERROR_MEDIA_DRM_NO_RIGHTS
The client lacks the rights to play the file.
MMR_ERROR_DRM_CORRUPTED_DATA_STORE
The DRM data store is corrupted.
MMR_ERROR_DRM_OUTPUT_PROTECTION
A DRM output protection mismatch on an unspecified output.
MMR_ERROR_DRM_OPL_HDMI
A DRM output protection mismatch on an HDMI output.
MMR_ERROR_DRM_OPL_DISPLAYPORT
A DRM output protection mismatch on a DISPLAYPORT output.
MMR_ERROR_DRM_OPL_DVI
A DRM output protection mismatch on a DVI output.
MMR_ERROR_DRM_OPL_ANALOG_VIDEO
A DRM output protection mismatch on a video ANALOG output (e.g., S-VIDEO, COMPOSITE, RGB, RGBHW, YPbPr).
MMR_ERROR_DRM_OPL_ANALOG_AUDIO
A DRM output protection mismatch on an audio ANALOG output (e.g., HEADPHONE, SPEAKER OUT).
MMR_ERROR_DRM_OPL_TOSLINK
A DRM output protection mismatch on a TOSLINK output.
MMR_ERROR_DRM_OPL_SPDIF
A DRM output protection mismatch on an S/PDIF output.
MMR_ERROR_DRM_OPL_BLUETOOTH
A DRM output protection mismatch on a BLUETOOTH output.
MMR_ERROR_DRM_OPL_WIRELESSHD
A DRM output protection mismatch on a WIRELESSHD output.
MMR_ERROR_DRM_OPL_RESERVED_LAST
An end-of-range identifier reserved for future MMR_ERROR_DRM_OPL_* values.
MMR_ERROR_MEDIA_DRM_EXPIRED_LICENSE
A license for the DRM file was found but has expired, either by depleting the play count or through an end time.
MMR_ERROR_COUNT
An end-of-list identifier. Also indicates the number of distinct error codes.

Library:

mmrndclient

Description:

The enumerated type mm_error_code_t defines the error codes returned by Client API functions.

Classification:

QNX Neutrino