diff options
author | Martin Storsjö | 2012-10-17 16:05:24 +0300 |
---|---|---|
committer | Martin Storsjö | 2013-01-03 15:14:34 +0200 |
commit | 3f95f0dda55fca74b646937095a02a8fa9776622 (patch) | |
tree | 7d3b03ca97bf8aa208bc7b095f4a825dd849078d /libavformat/rtpdec.h | |
parent | a0b7e289075dccf223b7f407790d8a86fc5d77e8 (diff) |
rtpdec: Move the URLContext used for RTCP RR out from the context, to a parameter
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/rtpdec.h')
-rw-r--r-- | libavformat/rtpdec.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libavformat/rtpdec.h b/libavformat/rtpdec.h index 98e266a687..2d962c82c7 100644 --- a/libavformat/rtpdec.h +++ b/libavformat/rtpdec.h @@ -40,8 +40,7 @@ typedef struct RTPDynamicProtocolHandler RTPDynamicProtocolHandler; typedef struct RTPDemuxContext RTPDemuxContext; RTPDemuxContext *ff_rtp_parse_open(AVFormatContext *s1, AVStream *st, - URLContext *rtpc, int payload_type, - int queue_size); + int payload_type, int queue_size); void ff_rtp_parse_set_dynamic_protocol(RTPDemuxContext *s, PayloadContext *ctx, RTPDynamicProtocolHandler *handler); int ff_rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, @@ -69,10 +68,10 @@ void ff_rtp_send_punch_packets(URLContext* rtp_handle); /** * some rtp servers assume client is dead if they don't hear from them... - * so we send a Receiver Report to the provided ByteIO context + * so we send a Receiver Report to the provided URLContext * (we don't have access to the rtcp handle from here) */ -int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, int count); +int ff_rtp_check_and_send_back_rr(RTPDemuxContext *s, URLContext *fd, int count); // these statistics are used for rtcp receiver reports... typedef struct RTPStatistics { @@ -158,7 +157,6 @@ struct RTPDemuxContext { int read_buf_index; int read_buf_size; /* used to send back RTCP RR */ - URLContext *rtp_ctx; char hostname[256]; /** Statistics for this stream (used by RTCP receiver reports) */ |