diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-31 17:51:24 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-04 17:45:20 +0200 |
commit | 1869ea03b7fb8e3db2f034f4214e03bd3f8b3d30 (patch) | |
tree | 06b04228af62545e07c141a5d8f4c9fbb12b78c6 /libavformat/rtspenc.c | |
parent | 32a97d4630e8e742cba0344054842ed059dda807 (diff) | |
download | ffmpeg-1869ea03b7fb8e3db2f034f4214e03bd3f8b3d30.tar.gz |
avio: make url_get_file_handle() internal.
Diffstat (limited to 'libavformat/rtspenc.c')
-rw-r--r-- | libavformat/rtspenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c index b4b26204f9..684f2fe558 100644 --- a/libavformat/rtspenc.c +++ b/libavformat/rtspenc.c @@ -173,7 +173,7 @@ static int rtsp_write_packet(AVFormatContext *s, AVPacket *pkt) RTSPState *rt = s->priv_data; RTSPStream *rtsp_st; int n; - struct pollfd p = {url_get_file_handle(rt->rtsp_hd), POLLIN, 0}; + struct pollfd p = {ffurl_get_file_handle(rt->rtsp_hd), POLLIN, 0}; AVFormatContext *rtpctx; int ret; |