diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-08 10:35:52 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-03-23 17:32:13 +0100 |
commit | 4ec153bb66a95da46c98e269bd0aa787e6172ed3 (patch) | |
tree | fc9f40f0de76ea32bcdb718321be638eea8074be /libavformat/avio.h | |
parent | 4377fafda100117f75d62ba91bce6d8509e01a50 (diff) | |
download | ffmpeg-4ec153bb66a95da46c98e269bd0aa787e6172ed3.tar.gz |
avio: make udp_set_remote_url/get_local_port internal.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index d11c3984f8..07a893e312 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -448,6 +448,9 @@ attribute_deprecated void put_flush_packet(AVIOContext *s); */ attribute_deprecated int url_feof(AVIOContext *s); attribute_deprecated int url_ferror(AVIOContext *s); + +attribute_deprecated int udp_set_remote_url(URLContext *h, const char *uri); +attribute_deprecated int udp_get_local_port(URLContext *h); #endif AVIOContext *avio_alloc_context( @@ -675,9 +678,6 @@ void init_checksum(AVIOContext *s, unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum); -/* udp.c */ -int udp_set_remote_url(URLContext *h, const char *uri); -int udp_get_local_port(URLContext *h); #if FF_API_UDP_GET_FILE int udp_get_file_handle(URLContext *h); #endif |