1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// SPDX-License-Identifier: GPL-2.0
/*
* ALSA Virtual Soundcard
*
* core.h - System-level header for virtual ALSA card
*
* Copyright (C) 2010-2018 Fiberdyne Systems Pty Ltd
*/
#ifndef __AVIRT_CORE_H__
#define __AVIRT_CORE_H__
#include <sound/pcm.h>
#define DINFO(ap, fmt, args...) \
printk(KERN_INFO "[%s] %d:%s " fmt "\n", ap, __LINE__, __func__, ##args)
#define DERROR(ap, fmt, args...) \
printk(KERN_ERR "[%s] %d:%s " fmt "\n", AP_LOGNAME, __LINE__, \
__func__, ##args)
#define DPRINT(ap, fmt, args...) \
printk(KERN_DEBUG "[%s] %d:%s " fmt "\n", AP_LOGNAME, __LINE__, \
__func__, ##args)
/**
* PCM buffer complete callback
*
* These are called from the audiopath when a PCM buffer has completed, and
* new data can be submitted/retrieved
*/
typedef int (*avirt_buff_complete)(struct snd_pcm_substream *substream);
struct avirt_audiopath {
const char *name;
unsigned version[3];
int value;
struct snd_pcm_hardware *hw;
struct snd_pcm_ops *pcm_ops;
unsigned blocksize;
void *context;
};
struct avirt_coreinfo {
unsigned version[3];
unsigned playback_num;
unsigned capture_num;
avirt_buff_complete pcm_buff_complete;
};
/**
* avirt_register_audiopath - register Audio Path with ALSA virtual driver
* @audiopath: Audio Path to be registered
* @core: ALSA virtual driver core info
* @return: 0 on success or error code otherwise
*/
int avirt_register_audiopath(struct avirt_audiopath *audiopath,
struct avirt_coreinfo **coreinfo);
/**
* avirt_deregister_audiopath - deregister Audio Path with ALSA virtual driver
* @audiopath: Audio Path to be deregistered
* @return: 0 on success or error code otherwise
*/
int avirt_deregister_audiopath(struct avirt_audiopath *audiopath);
/**
* avirt_get_current_audiopath - retrieves the current Audio Path
* @return: Current Audio Path
*/
struct avirt_audiopath *avirt_get_current_audiopath(void);
#endif // __AVIRT_CORE_H__
|