Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
21e681ba
Commit
21e681ba
authored
14 years ago
by
Martin Storsjö
Browse files
Options
Downloads
Patches
Plain Diff
Add a G.722 encoder
Originally committed as revision 25164 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
2efcde73
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
Changelog
+1
-1
1 addition, 1 deletion
Changelog
doc/general.texi
+1
-1
1 addition, 1 deletion
doc/general.texi
libavcodec/Makefile
+1
-0
1 addition, 0 deletions
libavcodec/Makefile
libavcodec/allcodecs.c
+1
-1
1 addition, 1 deletion
libavcodec/allcodecs.c
libavcodec/g722.c
+82
-1
82 additions, 1 deletion
libavcodec/g722.c
with
86 additions
and
4 deletions
Changelog
+
1
−
1
View file @
21e681ba
...
...
@@ -33,7 +33,7 @@ version <next>:
- Apple HTTP Live Streaming demuxer
- a64 codec
- MMS-HTTP support
- G.722 ADPCM audio decoder
- G.722 ADPCM audio
encoder/
decoder
- R10k video decoder
- ocv_smooth filter
...
...
This diff is collapsed.
Click to expand it.
doc/general.texi
+
1
−
1
View file @
21e681ba
...
...
@@ -536,7 +536,7 @@ following image formats are supported:
@item ADPCM Electronic Arts R2 @tab @tab X
@item ADPCM Electronic Arts R3 @tab @tab X
@item ADPCM Electronic Arts XAS @tab @tab X
@item ADPCM G.722 @tab
@tab X
@item ADPCM G.722 @tab
X
@tab X
@item ADPCM G.726 @tab X @tab X
@item ADPCM IMA AMV @tab @tab X
@tab Used in AMV files
...
...
This diff is collapsed.
Click to expand it.
libavcodec/Makefile
+
1
−
0
View file @
21e681ba
...
...
@@ -477,6 +477,7 @@ OBJS-$(CONFIG_ADPCM_EA_R2_DECODER) += adpcm.o
OBJS-$(CONFIG_ADPCM_EA_R3_DECODER)
+=
adpcm.o
OBJS-$(CONFIG_ADPCM_EA_XAS_DECODER)
+=
adpcm.o
OBJS-$(CONFIG_ADPCM_G722_DECODER)
+=
g722.o
OBJS-$(CONFIG_ADPCM_G722_ENCODER)
+=
g722.o
OBJS-$(CONFIG_ADPCM_G726_DECODER)
+=
g726.o
OBJS-$(CONFIG_ADPCM_G726_ENCODER)
+=
g726.o
OBJS-$(CONFIG_ADPCM_IMA_AMV_DECODER)
+=
adpcm.o
...
...
This diff is collapsed.
Click to expand it.
libavcodec/allcodecs.c
+
1
−
1
View file @
21e681ba
...
...
@@ -318,7 +318,7 @@ void avcodec_register_all(void)
REGISTER_DECODER
(
ADPCM_EA_R2
,
adpcm_ea_r2
);
REGISTER_DECODER
(
ADPCM_EA_R3
,
adpcm_ea_r3
);
REGISTER_DECODER
(
ADPCM_EA_XAS
,
adpcm_ea_xas
);
REGISTER_
DECODER
(
ADPCM_G722
,
adpcm_g722
);
REGISTER_
ENCDEC
(
ADPCM_G722
,
adpcm_g722
);
REGISTER_ENCDEC
(
ADPCM_G726
,
adpcm_g726
);
REGISTER_DECODER
(
ADPCM_IMA_AMV
,
adpcm_ima_amv
);
REGISTER_DECODER
(
ADPCM_IMA_DK3
,
adpcm_ima_dk3
);
...
...
This diff is collapsed.
Click to expand it.
libavcodec/g722.c
+
82
−
1
View file @
21e681ba
/*
* G.722 ADPCM audio decoder
* G.722 ADPCM audio
encoder/
decoder
*
* Copyright (c) CMU 1993 Computer Science, Speech Group
* Chengxiang Lu and Alex Hauptmann
...
...
@@ -219,6 +219,7 @@ static av_cold int g722_init(AVCodecContext * avctx)
return
0
;
}
#if CONFIG_ADPCM_G722_DECODER
static
const
int16_t
low_inv_quant5
[
32
]
=
{
-
35
,
-
35
,
-
2919
,
-
2195
,
-
1765
,
-
1458
,
-
1219
,
-
1023
,
-
858
,
-
714
,
-
587
,
-
473
,
-
370
,
-
276
,
-
190
,
-
110
,
...
...
@@ -301,4 +302,84 @@ AVCodec adpcm_g722_decoder = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"G.722 ADPCM"
),
.
max_lowres
=
1
,
};
#endif
#if CONFIG_ADPCM_G722_ENCODER
static
const
int16_t
low_quant
[
33
]
=
{
35
,
72
,
110
,
150
,
190
,
233
,
276
,
323
,
370
,
422
,
473
,
530
,
587
,
650
,
714
,
786
,
858
,
940
,
1023
,
1121
,
1219
,
1339
,
1458
,
1612
,
1765
,
1980
,
2195
,
2557
,
2919
};
static
inline
void
filter_samples
(
G722Context
*
c
,
const
int16_t
*
samples
,
int
*
xlow
,
int
*
xhigh
)
{
int
xout1
,
xout2
;
c
->
prev_samples
[
c
->
prev_samples_pos
++
]
=
samples
[
0
];
c
->
prev_samples
[
c
->
prev_samples_pos
++
]
=
samples
[
1
];
apply_qmf
(
c
->
prev_samples
+
c
->
prev_samples_pos
-
24
,
&
xout1
,
&
xout2
);
*
xlow
=
xout1
+
xout2
>>
13
;
*
xhigh
=
xout1
-
xout2
>>
13
;
if
(
c
->
prev_samples_pos
>=
PREV_SAMPLES_BUF_SIZE
)
{
memmove
(
c
->
prev_samples
,
c
->
prev_samples
+
c
->
prev_samples_pos
-
22
,
22
*
sizeof
(
c
->
prev_samples
[
0
]));
c
->
prev_samples_pos
=
22
;
}
}
static
inline
int
encode_high
(
const
struct
G722Band
*
state
,
int
xhigh
)
{
int
diff
=
av_clip_int16
(
xhigh
-
state
->
s_predictor
);
int
pred
=
141
*
state
->
scale_factor
>>
8
;
/* = diff >= 0 ? (diff < pred) + 2 : diff >= -pred */
return
((
diff
^
(
diff
>>
(
sizeof
(
diff
)
*
8
-
1
)))
<
pred
)
+
2
*
(
diff
>=
0
);
}
static
inline
int
encode_low
(
const
struct
G722Band
*
state
,
int
xlow
)
{
int
diff
=
av_clip_int16
(
xlow
-
state
->
s_predictor
);
/* = diff >= 0 ? diff : -(diff + 1) */
int
limit
=
diff
^
(
diff
>>
(
sizeof
(
diff
)
*
8
-
1
));
int
i
=
0
;
limit
=
limit
+
1
<<
10
;
if
(
limit
>
low_quant
[
8
]
*
state
->
scale_factor
)
i
=
9
;
while
(
i
<
29
&&
limit
>
low_quant
[
i
]
*
state
->
scale_factor
)
i
++
;
return
(
diff
<
0
?
(
i
<
2
?
63
:
33
)
:
61
)
-
i
;
}
static
int
g722_encode_frame
(
AVCodecContext
*
avctx
,
uint8_t
*
dst
,
int
buf_size
,
void
*
data
)
{
G722Context
*
c
=
avctx
->
priv_data
;
const
int16_t
*
samples
=
data
;
int
i
;
for
(
i
=
0
;
i
<
buf_size
>>
1
;
i
++
)
{
int
xlow
,
xhigh
,
ihigh
,
ilow
;
filter_samples
(
c
,
&
samples
[
2
*
i
],
&
xlow
,
&
xhigh
);
ihigh
=
encode_high
(
&
c
->
band
[
1
],
xhigh
);
ilow
=
encode_low
(
&
c
->
band
[
0
],
xlow
);
update_high_predictor
(
&
c
->
band
[
1
],
c
->
band
[
1
].
scale_factor
*
high_inv_quant
[
ihigh
]
>>
10
,
ihigh
);
update_low_predictor
(
&
c
->
band
[
0
],
ilow
>>
2
);
*
dst
++
=
ihigh
<<
6
|
ilow
;
}
return
i
;
}
AVCodec
adpcm_g722_encoder
=
{
.
name
=
"g722"
,
.
type
=
AVMEDIA_TYPE_AUDIO
,
.
id
=
CODEC_ID_ADPCM_G722
,
.
priv_data_size
=
sizeof
(
G722Context
),
.
init
=
g722_init
,
.
encode
=
g722_encode_frame
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"G.722 ADPCM"
),
.
sample_fmts
=
(
enum
SampleFormat
[]){
SAMPLE_FMT_S16
,
SAMPLE_FMT_NONE
},
};
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment