diff options
| author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-02-02 00:13:48 +0100 |
|---|---|---|
| committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-02-02 00:15:38 +0100 |
| commit | 7b5c35273dc0e8e0e86cf40cf2a398119a766397 (patch) | |
| tree | de8642fd169c1ffb4d39cb52f117e4883d3955a7 /va/va.c | |
| parent | 5e0b1166638eb226bcc926d43fc68a213e764b60 (diff) | |
va: fix vaErrorStr() to support new error codes.
Diffstat (limited to 'va/va.c')
| -rw-r--r-- | va/va.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -389,6 +389,12 @@ const char *vaErrorStr(VAStatus error_status) return "surface is in displaying (may by overlay)" ; case VA_STATUS_ERROR_INVALID_IMAGE_FORMAT: return "invalid VAImageFormat"; + case VA_STATUS_ERROR_INVALID_VALUE: + return "an invalid/unsupported value was supplied"; + case VA_STATUS_ERROR_UNSUPPORTED_FILTER: + return "the requested filter is not supported"; + case VA_STATUS_ERROR_INVALID_FILTER_CHAIN: + return "an invalid filter chain was supplied"; case VA_STATUS_ERROR_UNKNOWN: return "unknown libva error"; } |
