Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4599f1a authored by Govindaraj Rajagopal's avatar Govindaraj Rajagopal
Browse files

msm: vidc: add plane_reserved_field and cb_event type enums



[1] Added msm_vidc_plane_reserved_field_types enum for
    setting/getting plane reserve fields.
[2] Added msm_vidc_cb_event_types enum for setting/getting
    Seq_changed_event types.

Change-Id: Ie6cb908515c9714d26f00fdd25af2dfcd875d725
Signed-off-by: default avatarGovindaraj Rajagopal <grajagop@codeaurora.org>
parent 9881e48f
Loading
Loading
Loading
Loading
+21 −0
Original line number Original line Diff line number Diff line
@@ -348,4 +348,25 @@ enum msm_vidc_hdr_info_types {
	MSM_VIDC_RGB_MAX_FLL,
	MSM_VIDC_RGB_MAX_FLL,
};
};


enum msm_vidc_plane_reserved_field_types {
	MSM_VIDC_BUFFER_FD,
	MSM_VIDC_DATA_OFFSET,
	MSM_VIDC_COMP_RATIO,
	MSM_VIDC_INPUT_TAG_1,
	MSM_VIDC_INPUT_TAG_2,
};

enum msm_vidc_cb_event_types {
	MSM_VIDC_HEIGHT,
	MSM_VIDC_WIDTH,
	MSM_VIDC_BIT_DEPTH,
	MSM_VIDC_PIC_STRUCT,
	MSM_VIDC_COLOR_SPACE,
	MSM_VIDC_CROP_TOP,
	MSM_VIDC_CROP_LEFT,
	MSM_VIDC_CROP_HEIGHT,
	MSM_VIDC_CROP_WIDTH,
	MSM_VIDC_PROFILE,
	MSM_VIDC_LEVEL,
};
#endif
#endif