Skip to content

Commit 6192661

Browse files
committed
Compile error.
1 parent 6f0c151 commit 6192661

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

src/audio.h

+11-4
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,23 @@ struct audio_s {
7474

7575
/* Properties of the sound device. */
7676

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. */
7986

8087
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. */
8289

8390
char adevice_out[80]; /* Name of the audio output device (or file?). */
8491

8592
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. */
8794
int bits_per_sample; /* 8 (unsigned char) or 16 (signed short). */
8895

8996
} adev[MAX_ADEVS];

0 commit comments

Comments
 (0)