diff options
author | peng.chen <peng.c.chen@intel.com> | 2016-01-27 15:05:26 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2016-01-29 13:59:16 +0800 |
commit | 0f88b7ecfbfa7426597dd83b8cf3503a55f1da8f (patch) | |
tree | a2d36072179431ea8a7ea8b5276351916a5718b4 | |
parent | 41c3748ba7a2bc0fb7bcccc9bbbaf1a313e1c691 (diff) |
add the support of enum VAProfileVP9Profile1~3 for vainfokbl-alpha-rc1kbl-alphav1.6-branch
Signed-off-by: peng.chen <peng.c.chen@intel.com>
(cherry picked from commit 09b2f1f637390318236c11312898e3f4906c9581)
-rw-r--r-- | test/vainfo/vainfo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/vainfo/vainfo.c b/test/vainfo/vainfo.c index 0605d8c..7259596 100644 --- a/test/vainfo/vainfo.c +++ b/test/vainfo/vainfo.c @@ -61,6 +61,9 @@ static char * profile_string(VAProfile profile) case VAProfileHEVCMain: return "VAProfileHEVCMain"; case VAProfileHEVCMain10: return "VAProfileHEVCMain10"; case VAProfileVP9Profile0: return "VAProfileVP9Profile0"; + case VAProfileVP9Profile1: return "VAProfileVP9Profile1"; + case VAProfileVP9Profile2: return "VAProfileVP9Profile2"; + case VAProfileVP9Profile3: return "VAProfileVP9Profile3"; default: break; |