diff options
author | Sebastian Ramacher <sramacher@debian.org> | 2014-05-23 08:57:33 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2014-06-06 12:45:03 +0800 |
commit | a664a099f7e41e16f3fbc13eb73f71e2cd0e72ae (patch) | |
tree | fc5ca09edf4ffcf235ed17689a2ca6a77cd7bc60 | |
parent | 338180cf36cc5cf641827a33e800e7faa78efa0f (diff) | |
download | libva-intel-driver-a664a099f7e41e16f3fbc13eb73f71e2cd0e72ae.tar.gz libva-intel-driver-a664a099f7e41e16f3fbc13eb73f71e2cd0e72ae.tar.bz2 libva-intel-driver-a664a099f7e41e16f3fbc13eb73f71e2cd0e72ae.zip |
Define i965_proc_picture in header
Signed-off-by: Sebastian Ramacher <sramacher@debian.org>
Reviewed-by: Zhao, Yakui <yakui.zhao@intel.com>
(cherry picked from commit e9e9b55c769a6c0b90d6af5d89a6baf4c6f742be)
-rw-r--r-- | src/gen75_picture_process.c | 6 | ||||
-rwxr-xr-x | src/i965_post_processing.h | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/gen75_picture_process.c b/src/gen75_picture_process.c index 7f09b4f..87b6c68 100644 --- a/src/gen75_picture_process.c +++ b/src/gen75_picture_process.c @@ -38,12 +38,6 @@ #include "i965_post_processing.h" #include "gen75_picture_process.h" -extern void -i965_proc_picture(VADriverContextP ctx, - VAProfile profile, - union codec_state *codec_state, - struct hw_context *hw_context); - extern struct hw_context * i965_proc_context_init(VADriverContextP ctx, struct object_config *obj_config); diff --git a/src/i965_post_processing.h b/src/i965_post_processing.h index 76f3595..f0a277e 100755 --- a/src/i965_post_processing.h +++ b/src/i965_post_processing.h @@ -576,4 +576,11 @@ i965_post_processing_terminate(VADriverContextP ctx); bool i965_post_processing_init(VADriverContextP ctx); + +extern VAStatus +i965_proc_picture(VADriverContextP ctx, + VAProfile profile, + union codec_state *codec_state, + struct hw_context *hw_context); + #endif /* __I965_POST_PROCESSING_H__ */ |