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
7239fb57
Commit
7239fb57
authored
Jul 08, 2006
by
Måns Rullgård
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make the adx adpcm codec available
Originally committed as revision 5679 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
327dcfd3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile
libavcodec/Makefile
+2
-2
adpcm.c
libavcodec/adpcm.c
+0
-1
adx.c
libavcodec/adx.c
+4
-4
No files found.
libavcodec/Makefile
View file @
7239fb57
...
...
@@ -165,8 +165,8 @@ OBJS-$(CONFIG_PCM_MULAW_ENCODER) += pcm.o
OBJS-$(CONFIG_ADPCM_4XM_DECODER)
+=
adpcm.o
OBJS-$(CONFIG_ADPCM_4XM_ENCODER)
+=
adpcm.o
OBJS-$(CONFIG_ADPCM_ADX_DECODER)
+=
ad
pcm
.o
OBJS-$(CONFIG_ADPCM_ADX_ENCODER)
+=
ad
pcm
.o
OBJS-$(CONFIG_ADPCM_ADX_DECODER)
+=
ad
x
.o
OBJS-$(CONFIG_ADPCM_ADX_ENCODER)
+=
ad
x
.o
OBJS-$(CONFIG_ADPCM_CT_DECODER)
+=
adpcm.o
OBJS-$(CONFIG_ADPCM_CT_ENCODER)
+=
adpcm.o
OBJS-$(CONFIG_ADPCM_EA_DECODER)
+=
adpcm.o
...
...
libavcodec/adpcm.c
View file @
7239fb57
...
...
@@ -1357,7 +1357,6 @@ ADPCM_CODEC(CODEC_ID_ADPCM_IMA_SMJPEG, adpcm_ima_smjpeg);
ADPCM_CODEC
(
CODEC_ID_ADPCM_MS
,
adpcm_ms
);
ADPCM_CODEC
(
CODEC_ID_ADPCM_4XM
,
adpcm_4xm
);
ADPCM_CODEC
(
CODEC_ID_ADPCM_XA
,
adpcm_xa
);
ADPCM_CODEC
(
CODEC_ID_ADPCM_ADX
,
adpcm_adx
);
ADPCM_CODEC
(
CODEC_ID_ADPCM_EA
,
adpcm_ea
);
ADPCM_CODEC
(
CODEC_ID_ADPCM_CT
,
adpcm_ct
);
ADPCM_CODEC
(
CODEC_ID_ADPCM_SWF
,
adpcm_swf
);
...
...
libavcodec/adx.c
View file @
7239fb57
...
...
@@ -385,8 +385,8 @@ static int adx_decode_frame(AVCodecContext *avctx,
}
#ifdef CONFIG_ENCODERS
AVCodec
ad
x_adpcm
_encoder
=
{
"ad
x_adpcm
"
,
AVCodec
ad
pcm_adx
_encoder
=
{
"ad
pcm_adx
"
,
CODEC_TYPE_AUDIO
,
CODEC_ID_ADPCM_ADX
,
sizeof
(
ADXContext
),
...
...
@@ -397,8 +397,8 @@ AVCodec adx_adpcm_encoder = {
};
#endif //CONFIG_ENCODERS
AVCodec
ad
x_adpcm
_decoder
=
{
"ad
x_adpcm
"
,
AVCodec
ad
pcm_adx
_decoder
=
{
"ad
pcm_adx
"
,
CODEC_TYPE_AUDIO
,
CODEC_ID_ADPCM_ADX
,
sizeof
(
ADXContext
),
...
...
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