summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiang, Haihao <haihao.xiang@intel.com>2013-02-27 13:12:40 +0800
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2014-03-03 16:31:55 +0100
commita7c4603a40e7c17da9a2d4c209b88f83b607f458 (patch)
tree519df3652d850709836fd06b6b9b27117e85f64d
parent61415a07211d001ed5c386dbc4851e0589a6f4f0 (diff)
vainfo: Add the support for the new VA profiles
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
-rw-r--r--test/vainfo/vainfo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/vainfo/vainfo.c b/test/vainfo/vainfo.c
index 2578d30..16a2837 100644
--- a/test/vainfo/vainfo.c
+++ b/test/vainfo/vainfo.c
@@ -54,6 +54,8 @@ static char * profile_string(VAProfile profile)
case VAProfileH263Baseline: return "VAProfileH263Baseline";
case VAProfileH264ConstrainedBaseline: return "VAProfileH264ConstrainedBaseline";
case VAProfileJPEGBaseline: return "VAProfileJPEGBaseline";
+ case VAProfileVP8Version0_3: return "VAProfileVP8Version0_3";
+
default:
break;
}
@@ -111,7 +113,7 @@ int main(int argc, const char* argv[])
printf("%s: Driver version: %s\n", name, driver ? driver : "<unknown>");
printf("%s: Supported profile and entrypoints\n", name);
- for (profile = VAProfileNone; profile <= VAProfileH264ConstrainedBaseline; profile++) {
+ for (profile = VAProfileNone; profile <= VAProfileVP8Version0_3; profile++) {
char *profile_str;
va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints,