constchar *vpx_codec_err_to_string(vpx_codec_err_t err) { switch (err) { case VPX_CODEC_OK: return"Success"; case VPX_CODEC_ERROR: return"Unspecified internal error"; case VPX_CODEC_MEM_ERROR: return"Memory allocation error"; case VPX_CODEC_ABI_MISMATCH: return"ABI version mismatch"; case VPX_CODEC_INCAPABLE: return"Codec does not implement requested capability"; case VPX_CODEC_UNSUP_BITSTREAM: return"Bitstream not supported by this decoder"; case VPX_CODEC_UNSUP_FEATURE: return"Bitstream required feature not supported by this decoder"; case VPX_CODEC_CORRUPT_FRAME: return"Corrupt frame detected"; case VPX_CODEC_INVALID_PARAM: return"Invalid parameter"; case VPX_CODEC_LIST_END: return"End of iterated list";
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.