comparison rtp.h @ 1425:00d9393a126f libavformat

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
author gpoirier
date Fri, 27 Oct 2006 18:19:29 +0000
parents 8fb4910bdcc0
children 699a422bca90
comparison
equal deleted inserted replaced
1424:1c39ce5c6a5d 1425:00d9393a126f
28 int rtp_get_codec_info(AVCodecContext *codec, int payload_type); 28 int rtp_get_codec_info(AVCodecContext *codec, int payload_type);
29 int rtp_get_payload_type(AVCodecContext *codec); 29 int rtp_get_payload_type(AVCodecContext *codec);
30 30
31 typedef struct RTPDemuxContext RTPDemuxContext; 31 typedef struct RTPDemuxContext RTPDemuxContext;
32 typedef struct rtp_payload_data_s rtp_payload_data_s; 32 typedef struct rtp_payload_data_s rtp_payload_data_s;
33 RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, int payload_type, rtp_payload_data_s *rtp_payload_data); 33 RTPDemuxContext *rtp_parse_open(AVFormatContext *s1, AVStream *st, URLContext *rtpc, int payload_type, rtp_payload_data_s *rtp_payload_data);
34 int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt, 34 int rtp_parse_packet(RTPDemuxContext *s, AVPacket *pkt,
35 const uint8_t *buf, int len); 35 const uint8_t *buf, int len);
36 void rtp_parse_close(RTPDemuxContext *s); 36 void rtp_parse_close(RTPDemuxContext *s);
37 37
38 extern AVOutputFormat rtp_muxer; 38 extern AVOutputFormat rtp_muxer;