Commit c1840cbd authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'dc4acc82'

* commit 'dc4acc82':
  rtmpproto: Extend a comment to explain the prev_pkt arrays roles
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents e81411e8 dc4acc82
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment