diff options
author | Waldo Bastian <waldo.bastian@intel.com> | 2007-10-25 14:37:43 -0700 |
---|---|---|
committer | Waldo Bastian <waldo.bastian@intel.com> | 2007-10-25 14:37:43 -0700 |
commit | 12e8a2285aa804855eb0f5c23074d31b807a7091 (patch) | |
tree | 2d05c1fbdee5fae767266bdbc818c5fbdb143496 /src/va_backend.h | |
parent | 8f82bf2b75af292172e8f587b61b5f31649c26a3 (diff) |
* Improve validation of input parameters & error reporting
Diffstat (limited to 'src/va_backend.h')
-rwxr-xr-x | src/va_backend.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/va_backend.h b/src/va_backend.h index 3ffb113..68149e4 100755 --- a/src/va_backend.h +++ b/src/va_backend.h @@ -51,7 +51,7 @@ struct VADriverContext int max_display_attributes; void *handle; /* dlopen handle */ void *pDriverData; - struct + struct VADriverVTable { VAStatus (*vaTerminate) ( VADriverContextP ctx ); @@ -139,15 +139,15 @@ struct VADriverContext VAStatus (*vaBufferData) ( VADriverContextP ctx, VABufferID buf_id, /* in */ - unsigned int size, /* in */ - unsigned int num_elements, /* in */ - void *data /* in */ + unsigned int size, /* in */ + unsigned int num_elements, /* in */ + void *data /* in */ ); VAStatus (*vaBufferSetNumElements) ( VADriverContextP ctx, VABufferID buf_id, /* in */ - unsigned int num_elements /* in */ + unsigned int num_elements /* in */ ); VAStatus (*vaMapBuffer) ( |