diff options
author | Thijs <thijsvermeir@telenet.be> | 2006-10-27 18:19:29 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-10-27 18:19:29 +0000 |
commit | dbf30963f3599717e8ff90c0820bb7bfca94a38b (patch) | |
tree | d20847d3435b4ea5196de81dfd5cb62789a44fa0 /libavformat/rtp_internal.h | |
parent | ed78754216ffe657c6f5e4b71aa41afd2e5ec523 (diff) | |
download | ffmpeg-dbf30963f3599717e8ff90c0820bb7bfca94a38b.tar.gz |
make ffmpeg able to send back a RTCP receiver report.
Patch by Thijs thijsvermeir A telenet P be
Original thread:
Date: Oct 27, 2006 12:58 PM
Subject: [Ffmpeg-devel] [PATCH proposal] RTCP receiver report
Originally committed as revision 6805 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtp_internal.h')
-rw-r--r-- | libavformat/rtp_internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/rtp_internal.h b/libavformat/rtp_internal.h index 5c178f3811..3930966ad8 100644 --- a/libavformat/rtp_internal.h +++ b/libavformat/rtp_internal.h @@ -60,6 +60,9 @@ struct RTPDemuxContext { struct MpegTSContext *ts; /* only used for MP2T payloads */ int read_buf_index; int read_buf_size; + /* used to send back RTCP RR */ + URLContext *rtp_ctx; + char hostname[256]; /* rtcp sender statistics receive */ int64_t last_rtcp_ntp_time; // TODO: move into statistics |