Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/pci/mixart/mixart_mixer.h
26451 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Driver for Digigram miXart soundcards
4
*
5
* include file for mixer
6
*
7
* Copyright (c) 2003 by Digigram <[email protected]>
8
*/
9
10
#ifndef __SOUND_MIXART_MIXER_H
11
#define __SOUND_MIXART_MIXER_H
12
13
/* exported */
14
int mixart_update_playback_stream_level(struct snd_mixart* chip, int is_aes, int idx);
15
int mixart_update_capture_stream_level(struct snd_mixart* chip, int is_aes);
16
int snd_mixart_create_mixer(struct mixart_mgr* mgr);
17
18
#endif /* __SOUND_MIXART_MIXER_H */
19
20