diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-15 14:34:23 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-02-15 14:34:23 +0000 |
commit | d1037c12056a038fb196c58efda5b5f037b53dab (patch) | |
tree | 0f3aa21b0afaaa405046efcaa42471e8c60c0db1 /libavformat/avio.h | |
parent | 1c787b10438b0e87e93699db0d6b34c85dd94371 (diff) | |
download | ffmpeg-d1037c12056a038fb196c58efda5b5f037b53dab.tar.gz |
Do not export to the public the first_protocol symbol at the next
major bump.
There is no need for that, since av_protocol_next() already provides
access to the first registered protocol.
Originally committed as revision 17326 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 7c137e6feb..21cdd9acc8 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -137,7 +137,10 @@ typedef struct URLProtocol { int64_t timestamp, int flags); } URLProtocol; +#if LIBAVFORMAT_VERSION_MAJOR < 53 extern URLProtocol *first_protocol; +#endif + extern URLInterruptCB *url_interrupt_cb; /** |