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
67ffcb96
Commit
67ffcb96
authored
Jun 20, 2012
by
Ronald S. Bultje
Committed by
Martin Storsjö
Jun 21, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: Make codec_tag arrays constant
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
89ffd189
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cafdec.c
libavformat/cafdec.c
+1
-1
ivfdec.c
libavformat/ivfdec.c
+1
-1
No files found.
libavformat/cafdec.c
View file @
67ffcb96
...
...
@@ -394,5 +394,5 @@ AVInputFormat ff_caf_demuxer = {
.
read_header
=
read_header
,
.
read_packet
=
read_packet
,
.
read_seek
=
read_seek
,
.
codec_tag
=
(
const
AVCodecTag
*
[]){
ff_codec_caf_tags
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
ff_codec_caf_tags
,
0
},
};
libavformat/ivfdec.c
View file @
67ffcb96
...
...
@@ -87,5 +87,5 @@ AVInputFormat ff_ivf_demuxer = {
.
read_header
=
read_header
,
.
read_packet
=
read_packet
,
.
flags
=
AVFMT_GENERIC_INDEX
,
.
codec_tag
=
(
const
AVCodecTag
*
[]){
ff_codec_bmp_tags
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
ff_codec_bmp_tags
,
0
},
};
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