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
c7d89948
Commit
c7d89948
authored
14 years ago
by
Justin Ruggles
Browse files
Options
Downloads
Patches
Plain Diff
Set a constant frame size for encoding G.726 audio.
Originally committed as revision 25107 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
680861ca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libavcodec/g726.c
+8
-1
8 additions, 1 deletion
libavcodec/g726.c
tests/ref/acodec/g726
+4
-4
4 additions, 4 deletions
tests/ref/acodec/g726
with
12 additions
and
5 deletions
libavcodec/g726.c
+
8
−
1
View file @
c7d89948
...
...
@@ -334,6 +334,11 @@ static av_cold int g726_init(AVCodecContext * avctx)
if
(
avctx
->
codec
->
decode
)
avctx
->
sample_fmt
=
SAMPLE_FMT_S16
;
/* select a frame size that will end on a byte boundary and have a size of
approximately 1024 bytes */
if
(
avctx
->
codec
->
encode
)
avctx
->
frame_size
=
((
int
[]){
4096
,
2736
,
2048
,
1640
})[
index
];
return
0
;
}
...
...
@@ -350,10 +355,11 @@ static int g726_encode_frame(AVCodecContext *avctx,
G726Context
*
c
=
avctx
->
priv_data
;
const
short
*
samples
=
data
;
PutBitContext
pb
;
int
i
;
init_put_bits
(
&
pb
,
dst
,
1024
*
1024
);
for
(
;
buf_size
;
buf_size
--
)
for
(
i
=
0
;
i
<
avctx
->
frame_size
;
i
++
)
put_bits
(
&
pb
,
c
->
code_size
,
g726_encode
(
c
,
*
samples
++
));
flush_put_bits
(
&
pb
);
...
...
@@ -394,6 +400,7 @@ AVCodec adpcm_g726_encoder = {
g726_encode_frame
,
g726_close
,
NULL
,
.
capabilities
=
CODEC_CAP_SMALL_LAST_FRAME
,
.
sample_fmts
=
(
const
enum
SampleFormat
[]){
SAMPLE_FMT_S16
,
SAMPLE_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"G.726 ADPCM"
),
};
...
...
This diff is collapsed.
Click to expand it.
tests/ref/acodec/g726
+
4
−
4
View file @
c7d89948
5d8cce28f83dd33c3c7eaf43a5db5294
*./tests/data/acodec/g726.wav
240
8
2 ./tests/data/acodec/g726.wav
4f1ba1af75dee64625a1c852e6cd01d3
*./tests/data/g726.acodec.out.wav
stddev: 85
0
4.
69
PSNR: 17.
74
MAXDIFF:
31645
bytes: 9
610
4/ 1058400
fd090ddf05cc3401cc75c4a5ace1d05a
*./tests/data/acodec/g726.wav
240
5
2 ./tests/data/acodec/g726.wav
74abea06027375111eeac1b2f8c7d3af
*./tests/data/g726.acodec.out.wav
stddev: 85
5
4.
55
PSNR: 17.
69
MAXDIFF:
29353
bytes: 9
598
4/ 1058400
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