diff options
author | Xiang, Haihao <haihao.xiang@intel.com> | 2013-06-21 10:26:13 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2014-02-27 10:22:18 +0800 |
commit | f7cf2fc0a882ee7082530cff0b40adda8efc23b6 (patch) | |
tree | 0ab3357cd8697f22cf4f25000706d7fd1af4268b | |
parent | 1543f2ffa17d6c648181562247439a38f0a399c4 (diff) |
VPP: add VPP Filters for BDW
Needs to rebuild the shader for VAProcFilterSharpening on BDW
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
-rwxr-xr-x | src/i965_drv_video.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/i965_drv_video.c b/src/i965_drv_video.c index 86476b6..bfb1092 100755 --- a/src/i965_drv_video.c +++ b/src/i965_drv_video.c @@ -343,7 +343,16 @@ static struct hw_codec_info gen8_hw_codec_info = { .has_accelerated_getimage = 1, .has_accelerated_putimage = 1, .has_tiled_surface = 1, + .has_di_motion_adptive = 1, .has_vp8_decoding = 1, + + .num_filters = 4, + .filters = { + VAProcFilterNoiseReduction, + VAProcFilterDeinterlacing, + VAProcFilterSharpening, /* need to rebuild the shader for BDW */ + VAProcFilterColorBalance, + }, }; #define I965_PACKED_HEADER_BASE 0 |