vivid-ctrls.h 527 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * vivid-ctrls.h - control support functions.
  4. *
  5. * Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
  6. */
  7. #ifndef _VIVID_CTRLS_H_
  8. #define _VIVID_CTRLS_H_
  9. enum vivid_hw_seek_modes {
  10. VIVID_HW_SEEK_BOUNDED,
  11. VIVID_HW_SEEK_WRAP,
  12. VIVID_HW_SEEK_BOTH,
  13. };
  14. int vivid_create_controls(struct vivid_dev *dev, bool show_ccs_cap,
  15. bool show_ccs_out, bool no_error_inj,
  16. bool has_sdtv, bool has_hdmi);
  17. void vivid_free_controls(struct vivid_dev *dev);
  18. #endif