Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-17 10:44:44 +0300
committerAnton Khirnov <anton@khirnov.net>2011-04-04 00:47:39 +0400
commit724f6a0fa43f615dcebb2cb16ccb7c60ef7ec95c (patch)
tree1f0ef0812a25da2ba0710e104ec134c47225c273 /libavformat/rtpenc_chain.c
parent403ee835e7913eb9536b22c2b22edfdd700166a9 (diff)
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.c3
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);