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.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.h')
-rw-r--r-- | libavformat/rtp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtp.h b/libavformat/rtp.h index 9ce6f90d49..60ccc50ee4 100644 --- a/libavformat/rtp.h +++ b/libavformat/rtp.h @@ -30,7 +30,7 @@ int rtp_get_payload_type(AVCodecContext *codec); typedef struct RTPDemuxContext RTPDemuxContext; typedef struct rtp_payload_data_s rtp_payload_data_s; -RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, int payload_type, rtp_payload_data_s *rtp_payload_data); +RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, rtp_payload_data_s *rtp_payload_data); int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, const uint8_t *buf, int len); void rtp_parse_close(RTPDemuxContext *s); |