22 lines
657 B
C
22 lines
657 B
C
|
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
|
||
|
/*
|
||
|
* This file is provided under a dual BSD/GPLv2 license. When using or
|
||
|
* redistributing this file, you may do so under either license.
|
||
|
*
|
||
|
* Copyright(c) 2018 Intel Corporation. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef __INCLUDE_UAPI_SOUND_SOF_USER_TONE_H__
|
||
|
#define __INCLUDE_UAPI_SOUND_SOF_USER_TONE_H__
|
||
|
|
||
|
#define SOF_TONE_IDX_FREQUENCY 0
|
||
|
#define SOF_TONE_IDX_AMPLITUDE 1
|
||
|
#define SOF_TONE_IDX_FREQ_MULT 2
|
||
|
#define SOF_TONE_IDX_AMPL_MULT 3
|
||
|
#define SOF_TONE_IDX_LENGTH 4
|
||
|
#define SOF_TONE_IDX_PERIOD 5
|
||
|
#define SOF_TONE_IDX_REPEATS 6
|
||
|
#define SOF_TONE_IDX_LIN_RAMP_STEP 7
|
||
|
|
||
|
#endif
|