diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index b118b4e..5d7ad79 100644
|
a
|
b
|
typedef struct RTMPContext {
|
| 94 | 94 | int flv_nb_packets; ///< number of flv packets published |
| 95 | 95 | RTMPPacket out_pkt; ///< rtmp packet, created from flv a/v or metadata (for output) |
| 96 | 96 | uint32_t client_report_size; ///< number of bytes after which client should report to server |
| 97 | | uint32_t bytes_read; ///< number of bytes read from server |
| 98 | | uint32_t last_bytes_read; ///< number of bytes read last reported to server |
| | 97 | uint64_t bytes_read; ///< number of bytes read from server |
| | 98 | uint64_t last_bytes_read; ///< number of bytes read last reported to server |
| 99 | 99 | uint32_t last_timestamp; ///< last timestamp received in a packet |
| 100 | 100 | int skip_bytes; ///< number of bytes to skip from the input FLV stream in the next write call |
| 101 | 101 | int has_audio; ///< presence of audio data |