summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--va/va.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/va/va.c b/va/va.c
index ca332ec..54f3d02 100644
--- a/va/va.c
+++ b/va/va.c
@@ -425,6 +425,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";
}