From: Austin Yuan Date: Thu, 27 Aug 2009 09:50:18 +0000 (+0800) Subject: Assgin VASurfaceRendering a non-zero value instead of 0 X-Git-Tag: 20091130_Alpha4~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e71a2ddfd56543c60e91525726d136a526d1162;p=platform%2Fupstream%2Flibva.git Assgin VASurfaceRendering a non-zero value instead of 0 Signed-off-by: Austin Yuan --- diff --git a/src/va.h b/src/va.h index 2d5169a..32eab56 100644 --- a/src/va.h +++ b/src/va.h @@ -1250,12 +1250,12 @@ VAStatus vaSyncSurface ( typedef enum { - VASurfaceRendering = 0, /* Rendering in progress */ - VASurfaceDisplaying = 1, /* Displaying in progress (not safe to render into it) */ + VASurfaceRendering = 1, /* Rendering in progress */ + VASurfaceDisplaying = 2, /* Displaying in progress (not safe to render into it) */ /* this status is useful if surface is used as the source */ /* of an overlay */ - VASurfaceReady = 2, /* not being rendered or displayed */ - VASurfaceSkipped = 4 /* Indicate a skipped frame during encode */ + VASurfaceReady = 4, /* not being rendered or displayed */ + VASurfaceSkipped = 8 /* Indicate a skipped frame during encode */ } VASurfaceStatus; /*