• 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/intel-driver


Commit MetaInfo

修订版73aed29c640fb911bb88344369cfd80bf7169d6c (tree)
时间2016-06-07 14:11:49
作者Zhao Yakui <yakui.zhao@inte...>
CommiterXiang, Haihao

Log Message

Restrict the VP9 HW encoding for Profile0

Fix the issue that VP9 HW encoding is reported incorrectly for VP9 Profile2.

Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>

更改概述

差异

--- a/src/i965_drv_video.c
+++ b/src/i965_drv_video.c
@@ -735,7 +735,7 @@ i965_QueryConfigEntrypoints(VADriverContextP ctx,
735735 if(HAS_VP9_DECODING_PROFILE(i965, profile))
736736 entrypoint_list[n++] = VAEntrypointVLD;
737737
738- if (HAS_VP9_ENCODING(i965))
738+ if (HAS_VP9_ENCODING(i965) && (profile == VAProfileVP9Profile0))
739739 entrypoint_list[n++] = VAEntrypointEncSlice;
740740
741741 if(profile == VAProfileVP9Profile0) {