diff options
author | Xiang, Haihao <haihao.xiang@intel.com> | 2010-03-31 13:51:22 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2010-03-31 13:52:30 +0800 |
commit | 5e9134fc084d766b628249ca9a08d533a2378e38 (patch) | |
tree | 6e3a584207b5bd9b96b770a7ef7a4be9c389f3f1 /i965_drv_video.h | |
parent | 73ebc2e5a3f89fd4edb9f9f9510adb2516ded487 (diff) | |
download | libva-intel-driver-5e9134fc084d766b628249ca9a08d533a2378e38.tar.gz libva-intel-driver-5e9134fc084d766b628249ca9a08d533a2378e38.tar.bz2 libva-intel-driver-5e9134fc084d766b628249ca9a08d533a2378e38.zip |
i965_drv_video: move DMV buffer to private data
Diffstat (limited to 'i965_drv_video.h')
-rw-r--r-- | i965_drv_video.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/i965_drv_video.h b/i965_drv_video.h index 605b386..b7e02a5 100644 --- a/i965_drv_video.h +++ b/i965_drv_video.h @@ -97,9 +97,8 @@ struct object_surface int height; int size; dri_bo *bo; - /* FIXME: only for H.264 */ - dri_bo *direct_mv_wr_top_bo; - dri_bo *direct_mv_wr_bottom_bo; + void (*free_private_data)(void **data); + void *private_data; }; struct object_buffer |