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
b21af32a
Commit
b21af32a
authored
Mar 17, 2015
by
Michael Niedermayer
Committed by
Vittorio Giovara
Mar 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: Prefer x264 over openh264 if both libraries are available
parent
312a9ef0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
allcodecs.c
libavcodec/allcodecs.c
+4
-1
No files found.
libavcodec/allcodecs.c
View file @
b21af32a
...
...
@@ -448,7 +448,6 @@ void avcodec_register_all(void)
REGISTER_ENCODER
(
LIBMP3LAME
,
libmp3lame
);
REGISTER_ENCDEC
(
LIBOPENCORE_AMRNB
,
libopencore_amrnb
);
REGISTER_DECODER
(
LIBOPENCORE_AMRWB
,
libopencore_amrwb
);
REGISTER_ENCODER
(
LIBOPENH264
,
libopenh264
);
REGISTER_ENCDEC
(
LIBOPENJPEG
,
libopenjpeg
);
REGISTER_ENCDEC
(
LIBOPUS
,
libopus
);
REGISTER_ENCDEC
(
LIBSCHROEDINGER
,
libschroedinger
);
...
...
@@ -467,6 +466,10 @@ void avcodec_register_all(void)
REGISTER_ENCODER
(
LIBXAVS
,
libxavs
);
REGISTER_ENCODER
(
LIBXVID
,
libxvid
);
/* external libraries, that shouldn't be used by default if one of the
* above is available */
REGISTER_ENCODER
(
LIBOPENH264
,
libopenh264
);
/* parsers */
REGISTER_PARSER
(
AAC
,
aac
);
REGISTER_PARSER
(
AAC_LATM
,
aac_latm
);
...
...
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