summaryrefslogtreecommitdiff
path: root/libavformat/rdt.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2008-11-15 02:22:47 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2008-11-15 02:22:47 +0000
commit239dec21ab969e27d760218dfdfc91568b43a2d4 (patch)
tree0e8ac2f4710d935d0bf092f8081d55dbdcab4fa4 /libavformat/rdt.h
parent7d0842992a92a81adbe67843145c7e4249a99ead (diff)
Rename variables in ff_rdt_parse_header() and callers to match the
comment documentation in that function. See discussion on ML in the "[PATCH] RDT/Realmedia patches #2" thread. Originally committed as revision 15825 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rdt.h')
-rw-r--r--libavformat/rdt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/rdt.h b/libavformat/rdt.h
index aa6cbaac3c..7e33b063be 100644
--- a/libavformat/rdt.h
+++ b/libavformat/rdt.h
@@ -72,14 +72,14 @@ void ff_rdt_subscribe_rule2(RDTDemuxContext *s, char *cmd, int size,
*
* @param buf input buffer
* @param len length of input buffer
- * @param sn will be set to the stream number this packet belongs to
- * @param seq will be set to the sequence number this packet belongs to
- * @param rn will be set to the rule number this packet belongs to
- * @param ts will be set to the timestamp of the packet
+ * @param set_id will be set to the set ID this packet belongs to
+ * @param seq_no will be set to the sequence number this packet belongs to
+ * @param stream_id will be set to the stream ID this packet belongs to
+ * @param timestamp will be set to the timestamp of the packet
* @return the amount of bytes consumed, or <0 on error
*/
int ff_rdt_parse_header(const uint8_t *buf, int len,
- int *sn, int *seq, int *rn, uint32_t *ts);
+ int *set_id, int *seq_no, int *stream_id, uint32_t *timestamp);
/**
* Parse RDT-style packet data (header + media data).