mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
msm: cpp: Add stripe parameters to pproc header
Add ubwc stripe parameters to pproc headers. Use unsigned integer for x and y end offsets for extra offsets. Change-Id: Ie97e863744478b0a6fefa625132c9834d341059b Signed-off-by: Krishnankutty Kolathappilly <kkolatha@codeaurora.org>
This commit is contained in:
parent
cd95f22fda
commit
1aecd1546a
1 changed files with 7 additions and 2 deletions
|
@ -47,9 +47,9 @@ struct msm_cpp_frame_strip_info {
|
||||||
|
|
||||||
/* extra 5th and 6th layer parameters */
|
/* extra 5th and 6th layer parameters */
|
||||||
int32_t extra_src_start_x;
|
int32_t extra_src_start_x;
|
||||||
int32_t extra_src_end_x;
|
uint32_t extra_src_end_x;
|
||||||
int32_t extra_src_start_y;
|
int32_t extra_src_start_y;
|
||||||
int32_t extra_src_end_y;
|
uint32_t extra_src_end_y;
|
||||||
|
|
||||||
int32_t extra_initial_vertical_count[2];
|
int32_t extra_initial_vertical_count[2];
|
||||||
int32_t extra_initial_horizontal_count[2];
|
int32_t extra_initial_horizontal_count[2];
|
||||||
|
@ -159,6 +159,11 @@ struct msm_cpp_frame_strip_info {
|
||||||
int32_t we_v_init;
|
int32_t we_v_init;
|
||||||
int32_t we_h_step;
|
int32_t we_h_step;
|
||||||
int32_t we_v_step;
|
int32_t we_v_step;
|
||||||
|
|
||||||
|
int32_t temporal_we_h_init;
|
||||||
|
int32_t temporal_we_v_init;
|
||||||
|
int32_t temporal_we_h_step;
|
||||||
|
int32_t temporal_we_v_step;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct msm_cpp_buffer_info_t {
|
struct msm_cpp_buffer_info_t {
|
||||||
|
|
Loading…
Reference in a new issue