1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

rtpdec: Improve some comments

The previous comment about the buffer was wildly inaccurate and
misleading.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö
2012-12-11 19:57:18 +02:00
parent e66d448c75
commit d6ec745246

View File

@@ -94,7 +94,8 @@ typedef struct RTPStatistics {
* @param s stream context * @param s stream context
* @param st stream that this packet belongs to * @param st stream that this packet belongs to
* @param pkt packet in which to write the parsed data * @param pkt packet in which to write the parsed data
* @param timestamp pointer in which to write the timestamp of this RTP packet * @param timestamp pointer to the RTP timestamp of the input data, can be
* updated by the function if returning older, buffered data
* @param buf pointer to raw RTP packet data * @param buf pointer to raw RTP packet data
* @param len length of buf * @param len length of buf
* @param flags flags from the RTP packet header (RTP_FLAG_*) * @param flags flags from the RTP packet header (RTP_FLAG_*)
@@ -176,7 +177,7 @@ struct RTPDemuxContext {
unsigned int packet_count; // TODO: move into statistics (outgoing) unsigned int packet_count; // TODO: move into statistics (outgoing)
unsigned int octet_count; // TODO: move into statistics (outgoing) unsigned int octet_count; // TODO: move into statistics (outgoing)
unsigned int last_octet_count; // TODO: move into statistics (outgoing) unsigned int last_octet_count; // TODO: move into statistics (outgoing)
/* buffer for output */ /* buffer for partially parsed packets */
uint8_t buf[RTP_MAX_PACKET_LENGTH]; uint8_t buf[RTP_MAX_PACKET_LENGTH];
/* dynamic payload stuff */ /* dynamic payload stuff */