• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/libva


Commit MetaInfo

修订版a7c4603a40e7c17da9a2d4c209b88f83b607f458 (tree)
时间2014-03-04 00:31:55
作者Xiang, Haihao <haihao.xiang@inte...>
CommiterGwenole Beauchesne

Log Message

vainfo: Add the support for the new VA profiles

Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>

更改概述

差异

--- a/test/vainfo/vainfo.c
+++ b/test/vainfo/vainfo.c
@@ -54,6 +54,8 @@ static char * profile_string(VAProfile profile)
5454 case VAProfileH263Baseline: return "VAProfileH263Baseline";
5555 case VAProfileH264ConstrainedBaseline: return "VAProfileH264ConstrainedBaseline";
5656 case VAProfileJPEGBaseline: return "VAProfileJPEGBaseline";
57+ case VAProfileVP8Version0_3: return "VAProfileVP8Version0_3";
58+
5759 default:
5860 break;
5961 }
@@ -111,7 +113,7 @@ int main(int argc, const char* argv[])
111113 printf("%s: Driver version: %s\n", name, driver ? driver : "<unknown>");
112114
113115 printf("%s: Supported profile and entrypoints\n", name);
114- for (profile = VAProfileNone; profile <= VAProfileH264ConstrainedBaseline; profile++) {
116+ for (profile = VAProfileNone; profile <= VAProfileVP8Version0_3; profile++) {
115117 char *profile_str;
116118
117119 va_status = vaQueryConfigEntrypoints(va_dpy, profile, entrypoints,