diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-07-26 02:47:41 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-07-26 14:51:16 -0700 |
commit | ec4f04da1a3462dac429b9d15dee5f027309da15 (patch) | |
tree | dbe27be8bfd170d4b7dccec6f55cfa8297775edb /libavformat/url.h | |
parent | 53abe32409f13687c864b3cda077a1aa906a2459 (diff) | |
download | ffmpeg-ec4f04da1a3462dac429b9d15dee5f027309da15.tar.gz |
avformat: Mark argument in av_{i|o}format_next/ffurl_protocol_next as const
Diffstat (limited to 'libavformat/url.h')
-rw-r--r-- | libavformat/url.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/url.h b/libavformat/url.h index ff1e21b462..40be4d56be 100644 --- a/libavformat/url.h +++ b/libavformat/url.h @@ -238,7 +238,7 @@ int ff_check_interrupt(AVIOInterruptCB *cb); * * @param prev result of the previous call to this functions or NULL. */ -URLProtocol *ffurl_protocol_next(URLProtocol *prev); +URLProtocol *ffurl_protocol_next(const URLProtocol *prev); /* udp.c */ int ff_udp_set_remote_url(URLContext *h, const char *uri); |