diff options
author | Martin Storsjö <martin@martin.st> | 2013-09-17 17:43:48 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-09-17 20:09:25 +0300 |
commit | dc4acc820076b2149ef6c921bdabe05d07ca1bc6 (patch) | |
tree | 59c50ee3be3a2bc8e9e570bb2d0d81749675ded0 /libavformat | |
parent | 647d655d19c38e9716328e4787199149097d6089 (diff) | |
download | ffmpeg-dc4acc820076b2149ef6c921bdabe05d07ca1bc6.tar.gz |
rtmpproto: Extend a comment to explain the prev_pkt arrays roles
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtmpproto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index 1aff0c8e81..ab30b19a26 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -76,7 +76,7 @@ typedef struct TrackedMethod { typedef struct RTMPContext { const AVClass *class; URLContext* stream; ///< TCP stream used in interactions with RTMP server - RTMPPacket prev_pkt[2][RTMP_CHANNELS]; ///< packet history used when reading and sending packets + RTMPPacket prev_pkt[2][RTMP_CHANNELS]; ///< packet history used when reading and sending packets ([0] for reading, [1] for writing) int in_chunk_size; ///< size of the chunks incoming RTMP packets are divided into int out_chunk_size; ///< size of the chunks outgoing RTMP packets are divided into int is_input; ///< input/output flag |