diff options
author | Austin Yuan <shengquan.yuan@gmail.com> | 2010-07-26 10:23:34 +0800 |
---|---|---|
committer | Austin Yuan <shengquan.yuan@gmail.com> | 2010-07-26 10:23:34 +0800 |
commit | 923238f0b323ac934134a899c0907fd8674b5908 (patch) | |
tree | ab78fe5c6e448e51b2b240545a808284b456e1a2 /dummy_drv_video | |
parent | 2224d4c74fd098d1d6c29066eb99ded8f5967d08 (diff) |
remove VADisplayAttribCSC* which is duplicated, and add VADisplayAttribCSCMatrix for customized CSC matrix
Signed-off-by: Austin Yuan <shengquan.yuan@gmail.com>
Diffstat (limited to 'dummy_drv_video')
-rw-r--r-- | dummy_drv_video/dummy_drv_video.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dummy_drv_video/dummy_drv_video.c b/dummy_drv_video/dummy_drv_video.c index ed72824..90eb9c6 100644 --- a/dummy_drv_video/dummy_drv_video.c +++ b/dummy_drv_video/dummy_drv_video.c @@ -1040,7 +1040,7 @@ VAStatus dummy_QuerySurfaceStatus( VAStatus dummy_PutSurface( VADriverContextP ctx, VASurfaceID surface, - Drawable draw, /* X Drawable */ + void *draw, /* X Drawable */ short srcx, short srcy, unsigned short srcw, @@ -1055,6 +1055,10 @@ VAStatus dummy_PutSurface( ) { /* TODO */ + Drawable drawable = (Drawable)draw; + + (void)drawable; + return VA_STATUS_ERROR_UNKNOWN; } |