From d19a046ebb9dccb9ff025e2a8918a0f7e54dd2db Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Wed, 27 Jan 2010 00:21:28 +0000 Subject: [PATCH] Document av_register_protocol(), not that it really needs to be documented but it's nice to have everything documented. Originally committed as revision 21471 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/avio.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavformat/avio.h b/libavformat/avio.h index 7227729297..3f38e32905 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -226,6 +226,9 @@ URLProtocol *av_protocol_next(URLProtocol *p); attribute_deprecated int register_protocol(URLProtocol *protocol); #endif +/** + * Registers the URLProtocol protocol. + */ int av_register_protocol(URLProtocol *protocol); /**