summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-01-27 00:21:28 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-01-27 00:21:28 +0000
commitd19a046ebb9dccb9ff025e2a8918a0f7e54dd2db (patch)
treefc4faf73285570578671f301593a5364ab65b84c
parent8652e44acd8c836d27e436e2714b898d020524cf (diff)
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
-rw-r--r--libavformat/avio.h3
1 files changed, 3 insertions, 0 deletions
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);
/**