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
8c37516a
Commit
8c37516a
authored
Oct 02, 2006
by
Oded Shimon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add vorbis encoder to ffmpeg
Originally committed as revision 6519 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
00757448
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
Makefile
libavcodec/Makefile
+1
-0
allcodecs.c
libavcodec/allcodecs.c
+4
-1
avcodec.h
libavcodec/avcodec.h
+1
-0
No files found.
libavcodec/Makefile
View file @
8c37516a
...
...
@@ -122,6 +122,7 @@ OBJS-$(CONFIG_VMDAUDIO_DECODER) += vmdav.o
OBJS-$(CONFIG_VMDVIDEO_DECODER)
+=
vmdav.o
OBJS-$(CONFIG_VMNC_DECODER)
+=
vmnc.o
OBJS-$(CONFIG_VORBIS_DECODER)
+=
vorbis.o
vorbis_data.o
OBJS-$(CONFIG_VORBIS_ENCODER)
+=
vorbis_enc.o
vorbis_data.o
OBJS-$(CONFIG_VP3_DECODER)
+=
vp3.o
OBJS-$(CONFIG_VP5_DECODER)
+=
vp5.o
vp56.o
vp56data.o
OBJS-$(CONFIG_VP6_DECODER)
+=
vp6.o
vp56.o
vp56data.o
...
...
libavcodec/allcodecs.c
View file @
8c37516a
...
...
@@ -51,7 +51,7 @@ void avcodec_register_all(void)
#endif //CONFIG_MP3LAME_ENCODER
#endif
#ifdef CONFIG_LIBVORBIS
#if
def CONFIG_OGGVORBIS_ENCODER
#if
(defined CONFIG_OGGVORBIS_ENCODER && !defined CONFIG_VORBIS_ENCODER)
register_avcodec
(
&
oggvorbis_encoder
);
#endif //CONFIG_OGGVORBIS_ENCODER
#if (defined CONFIG_OGGVORBIS_DECODER && !defined CONFIG_VORBIS_DECODER)
...
...
@@ -507,6 +507,9 @@ void avcodec_register_all(void)
#ifdef CONFIG_VORBIS_DECODER
register_avcodec
(
&
vorbis_decoder
);
#endif
#ifdef CONFIG_VORBIS_ENCODER
register_avcodec
(
&
vorbis_encoder
);
#endif
#ifdef CONFIG_LIBGSM
register_avcodec
(
&
libgsm_decoder
);
#endif //CONFIG_LIBGSM
...
...
libavcodec/avcodec.h
View file @
8c37516a
...
...
@@ -2162,6 +2162,7 @@ extern AVCodec asv2_encoder;
extern
AVCodec
vcr1_encoder
;
extern
AVCodec
ffv1_encoder
;
extern
AVCodec
snow_encoder
;
extern
AVCodec
vorbis_encoder
;
extern
AVCodec
mdec_encoder
;
extern
AVCodec
zlib_encoder
;
extern
AVCodec
sonic_encoder
;
...
...
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