diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-04 20:35:04 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-07 18:11:24 +0200 |
commit | 8e76a19b63a3fa322a64a7d27bd6e642c7fe7f85 (patch) | |
tree | 90c4c12b1ec0271cc9cb08e339859443e0f37e45 /libavformat/url.h | |
parent | 80c6e238b0f42a0b07fbc195564a50032b3608ba (diff) | |
download | ffmpeg-8e76a19b63a3fa322a64a7d27bd6e642c7fe7f85.tar.gz |
avio: make av_register_protocol2 internal.
Diffstat (limited to 'libavformat/url.h')
-rw-r--r-- | libavformat/url.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/url.h b/libavformat/url.h index 72c19b62ad..2e1a3f3a72 100644 --- a/libavformat/url.h +++ b/libavformat/url.h @@ -131,4 +131,11 @@ int64_t ffurl_size(URLContext *h); */ int ffurl_get_file_handle(URLContext *h); +/** + * Register the URLProtocol protocol. + * + * @param size the size of the URLProtocol struct referenced + */ +int ffurl_register_protocol(URLProtocol *protocol, int size); + #endif //AVFORMAT_URL_H |