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
caaeefc5
Commit
caaeefc5
authored
Oct 07, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prevent multiple av_register_all()
Originally committed as revision 3570 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
791d8d1d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
allformats.c
libavformat/allformats.c
+6
-0
No files found.
libavformat/allformats.c
View file @
caaeefc5
...
...
@@ -26,6 +26,12 @@
*/
void
av_register_all
(
void
)
{
static
int
inited
=
0
;
if
(
inited
!=
0
)
return
;
inited
=
1
;
avcodec_init
();
avcodec_register_all
();
...
...
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