diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-17 08:13:34 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 22:46:56 +0200 |
commit | b92c5452822f9f58d33daf933a0d2a5516866bc1 (patch) | |
tree | 8e837202fc801d8f0de5e8be08b691a7d357cde9 /libavformat/rtpdec.c | |
parent | 8978fedaeefdff50ed4deefbfe822ad07f19f616 (diff) | |
download | ffmpeg-b92c5452822f9f58d33daf933a0d2a5516866bc1.tar.gz |
avio: avio_ prefix for url_open_dyn_buf
Diffstat (limited to 'libavformat/rtpdec.c')
-rw-r--r-- | libavformat/rtpdec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/rtpdec.c b/libavformat/rtpdec.c index 0e4665b7ea..3d03b815c2 100644 --- a/libavformat/rtpdec.c +++ b/libavformat/rtpdec.c @@ -264,7 +264,7 @@ int rtp_check_and_send_back_rr(RTPDemuxContext *s, int count) return -1; s->last_octet_count = s->octet_count; - if (url_open_dyn_buf(&pb) < 0) + if (avio_open_dyn_buf(&pb) < 0) return -1; // Receiver Report @@ -339,7 +339,7 @@ void rtp_send_punch_packets(URLContext* rtp_handle) int len; /* Send a small RTP packet */ - if (url_open_dyn_buf(&pb) < 0) + if (avio_open_dyn_buf(&pb) < 0) return; avio_w8(pb, (RTP_VERSION << 6)); @@ -355,7 +355,7 @@ void rtp_send_punch_packets(URLContext* rtp_handle) av_free(buf); /* Send a minimal RTCP RR */ - if (url_open_dyn_buf(&pb) < 0) + if (avio_open_dyn_buf(&pb) < 0) return; avio_w8(pb, (RTP_VERSION << 6)); |