summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/audio.c4
-rw-r--r--src/ua.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/audio.c b/src/audio.c
index 8222c37..3b99b38 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -97,7 +97,7 @@ struct autx {
bool muted; /**< Audio source is muted */
int cur_key; /**< Currently transmitted event */
enum aufmt src_fmt; /**< Sample format for audio source */
- enum aufmt enc_fmt;
+ enum aufmt enc_fmt; /**< Sample format for encoder */
bool need_conv; /**< Sample format conversion needed */
struct {
@@ -149,7 +149,7 @@ struct aurx {
double level_last;
bool level_set;
enum aufmt play_fmt; /**< Sample format for audio playback*/
- enum aufmt dec_fmt;
+ enum aufmt dec_fmt; /**< Sample format for decoder */
bool need_conv; /**< Sample format conversion needed */
struct timestamp_recv ts_recv;/**< Receive timestamp state */
diff --git a/src/ua.c b/src/ua.c
index 565508e..76023d5 100644
--- a/src/ua.c
+++ b/src/ua.c
@@ -1911,8 +1911,8 @@ void ua_set_media_af(struct ua *ua, int af_media)
* Enable handling of all inbound requests, even if
* the request uri is not matching.
*
- * @param ua User-Agent
- * @param enable True to enable, false to disable
+ * @param ua User-Agent
+ * @param enabled True to enable, false to disable
*/
void ua_set_catchall(struct ua *ua, bool enabled)
{