• 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/common/libva


Commit MetaInfo

Revision4e71a2ddfd56543c60e91525726d136a526d1162 (tree)
Time2009-08-27 18:50:18
AuthorAustin Yuan <shengquan.yuan@inte...>
CommiterAustin Yuan

Log Message

Assgin VASurfaceRendering a non-zero value instead of 0

Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>

Change Summary

Incremental Difference

--- a/src/va.h
+++ b/src/va.h
@@ -1250,12 +1250,12 @@ VAStatus vaSyncSurface (
12501250
12511251 typedef enum
12521252 {
1253- VASurfaceRendering = 0, /* Rendering in progress */
1254- VASurfaceDisplaying = 1, /* Displaying in progress (not safe to render into it) */
1253+ VASurfaceRendering = 1, /* Rendering in progress */
1254+ VASurfaceDisplaying = 2, /* Displaying in progress (not safe to render into it) */
12551255 /* this status is useful if surface is used as the source */
12561256 /* of an overlay */
1257- VASurfaceReady = 2, /* not being rendered or displayed */
1258- VASurfaceSkipped = 4 /* Indicate a skipped frame during encode */
1257+ VASurfaceReady = 4, /* not being rendered or displayed */
1258+ VASurfaceSkipped = 8 /* Indicate a skipped frame during encode */
12591259 } VASurfaceStatus;
12601260
12611261 /*