Files
Linux_Drivers/linux_5.10/drivers/media/test-drivers/vivid/vivid-ctrls.h
sam.xiang 5c7dd7acc3 [linux] create linux_5.10.4 from T-head official:
repo: https://github.com/T-head-Semi/linux
	commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb

Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
2023-03-10 20:32:41 +08:00

23 lines
527 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* vivid-ctrls.h - control support functions.
*
* Copyright 2014 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
*/
#ifndef _VIVID_CTRLS_H_
#define _VIVID_CTRLS_H_
enum vivid_hw_seek_modes {
VIVID_HW_SEEK_BOUNDED,
VIVID_HW_SEEK_WRAP,
VIVID_HW_SEEK_BOTH,
};
int vivid_create_controls(struct vivid_dev *dev, bool show_ccs_cap,
bool show_ccs_out, bool no_error_inj,
bool has_sdtv, bool has_hdmi);
void vivid_free_controls(struct vivid_dev *dev);
#endif