Commit 8db6ca66 authored by Austin Yuan's avatar Austin Yuan

Merge branch 'master' into mrst-video

parents b55eb7ba b355047a
...@@ -1199,7 +1199,7 @@ VAStatus dummy_Terminate( VADriverContextP ctx ) ...@@ -1199,7 +1199,7 @@ VAStatus dummy_Terminate( VADriverContextP ctx )
return VA_STATUS_SUCCESS; return VA_STATUS_SUCCESS;
} }
VAStatus __vaDriverInit_0_28( VADriverContextP ctx ) VAStatus __vaDriverInit_0_29( VADriverContextP ctx )
{ {
object_base_p obj; object_base_p obj;
int result; int result;
...@@ -1207,7 +1207,7 @@ VAStatus __vaDriverInit_0_28( VADriverContextP ctx ) ...@@ -1207,7 +1207,7 @@ VAStatus __vaDriverInit_0_28( VADriverContextP ctx )
int i; int i;
ctx->version_major = 0; ctx->version_major = 0;
ctx->version_minor = 28; ctx->version_minor = 29;
ctx->max_profiles = DUMMY_MAX_PROFILES; ctx->max_profiles = DUMMY_MAX_PROFILES;
ctx->max_entrypoints = DUMMY_MAX_ENTRYPOINTS; ctx->max_entrypoints = DUMMY_MAX_ENTRYPOINTS;
ctx->max_attributes = DUMMY_MAX_CONFIG_ATTRIBUTES; ctx->max_attributes = DUMMY_MAX_CONFIG_ATTRIBUTES;
......
...@@ -228,12 +228,10 @@ void test() ...@@ -228,12 +228,10 @@ void test()
XMapWindow(dpy, win); XMapWindow(dpy, win);
XSync(dpy, False); XSync(dpy, False);
#if 0
va_status = vaPutSurface(va_dpy, vaSurface, win, va_status = vaPutSurface(va_dpy, vaSurface, win,
0,0,surf_width,surf_height, 0,0,surf_width,surf_height,
0,0,win_width,win_height, 0,0,win_width,win_height,
NULL,0,0); NULL,0,0);
#endif
ASSERT( VA_STATUS_SUCCESS == va_status ); ASSERT( VA_STATUS_SUCCESS == va_status );
printf("press any key to exit\n"); printf("press any key to exit\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment