• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine 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

Revision99ae37b2e2d29be0c00447f26ccab294a2bcc2d9 (tree)
Zeit2016-01-26 16:12:01
Autorpeng.chen <peng.c.chen@inte...>
CommiterXiang, Haihao

Log Message

set the minimum of vp9 deocding frame width and height as 1, not 8

Signed-off-by: peng.chen <peng.c.chen@intel.com>

Ändern Zusammenfassung

Diff

--- a/src/i965_decoder_utils.c
+++ b/src/i965_decoder_utils.c
@@ -1322,10 +1322,10 @@ intel_decoder_check_vp9_parameter(VADriverContextP ctx,
13221322 int i=0, index=0;
13231323
13241324 //Max support upto 4k for BXT
1325- if ((pic_param->frame_width-1 < 7) || (pic_param->frame_width-1 > 4095))
1325+ if ((pic_param->frame_width-1 < 0) || (pic_param->frame_width-1 > 4095))
13261326 return va_status;
13271327
1328- if ((pic_param->frame_height-1 < 7) || (pic_param->frame_height-1 > 4095))
1328+ if ((pic_param->frame_height-1 < 0) || (pic_param->frame_height-1 > 4095))
13291329 return va_status;
13301330
13311331 //Set the reference object in decode state for last reference