summaryrefslogtreecommitdiff
path: root/src/audio.c
diff options
context:
space:
mode:
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 */