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
8b11e437
Commit
8b11e437
authored
Oct 13, 2015
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: add ADPCM PSX decoder
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
377883c4
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
52 additions
and
1 deletion
+52
-1
Makefile
libavcodec/Makefile
+1
-0
adpcm.c
libavcodec/adpcm.c
+40
-0
allcodecs.c
libavcodec/allcodecs.c
+1
-0
avcodec.h
libavcodec/avcodec.h
+1
-0
codec_desc.c
libavcodec/codec_desc.c
+7
-0
utils.c
libavcodec/utils.c
+1
-0
version.h
libavcodec/version.h
+1
-1
No files found.
libavcodec/Makefile
View file @
8b11e437
...
...
@@ -687,6 +687,7 @@ OBJS-$(CONFIG_ADPCM_IMA_WAV_ENCODER) += adpcmenc.o adpcm_data.o
OBJS-$(CONFIG_ADPCM_IMA_WS_DECODER)
+=
adpcm.o
adpcm_data.o
OBJS-$(CONFIG_ADPCM_MS_DECODER)
+=
adpcm.o
adpcm_data.o
OBJS-$(CONFIG_ADPCM_MS_ENCODER)
+=
adpcmenc.o
adpcm_data.o
OBJS-$(CONFIG_ADPCM_PSX_DECODER)
+=
adpcm.o
adpcm_data.o
OBJS-$(CONFIG_ADPCM_SBPRO_2_DECODER)
+=
adpcm.o
adpcm_data.o
OBJS-$(CONFIG_ADPCM_SBPRO_3_DECODER)
+=
adpcm.o
adpcm_data.o
OBJS-$(CONFIG_ADPCM_SBPRO_4_DECODER)
+=
adpcm.o
adpcm_data.o
...
...
libavcodec/adpcm.c
View file @
8b11e437
...
...
@@ -152,6 +152,7 @@ static av_cold int adpcm_decode_init(AVCodecContext * avctx)
case
AV_CODEC_ID_ADPCM_THP_LE
:
case
AV_CODEC_ID_ADPCM_AFC
:
case
AV_CODEC_ID_ADPCM_DTK
:
case
AV_CODEC_ID_ADPCM_PSX
:
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_S16P
;
break
;
case
AV_CODEC_ID_ADPCM_IMA_WS
:
...
...
@@ -665,6 +666,7 @@ static int get_nb_samples(AVCodecContext *avctx, GetByteContext *gb,
nb_samples
=
(
buf_size
/
128
)
*
224
/
ch
;
break
;
case
AV_CODEC_ID_ADPCM_DTK
:
case
AV_CODEC_ID_ADPCM_PSX
:
nb_samples
=
buf_size
/
(
16
*
ch
)
*
28
;
break
;
}
...
...
@@ -1548,6 +1550,43 @@ static int adpcm_decode_frame(AVCodecContext *avctx, void *data,
bytestream2_seek
(
&
gb
,
0
,
SEEK_SET
);
}
break
;
case
AV_CODEC_ID_ADPCM_PSX
:
for
(
channel
=
0
;
channel
<
avctx
->
channels
;
channel
++
)
{
samples
=
samples_p
[
channel
];
/* Read in every sample for this channel. */
for
(
i
=
0
;
i
<
nb_samples
/
28
;
i
++
)
{
int
filter
,
shift
,
flag
,
byte
;
filter
=
bytestream2_get_byteu
(
&
gb
);
shift
=
filter
&
0xf
;
filter
=
filter
>>
4
;
if
(
filter
>=
FF_ARRAY_ELEMS
(
xa_adpcm_table
))
return
AVERROR_INVALIDDATA
;
flag
=
bytestream2_get_byteu
(
&
gb
);
/* Decode 28 samples. */
for
(
n
=
0
;
n
<
28
;
n
++
)
{
int
sample
=
0
,
scale
;
if
(
flag
<
0x07
)
{
if
(
n
&
1
)
{
scale
=
sign_extend
(
byte
>>
4
,
4
);
}
else
{
byte
=
bytestream2_get_byteu
(
&
gb
);
scale
=
sign_extend
(
byte
,
4
);
}
scale
=
scale
<<
12
;
sample
=
(
int
)((
scale
>>
shift
)
+
(
c
->
status
[
channel
].
sample1
*
xa_adpcm_table
[
filter
][
0
]
+
c
->
status
[
channel
].
sample2
*
xa_adpcm_table
[
filter
][
1
])
/
64
);
}
*
samples
++
=
av_clip_int16
(
sample
);
c
->
status
[
channel
].
sample2
=
c
->
status
[
channel
].
sample1
;
c
->
status
[
channel
].
sample1
=
sample
;
}
}
}
break
;
default:
return
-
1
;
...
...
@@ -1622,6 +1661,7 @@ ADPCM_DECODER(AV_CODEC_ID_ADPCM_IMA_SMJPEG, sample_fmts_s16, adpcm_ima_smjpeg,
ADPCM_DECODER
(
AV_CODEC_ID_ADPCM_IMA_WAV
,
sample_fmts_s16p
,
adpcm_ima_wav
,
"ADPCM IMA WAV"
);
ADPCM_DECODER
(
AV_CODEC_ID_ADPCM_IMA_WS
,
sample_fmts_both
,
adpcm_ima_ws
,
"ADPCM IMA Westwood"
);
ADPCM_DECODER
(
AV_CODEC_ID_ADPCM_MS
,
sample_fmts_s16
,
adpcm_ms
,
"ADPCM Microsoft"
);
ADPCM_DECODER
(
AV_CODEC_ID_ADPCM_PSX
,
sample_fmts_s16p
,
adpcm_psx
,
"ADPCM PSX"
);
ADPCM_DECODER
(
AV_CODEC_ID_ADPCM_SBPRO_2
,
sample_fmts_s16
,
adpcm_sbpro_2
,
"ADPCM Sound Blaster Pro 2-bit"
);
ADPCM_DECODER
(
AV_CODEC_ID_ADPCM_SBPRO_3
,
sample_fmts_s16
,
adpcm_sbpro_3
,
"ADPCM Sound Blaster Pro 2.6-bit"
);
ADPCM_DECODER
(
AV_CODEC_ID_ADPCM_SBPRO_4
,
sample_fmts_s16
,
adpcm_sbpro_4
,
"ADPCM Sound Blaster Pro 4-bit"
);
...
...
libavcodec/allcodecs.c
View file @
8b11e437
...
...
@@ -509,6 +509,7 @@ void avcodec_register_all(void)
REGISTER_ENCDEC
(
ADPCM_IMA_WAV
,
adpcm_ima_wav
);
REGISTER_DECODER
(
ADPCM_IMA_WS
,
adpcm_ima_ws
);
REGISTER_ENCDEC
(
ADPCM_MS
,
adpcm_ms
);
REGISTER_DECODER
(
ADPCM_PSX
,
adpcm_psx
);
REGISTER_DECODER
(
ADPCM_SBPRO_2
,
adpcm_sbpro_2
);
REGISTER_DECODER
(
ADPCM_SBPRO_3
,
adpcm_sbpro_3
);
REGISTER_DECODER
(
ADPCM_SBPRO_4
,
adpcm_sbpro_4
);
...
...
libavcodec/avcodec.h
View file @
8b11e437
...
...
@@ -393,6 +393,7 @@ enum AVCodecID {
AV_CODEC_ID_ADPCM_IMA_RAD
,
AV_CODEC_ID_ADPCM_G726LE
,
AV_CODEC_ID_ADPCM_THP_LE
,
AV_CODEC_ID_ADPCM_PSX
,
/* AMR */
AV_CODEC_ID_AMR_NB
=
0x12000
,
...
...
libavcodec/codec_desc.c
View file @
8b11e437
...
...
@@ -1978,6 +1978,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"LucasArts VIMA audio"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
{
.
id
=
AV_CODEC_ID_ADPCM_PSX
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
name
=
"adpcm_psx"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"ADPCM PSX"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
/* AMR */
{
...
...
libavcodec/utils.c
View file @
8b11e437
...
...
@@ -3063,6 +3063,7 @@ int av_get_audio_frame_duration(AVCodecContext *avctx, int frame_bytes)
switch
(
id
)
{
case
AV_CODEC_ID_ADPCM_AFC
:
return
frame_bytes
/
(
9
*
ch
)
*
16
;
case
AV_CODEC_ID_ADPCM_PSX
:
case
AV_CODEC_ID_ADPCM_DTK
:
return
frame_bytes
/
(
16
*
ch
)
*
28
;
case
AV_CODEC_ID_ADPCM_4XM
:
...
...
libavcodec/version.h
View file @
8b11e437
...
...
@@ -29,7 +29,7 @@
#include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 57
#define LIBAVCODEC_VERSION_MINOR
6
#define LIBAVCODEC_VERSION_MINOR
7
#define LIBAVCODEC_VERSION_MICRO 100
#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