1AuElement(3) Library Functions Manual AuElement(3)
2
3
4
6 AuElement - AuElement union
7
9 #include <audio/audiolib.h>
10
11 typedef union _AuElement
12 {
13 unsigned short type;
14 AuElementImportClient importclient;
15 AuElementImportDevice importdevice;
16 AuElementImportBucket importbucket;
17 AuElementImportWaveForm importwaveform;
18 AuElementBundle bundle;
19 AuElementMultiplyConstant multiplyconstant;
20 AuElementAddConstant addconstant;
21 AuElementSum sum;
22 AuElementExportClient exportclient;
23 AuElementExportDevice exportdevice;
24 AuElementExportBucket exportbucket;
25 AuElementExportMonitor exportmonitor;
26 }AuElement;
27
29 type Specifies the element type. Currently, one of these con‐
30 stants: AuElementTypeAddConstant, AuElementTypeBundle, AuEle‐
31 mentTypeExportBucket, AuElementTypeExportClient, AuElement‐
32 TypeExportDevice, AuElementTypeExportMonitor, AuElementType‐
33 ImportClient, AuElementTypeImportDevice, AuElementTypeImport‐
34 Bucket, AuElementTypeImportWaveForm, AuElementTypeMultiply‐
35 Constant, or AuElementTypeSum.
36
37 importclient
38 Used to read audio data from a client application.
39
40 importdevice
41 Used to read audio data from a device.
42
43 importbucket
44 Used to read audio data from a bucket.
45
46 importwaveform
47 Used to read audio data from a waveform generator.
48
49 bundle Used to access tracks in audio data.
50
51 multiplyconstant
52 Used to scale the value of samples in audio data.
53
54 addconstant
55 Used to offset the value of samples in audio data.
56
57 sum Used to merge together samples from different inputs.
58
59 exportclient
60 Used to write audio data to a client application.
61
62 exportdevice
63 Used to write audio data to a device.
64
65 exportbucket
66 Used to write audio data to a bucket.
67
68 exportmonitor
69 Used to write monitor data to a client application.
70
72 Elements are instructions to the server on how to handle the audio data
73 in a flow.
74
76 AuMakeElementAddConstant, AuMakeElementBundle, AuMakeElementImport‐
77 Client, AuMakeElementImportDevice, AuMakeElementImportBucket, AuMa‐
78 keElementImportWaveForm, AuMakeElementExportClient, AuMakeElementEx‐
79 portDevice, AuMakeElementExportBucket, AuMakeElementExportMonitor, Au‐
80 MakeElementMultiplyConstant, AuMakeElementSum, AuReadElement, AuSetEle‐
81 ments, AuSetElementParameters, AuWriteElement.
82
83 audiolib - Network Audio System C Language Interface
84
85
86
87audiolib - element union 1.9.5 AuElement(3)