avformat: Mark argument in av_{i|o}format_next/ffurl_protocol_next as const

This commit is contained in:
Diego Biurrun
2014-07-26 02:47:41 -07:00
parent 53abe32409
commit ec4f04da1a
4 changed files with 6 additions and 6 deletions

View File

@@ -32,7 +32,7 @@
static URLProtocol *first_protocol = NULL;
URLProtocol *ffurl_protocol_next(URLProtocol *prev)
URLProtocol *ffurl_protocol_next(const URLProtocol *prev)
{
return prev ? prev->next : first_protocol;
}