diff options
author | Zhao Yakui <yakui.zhao@intel.com> | 2014-04-22 11:05:18 +0800 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2014-04-23 14:27:13 +0800 |
commit | 0d3462360f624750233d77771d55f48bc00039e5 (patch) | |
tree | efafa806803db8cdbbdaa87a6125876ddea84052 | |
parent | 2d00edc3d07997bd322ce4d905c84cb7f52dd421 (diff) |
VPP: Set the alpha channel when doing the conversion from NV12 to RGBA on Ivy/Haswell/BDW
Currently zero is written to alpha channel when doing the conversion
from NV12 to RGBA(BGRA), which affects the following the rendering operation.
Signed-off-by: Zhao Yakui <yakui.zhao@intel.com>
(cherry picked from commit 4082c9db1eef45bc117fc151d60a178926ab9f73)
-rw-r--r-- | src/gen8_post_processing.c | 1 | ||||
-rwxr-xr-x | src/i965_post_processing.c | 1 | ||||
-rwxr-xr-x | src/i965_post_processing.h | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/gen8_post_processing.c b/src/gen8_post_processing.c index 4fbc01e..f076830 100644 --- a/src/gen8_post_processing.c +++ b/src/gen8_post_processing.c @@ -973,6 +973,7 @@ gen8_pp_plx_avs_initialize(VADriverContextP ctx, struct i965_post_processing_con pp_static_parameter->grf2.avs_wa_width = src_width; pp_static_parameter->grf2.avs_wa_one_div_256_width = (float) 1.0 / (256 * src_width); pp_static_parameter->grf2.avs_wa_five_div_256_width = (float) 5.0 / (256 * src_width); + pp_static_parameter->grf2.alpha = 255; pp_static_parameter->grf3.sampler_load_horizontal_scaling_step_ratio = (float) pp_avs_context->src_w / dw; pp_static_parameter->grf4.sampler_load_vertical_scaling_step = (float) src_rect->height / src_height / dst_rect->height; diff --git a/src/i965_post_processing.c b/src/i965_post_processing.c index 3dc7d8c..95b20e4 100755 --- a/src/i965_post_processing.c +++ b/src/i965_post_processing.c @@ -2953,6 +2953,7 @@ gen7_pp_plx_avs_initialize(VADriverContextP ctx, struct i965_post_processing_con pp_static_parameter->grf2.avs_wa_width = dw; pp_static_parameter->grf2.avs_wa_one_div_256_width = (float) 1.0 / (256 * dw); pp_static_parameter->grf2.avs_wa_five_div_256_width = (float) 5.0 / (256 * dw); + pp_static_parameter->grf2.alpha = 255; pp_static_parameter->grf3.sampler_load_horizontal_scaling_step_ratio = (float) pp_avs_context->src_w / dw; pp_static_parameter->grf4.sampler_load_vertical_scaling_step = (float) src_rect->height / src_height / dst_rect->height; diff --git a/src/i965_post_processing.h b/src/i965_post_processing.h index 29b8cdc..fd4cbcf 100755 --- a/src/i965_post_processing.h +++ b/src/i965_post_processing.h @@ -380,7 +380,7 @@ struct gen7_pp_static_parameter unsigned int di_destination_packed_y_component_offset:8; unsigned int di_destination_packed_u_component_offset:8; unsigned int di_destination_packed_v_component_offset:8; - unsigned int pad0:8; + unsigned int alpha:8; } grf2; struct { |