Commit 6542e557 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ec4f04da'

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

Conflicts:
	libavformat/format.c
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 0a7f3af2 ec4f04da
......@@ -1752,14 +1752,14 @@ int avformat_network_deinit(void);
* if f is non-NULL, returns the next registered input format after f
* or NULL if f is the last one.
*/
AVInputFormat *av_iformat_next(AVInputFormat *f);
AVInputFormat *av_iformat_next(const AVInputFormat *f);
/**
* If f is NULL, returns the first registered output format,
* if f is non-NULL, returns the next registered output format after f
* or NULL if f is the last one.
*/
AVOutputFormat *av_oformat_next(AVOutputFormat *f);
AVOutputFormat *av_oformat_next(const AVOutputFormat *f);
/**
* Allocate an AVFormatContext.
......
......@@ -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;
}
......
......@@ -36,7 +36,7 @@ static AVOutputFormat *first_oformat = NULL;
static AVInputFormat **last_iformat = &first_iformat;
static AVOutputFormat **last_oformat = &first_oformat;
AVInputFormat *av_iformat_next(AVInputFormat *f)
AVInputFormat *av_iformat_next(const AVInputFormat *f)
{
if (f)
return f->next;
......@@ -44,7 +44,7 @@ AVInputFormat *av_iformat_next(AVInputFormat *f)
return first_iformat;
}
AVOutputFormat *av_oformat_next(AVOutputFormat *f)
AVOutputFormat *av_oformat_next(const AVOutputFormat *f)
{
if (f)
return f->next;
......
......@@ -240,7 +240,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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment