Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
ec4f04da
Commit
ec4f04da
authored
Jul 26, 2014
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat: Mark argument in av_{i|o}format_next/ffurl_protocol_next as const
parent
53abe324
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
avformat.h
libavformat/avformat.h
+2
-2
avio.c
libavformat/avio.c
+1
-1
format.c
libavformat/format.c
+2
-2
url.h
libavformat/url.h
+1
-1
No files found.
libavformat/avformat.h
View file @
ec4f04da
...
...
@@ -1286,14 +1286,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.
...
...
libavformat/avio.c
View file @
ec4f04da
...
...
@@ -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
;
}
...
...
libavformat/format.c
View file @
ec4f04da
...
...
@@ -32,7 +32,7 @@ static AVInputFormat *first_iformat = NULL;
/** head of registered output format linked list */
static
AVOutputFormat
*
first_oformat
=
NULL
;
AVInputFormat
*
av_iformat_next
(
AVInputFormat
*
f
)
AVInputFormat
*
av_iformat_next
(
const
AVInputFormat
*
f
)
{
if
(
f
)
return
f
->
next
;
...
...
@@ -40,7 +40,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
;
...
...
libavformat/url.h
View file @
ec4f04da
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment