comparison rdt.h @ 4025:4a266106f604 libavformat

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.
author rbultje
date Sat, 15 Nov 2008 02:22:47 +0000
parents ff78dd8e198a
children 9a0a46d465ae
comparison
equal deleted inserted replaced
4024:459dd8d5ad86 4025:4a266106f604
70 /** 70 /**
71 * Parse RDT-style packet header. 71 * Parse RDT-style packet header.
72 * 72 *
73 * @param buf input buffer 73 * @param buf input buffer
74 * @param len length of input buffer 74 * @param len length of input buffer
75 * @param sn will be set to the stream number this packet belongs to 75 * @param set_id will be set to the set ID this packet belongs to
76 * @param seq will be set to the sequence number this packet belongs to 76 * @param seq_no will be set to the sequence number this packet belongs to
77 * @param rn will be set to the rule number this packet belongs to 77 * @param stream_id will be set to the stream ID this packet belongs to
78 * @param ts will be set to the timestamp of the packet 78 * @param timestamp will be set to the timestamp of the packet
79 * @return the amount of bytes consumed, or <0 on error 79 * @return the amount of bytes consumed, or <0 on error
80 */ 80 */
81 int ff_rdt_parse_header(const uint8_t *buf, int len, 81 int ff_rdt_parse_header(const uint8_t *buf, int len,
82 int *sn, int *seq, int *rn, uint32_t *ts); 82 int *set_id, int *seq_no, int *stream_id, uint32_t *timestamp);
83 83
84 /** 84 /**
85 * Parse RDT-style packet data (header + media data). 85 * Parse RDT-style packet data (header + media data).
86 * Usage similar to rtp_parse_packet(). 86 * Usage similar to rtp_parse_packet().
87 */ 87 */