diff options
author | Alexander I Osin <alexander.i.osin@intel.com> | 2011-04-28 19:05:45 +0300 |
---|---|---|
committer | Austin Yuan <shengquan.yuan@gmail.com> | 2011-05-06 10:44:45 +0800 |
commit | a983263fe97f1d9d5f09c5ff1fef114a4312f328 (patch) | |
tree | 870a109e459bd353a9546ca117f646989cdb9937 | |
parent | a47f2c4911d358dbca115138561476b3ab844a7c (diff) | |
download | libva-a983263fe97f1d9d5f09c5ff1fef114a4312f328.tar.gz |
corrected vaBufferInfo interface
-rw-r--r-- | va/va_backend.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/va/va_backend.h b/va/va_backend.h index 060afd3..9b47cae 100644 --- a/va/va_backend.h +++ b/va/va_backend.h @@ -347,11 +347,10 @@ struct VADriverVTable /* used by va trace */ VAStatus (*vaBufferInfo) ( - VADriverContextP ctx, - VAContextID context, /* in */ - VABufferID buf_id, /* in */ - VABufferType *type, /* out */ - unsigned int *size, /* out */ + VADriverContextP ctx, /* in */ + VABufferID buf_id, /* in */ + VABufferType *type, /* out */ + unsigned int *size, /* out */ unsigned int *num_elements /* out */ ); |