summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2014-04-12 21:18:30 +0200
committerAlfred E. Heggestad <aeh@db.org>2014-04-12 21:18:30 +0200
commit096d7d04150eaa45c09e831aa98de1621c37a41d (patch)
tree877ed6b93cb1b176b0311715ef482b5d0d34558d /src
parent810720e7790a6736f96c30c82ecf29d4fcefb7e3 (diff)
added some missing comments
Diffstat (limited to 'src')
-rw-r--r--src/audio.c4
-rw-r--r--src/stream.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/audio.c b/src/audio.c
index a3f2600..46d7f03 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -81,7 +81,7 @@ struct autx {
struct auresamp resamp; /**< Optional resampler for DSP */
struct list filtl; /**< Audio filters in encoding order */
struct mbuf *mb; /**< Buffer for outgoing RTP packets */
- char device[64];
+ char device[64]; /**< Audio source device name */
int16_t *sampv; /**< Sample buffer */
int16_t *sampv_rs; /**< Sample buffer for resampler */
uint32_t ptime; /**< Packet time for sending */
@@ -127,7 +127,7 @@ struct aurx {
struct aubuf *aubuf; /**< Incoming audio buffer */
struct auresamp resamp; /**< Optional resampler for DSP */
struct list filtl; /**< Audio filters in decoding order */
- char device[64];
+ char device[64]; /**< Audio player device name */
int16_t *sampv; /**< Sample buffer */
int16_t *sampv_rs; /**< Sample buffer for resampler */
uint32_t ptime; /**< Packet time for receiving */
diff --git a/src/stream.c b/src/stream.c
index f30bf0c..74170b3 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -37,7 +37,7 @@ struct stream {
struct menc_media *mes; /**< Media Encryption media state */
struct metric metric_tx; /**< Metrics for transmit */
struct metric metric_rx; /**< Metrics for receiving */
- char *cname;
+ char *cname; /**< RTCP Canonical end-point identifier */
uint32_t ssrc_rx; /**< Incoming syncronizing source */
uint32_t pseq; /**< Sequence number for incoming RTP */
int pt_enc; /**< Payload type for encoding */