mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
4b32216adb
When the first test device was added (vivi.c), there were just one file. I was too lazy on that time to create a separate directory just for it, so I kept it together with platform. Now, we have vivid, vicodec, vim2m and vimc. Also, a new virtual driver has been prepared to support DVB API. So, it is time to solve this mess, by placing test stuff on a separate directory. It should be noticed that we also have some skeleton drivers (for V4L and for DVB). For now, we'll keep them separate, as they're not really test drivers, but instead, just examples. The DVB frontend ones will likely be part of a new DVB test driver. By that time, it should make sense to move them here as well. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
23 lines
527 B
C
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
|