• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
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

Revision53a524de216f498c1377a9cc3311f81fa64770ef (tree)
Time2015-06-24 14:33:28
AuthorZhong Li <zhong.li@inte...>
CommiterXiang, Haihao

Log Message

VP8 HWEnc: Modify qp threshold value for mode cost calculatation

The patch is helpful to improve quality when qp is lower than the
threshold value.

Signed-off-by: Zhong Li <zhong.li@intel.com>
(cherry picked from commit e797089446c1f5b71b239b9046d76e054dfcba59)

Change Summary

Incremental Difference

--- a/src/gen6_mfc_common.c
+++ b/src/gen6_mfc_common.c
@@ -970,7 +970,7 @@ void intel_vme_vp8_update_mbmv_cost(VADriverContextP ctx,
970970 mv_count++;
971971 }
972972
973- if (qp < 32 ) {
973+ if (qp < 92 ) {
974974 vme_state_message[MODE_INTRA_16X16] = 0x4a;
975975 vme_state_message[MODE_INTRA_4X4] = 0x4a;
976976 vme_state_message[MODE_INTRA_NONPRED] = 0x4a;