[FFmpeg-cvslog] avio: move two ff_udp_* functions from avio_internal to url.h

Anton Khirnov git at videolan.org
Sat Apr 9 03:24:59 CEST 2011


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Apr  7 20:15:43 2011 +0200| [d6bbe76124c5879099e03754646c4bd70ce5112f] | committer: Anton Khirnov

avio: move two ff_udp_* functions from avio_internal to url.h

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d6bbe76124c5879099e03754646c4bd70ce5112f
---

 libavformat/avio_internal.h |    4 ----
 libavformat/url.h           |    4 ++++
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/libavformat/avio_internal.h b/libavformat/avio_internal.h
index 5ef4cca..2879ee1 100644
--- a/libavformat/avio_internal.h
+++ b/libavformat/avio_internal.h
@@ -92,10 +92,6 @@ int     ffio_read_pause(AVIOContext *h,    int pause);
 int64_t ffio_read_seek (AVIOContext *h,    int stream_index,
                         int64_t timestamp, int flags);
 
-/* udp.c */
-int ff_udp_set_remote_url(URLContext *h, const char *uri);
-int ff_udp_get_local_port(URLContext *h);
-
 void ffio_init_checksum(AVIOContext *s,
                         unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
                         unsigned long checksum);
diff --git a/libavformat/url.h b/libavformat/url.h
index 941b8af..b8ea6ad 100644
--- a/libavformat/url.h
+++ b/libavformat/url.h
@@ -140,4 +140,8 @@ int ffurl_get_file_handle(URLContext *h);
  */
 int ffurl_register_protocol(URLProtocol *protocol, int size);
 
+/* udp.c */
+int ff_udp_set_remote_url(URLContext *h, const char *uri);
+int ff_udp_get_local_port(URLContext *h);
+
 #endif //AVFORMAT_URL_H



More information about the ffmpeg-cvslog mailing list