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
3d90f27a
Commit
3d90f27a
authored
Jul 08, 2014
by
Roman Savchenko
Committed by
Anton Khirnov
Jul 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat_new_stream: make the AVCodec parameter const
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
d3cfd7af
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 @
3d90f27a
...
...
@@ -1332,7 +1332,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
);
/**
* Get side information from stream.
...
...
libavformat/utils.c
View file @
3d90f27a
...
...
@@ -2641,7 +2641,7 @@ void avformat_close_input(AVFormatContext **ps)
avio_close
(
pb
);
}
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