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
e12cfd04
Commit
e12cfd04
authored
Oct 24, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: const correctness for avformat_new_stream
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
e3ba817b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
avformat.h
libavformat/avformat.h
+1
-1
utils.c
libavformat/utils.c
+1
-1
No files found.
libavformat/avformat.h
View file @
e12cfd04
...
...
@@ -1311,7 +1311,7 @@ const AVClass *avformat_get_class(void);
*
* @return newly created stream or NULL on error.
*/
AVStream
*
avformat_new_stream
(
AVFormatContext
*
s
,
AVCodec
*
c
);
AVStream
*
avformat_new_stream
(
AVFormatContext
*
s
,
const
AVCodec
*
c
);
AVProgram
*
av_new_program
(
AVFormatContext
*
s
,
int
id
);
...
...
libavformat/utils.c
View file @
e12cfd04
...
...
@@ -3101,7 +3101,7 @@ AVStream *av_new_stream(AVFormatContext *s, int id)
}
#endif
AVStream
*
avformat_new_stream
(
AVFormatContext
*
s
,
AVCodec
*
c
)
AVStream
*
avformat_new_stream
(
AVFormatContext
*
s
,
const
AVCodec
*
c
)
{
AVStream
*
st
;
int
i
;
...
...
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