File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -74,16 +74,23 @@ struct audio_s {
74
74
75
75
/* Properties of the sound device. */
76
76
77
- int defined ; /* Was device defined? */
78
- /* First one defaults to yes. */
77
+ int defined ; /* Was device defined? 0=no. >0 for yes. */
78
+ /* First channel defaults to 2 for yes with default config. */
79
+ /* 1 means it was defined by user. */
80
+
81
+ int copy_from ; /* >=0 means copy contents from another audio device. */
82
+ /* In this case we don't have device names, below. */
83
+ /* Num channels, samples/sec, and bit/sample are copied from */
84
+ /* original device and can't be changed. */
85
+ /* -1 for normal case. */
79
86
80
87
char adevice_in [80 ]; /* Name of the audio input device (or file?). */
81
- /* TODO: Can be "-" to read from stdin. */
88
+ /* Can be udp:nnn for UDP or "-" to read from stdin. */
82
89
83
90
char adevice_out [80 ]; /* Name of the audio output device (or file?). */
84
91
85
92
int num_channels ; /* Should be 1 for mono or 2 for stereo. */
86
- int samples_per_sec ; /* Audio sampling rate. Typically 11025, 22050, or 44100 . */
93
+ int samples_per_sec ; /* Audio sampling rate. Typically 11025, 22050, 44100, or 48000 . */
87
94
int bits_per_sample ; /* 8 (unsigned char) or 16 (signed short). */
88
95
89
96
} adev [MAX_ADEVS ];
You can’t perform that action at this time.
0 commit comments