diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-17 08:44:44 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 22:47:39 +0200 |
commit | 724f6a0fa43f615dcebb2cb16ccb7c60ef7ec95c (patch) | |
tree | 1f0ef0812a25da2ba0710e104ec134c47225c273 /libavformat/rtpenc_chain.c | |
parent | 403ee835e7913eb9536b22c2b22edfdd700166a9 (diff) | |
download | ffmpeg-724f6a0fa43f615dcebb2cb16ccb7c60ef7ec95c.tar.gz |
avio: make url_fdopen internal.
The unbuffered URLContext API will be made private, so there's no point
in this function being public.
Diffstat (limited to 'libavformat/rtpenc_chain.c')
-rw-r--r-- | libavformat/rtpenc_chain.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/rtpenc_chain.c b/libavformat/rtpenc_chain.c index a923b2deb6..1727740f0f 100644 --- a/libavformat/rtpenc_chain.c +++ b/libavformat/rtpenc_chain.c @@ -20,6 +20,7 @@ */ #include "avformat.h" +#include "avio_internal.h" #include "rtpenc_chain.h" #include "avio_internal.h" @@ -54,7 +55,7 @@ AVFormatContext *ff_rtp_chain_mux_open(AVFormatContext *s, AVStream *st, avcodec_copy_context(rtpctx->streams[0]->codec, st->codec); if (handle) { - url_fdopen(&rtpctx->pb, handle); + ffio_fdopen(&rtpctx->pb, handle); } else ffio_open_dyn_packet_buf(&rtpctx->pb, packet_size); ret = av_write_header(rtpctx); |