From: Gwenole Beauchesne Date: Wed, 9 Jun 2010 07:40:28 +0000 (+0200) Subject: Fix vaErrorStr() for VA_STATUS_ERROR_INVALID_IMAGE_FORMAT. X-Git-Tag: libva-1.0.4~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F27%2F627%2F1;p=profile%2Fivi%2Flibva.git Fix vaErrorStr() for VA_STATUS_ERROR_INVALID_IMAGE_FORMAT. --- diff --git a/va/va.c b/va/va.c index 00a96cf..e143c7b 100644 --- a/va/va.c +++ b/va/va.c @@ -319,6 +319,8 @@ const char *vaErrorStr(VAStatus error_status) return "the requested function is not implemented"; case VA_STATUS_ERROR_SURFACE_IN_DISPLAYING: return "surface is in displaying (may by overlay)" ; + case VA_STATUS_ERROR_INVALID_IMAGE_FORMAT: + return "invalid VAImageFormat"; case VA_STATUS_ERROR_UNKNOWN: return "unknown libva error"; }