summaryrefslogtreecommitdiff
path: root/src/audio.c
diff options
context:
space:
mode:
authorAlfred E. Heggestad <alfred.heggestad@gmail.com>2016-12-10 11:21:23 +0100
committerAlfred E. Heggestad <alfred.heggestad@gmail.com>2016-12-10 11:21:23 +0100
commit8330bae7c671443c6b78d7f94c34809da6f1bd18 (patch)
treeb8fa6e0f3f2f5fd225650bd5e22d7a8e04957ca3 /src/audio.c
parent3aa871a496a36bc2a2b76fc2b326d7e19e493077 (diff)
update doxygen comments
Diffstat (limited to 'src/audio.c')
-rw-r--r--src/audio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio.c b/src/audio.c
index c204755..43af671 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -76,7 +76,7 @@ enum {
*/
struct autx {
struct ausrc_st *ausrc; /**< Audio Source */
- struct ausrc_prm ausrc_prm;
+ struct ausrc_prm ausrc_prm; /**< Audio Source parameters */
const struct aucodec *ac; /**< Current audio encoder */
struct auenc_state *enc; /**< Audio encoder state (optional) */
struct aubuf *aubuf; /**< Packetize outgoing stream */
@@ -123,7 +123,7 @@ struct autx {
*/
struct aurx {
struct auplay_st *auplay; /**< Audio Player */
- struct auplay_prm auplay_prm;
+ struct auplay_prm auplay_prm; /**< Audio Player parameters */
const struct aucodec *ac; /**< Current audio decoder */
struct audec_state *dec; /**< Audio decoder state (optional) */
struct aubuf *aubuf; /**< Incoming audio buffer */