mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-04 07:18:36 +08:00
Document av_protocol_next().
Originally committed as revision 17324 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -140,6 +140,11 @@ typedef struct URLProtocol {
|
|||||||
extern URLProtocol *first_protocol;
|
extern URLProtocol *first_protocol;
|
||||||
extern URLInterruptCB *url_interrupt_cb;
|
extern URLInterruptCB *url_interrupt_cb;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If protocol is NULL, returns the first registered protocol,
|
||||||
|
* if protocol is non-NULL, returns the registered protocol next after protocol,
|
||||||
|
* or NULL if protocol is the last one.
|
||||||
|
*/
|
||||||
URLProtocol *av_protocol_next(URLProtocol *p);
|
URLProtocol *av_protocol_next(URLProtocol *p);
|
||||||
|
|
||||||
#if LIBAVFORMAT_VERSION_MAJOR < 53
|
#if LIBAVFORMAT_VERSION_MAJOR < 53
|
||||||
|
Reference in New Issue
Block a user