msm_vidc_control.h 475 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _MSM_VIDC_CONTROL_H_
  6. #define _MSM_VIDC_CONTROL_H_
  7. #include <media/msm_vidc_utils.h>
  8. #include "msm_vidc_inst.h"
  9. #include "msm_vidc_internal.h"
  10. enum msm_vidc_ctrl_list_type {
  11. CHILD_LIST = BIT(0),
  12. FW_LIST = BIT(1),
  13. };
  14. int msm_vidc_ctrl_init(struct msm_vidc_inst *inst);
  15. int msm_v4l2_op_s_ctrl(struct v4l2_ctrl *ctrl);
  16. #endif