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
b33fd66f
Commit
b33fd66f
authored
Nov 02, 2011
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: add ffwavesynth pseudo-codec.
parent
62b5197f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
499 additions
and
1 deletion
+499
-1
decoders.texi
doc/decoders.texi
+13
-0
Makefile
libavcodec/Makefile
+1
-0
allcodecs.c
libavcodec/allcodecs.c
+1
-0
avcodec.h
libavcodec/avcodec.h
+1
-0
ffwavesynth.c
libavcodec/ffwavesynth.c
+482
-0
version.h
libavcodec/version.h
+1
-1
No files found.
doc/decoders.texi
View file @
b33fd66f
...
...
@@ -48,3 +48,16 @@ top-field-first is assumed
@end table
@c man end VIDEO DECODERS
@chapter Audio Decoders
@c man begin AUDIO DECODERS
@section ffwavesynth
Internal wave synthetizer.
This decoder generates wave patterns according to predefined sequences. Its
use is purely internal and the format of the data it accepts is not publicly
documented.
@c man end AUDIO DECODERS
libavcodec/Makefile
View file @
b33fd66f
...
...
@@ -156,6 +156,7 @@ OBJS-$(CONFIG_FFV1_DECODER) += ffv1.o rangecoder.o
OBJS-$(CONFIG_FFV1_ENCODER)
+=
ffv1.o
rangecoder.o
OBJS-$(CONFIG_FFVHUFF_DECODER)
+=
huffyuv.o
OBJS-$(CONFIG_FFVHUFF_ENCODER)
+=
huffyuv.o
OBJS-$(CONFIG_FFWAVESYNTH_DECODER)
+=
ffwavesynth.o
OBJS-$(CONFIG_FLAC_DECODER)
+=
flacdec.o
flacdata.o
flac.o
vorbis_data.o
OBJS-$(CONFIG_FLAC_ENCODER)
+=
flacenc.o
flacdata.o
flac.o
vorbis_data.o
OBJS-$(CONFIG_FLASHSV_DECODER)
+=
flashsv.o
...
...
libavcodec/allcodecs.c
View file @
b33fd66f
...
...
@@ -265,6 +265,7 @@ void avcodec_register_all(void)
REGISTER_ENCDEC
(
DCA
,
dca
);
REGISTER_DECODER
(
DSICINAUDIO
,
dsicinaudio
);
REGISTER_ENCDEC
(
EAC3
,
eac3
);
REGISTER_DECODER
(
FFWAVESYNTH
,
ffwavesynth
);
REGISTER_ENCDEC
(
FLAC
,
flac
);
REGISTER_ENCDEC
(
G723_1
,
g723_1
);
REGISTER_DECODER
(
G729
,
g729
);
...
...
libavcodec/avcodec.h
View file @
b33fd66f
...
...
@@ -403,6 +403,7 @@ enum CodecID {
CODEC_ID_BMV_AUDIO
,
CODEC_ID_G729
=
0x15800
,
CODEC_ID_G723_1
=
0x15801
,
CODEC_ID_FFWAVESYNTH
=
MKBETAG
(
'F'
,
'F'
,
'W'
,
'S'
),
CODEC_ID_8SVX_RAW
=
MKBETAG
(
'8'
,
'S'
,
'V'
,
'X'
),
/* subtitle codecs */
...
...
libavcodec/ffwavesynth.c
0 → 100644
View file @
b33fd66f
This diff is collapsed.
Click to expand it.
libavcodec/version.h
View file @
b33fd66f
...
...
@@ -21,7 +21,7 @@
#define AVCODEC_VERSION_H
#define LIBAVCODEC_VERSION_MAJOR 53
#define LIBAVCODEC_VERSION_MINOR 4
5
#define LIBAVCODEC_VERSION_MINOR 4
6
#define LIBAVCODEC_VERSION_MICRO 0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
...
...
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