Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexander Traud
Opus
Commits
4a11daa2
Commit
4a11daa2
authored
14 years ago
by
Gregory Maxwell
Committed by
Jean-Marc Valin
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Updates tandem-test for more robust error reporting and additional frame sizes and sample rates.
parent
83c26fbd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/tandem-test.c
+33
-29
33 additions, 29 deletions
tests/tandem-test.c
with
33 additions
and
29 deletions
tests/tandem-test.c
+
33
−
29
View file @
4a11daa2
...
...
@@ -51,11 +51,12 @@
int
async_tandem
(
int
rate
,
int
frame_size
,
int
channels
,
int
bitrate_min
,
int
bitrate_max
)
{
unsigned
char
data
[
250
];
int
error
;
unsigned
char
data
[
648
];
CELTMode
*
mode
=
NULL
;
CELTEncoder
*
enc
;
short
carry
[
2
];
short
pcm
[
512
*
2
];
short
pcm
[
960
*
2
];
CELTDecoder
*
dec
;
int
bmin
,
bmax
;
float
ms
;
...
...
@@ -64,33 +65,40 @@ int async_tandem(int rate, int frame_size, int channels, int bitrate_min,
bmin
=
floor
((
bitrate_min
/
(
rate
/
(
float
)
frame_size
))
/
8
.
0
);
bmax
=
ceil
((
bitrate_max
/
(
rate
/
(
float
)
frame_size
))
/
8
.
0
);
if
(
bmin
<
12
)
bmin
=
12
;
if
(
bmax
>
25
0
)
bmax
=
25
0
;
if
(
bmin
<
8
)
bmin
=
8
;
if
(
bmax
>
64
0
)
bmax
=
64
0
;
if
(
bmin
>=
bmax
)
bmax
=
bmin
+
8
;
/*
increment += (bmax - bmin) /
64; */
increment
+=
(
bmax
-
bmin
)
/
128
;
printf
(
"Testing asynchronous tandeming (%dHz, %dch, %d samples, %d - %d bytes).
\n
"
,
rate
,
channels
,
frame_size
,
bmin
,
bmax
);
mode
=
celt_mode_create
(
rate
,
frame_size
,
NULL
);
if
(
mode
==
NULL
)
{
fprintf
(
stderr
,
"Error: failed to create a mode
\n
"
);
mode
=
celt_mode_create
(
rate
,
frame_size
,
&
error
);
if
(
mode
==
NULL
||
error
)
{
fprintf
(
stderr
,
"Error: failed to create a mode
: %s
\n
"
,
celt_strerror
(
error
)
);
exit
(
1
);
}
dec
=
celt_decoder_create
(
mode
,
channels
,
NULL
);
enc
=
celt_encoder_create
(
mode
,
channels
,
NULL
);
dec
=
celt_decoder_create
(
mode
,
channels
,
&
error
);
if
(
error
){
fprintf
(
stderr
,
"Error: celt_decoder_create returned %s
\n
"
,
celt_strerror
(
error
));
exit
(
1
);
}
enc
=
celt_encoder_create
(
mode
,
channels
,
&
error
);
if
(
error
){
fprintf
(
stderr
,
"Error: celt_encoder_create returned %s
\n
"
,
celt_strerror
(
error
));
exit
(
1
);
}
for
(
j
=
0
;
j
<
frame_size
*
channels
;
j
++
)
pcm
[
j
]
=
0
;
for
(
bytes_per_frame
=
bmin
;
bytes_per_frame
<=
bmax
;
bytes_per_frame
+=
increment
)
{
/*Prime the encoder and decoder */
for
(
i
=
0
;
i
<
(
1024
+
(
frame_size
>>
1
))
/
frame_size
+
2
;
i
++
)
{
...
...
@@ -101,13 +109,13 @@ int async_tandem(int rate, int frame_size, int channels, int bitrate_min,
ret
=
celt_encode
(
enc
,
pcm
,
frame_size
,
data
,
bytes_per_frame
);
if
(
ret
!=
bytes_per_frame
)
{
fprintf
(
stderr
,
"Error:
during init
celt_encode returned %
d
\n
"
,
ret
);
fprintf
(
stderr
,
"Error: celt_encode returned %
s
\n
"
,
celt_strerror
(
ret
)
)
;
exit
(
1
);
}
ret
=
celt_decode
(
dec
,
data
,
ret
,
pcm
,
frame_size
);
if
(
ret
!=
CELT_OK
)
{
fprintf
(
stderr
,
"Error:
during init
celt_decode returned %
d
\n
"
,
ret
);
fprintf
(
stderr
,
"Error: celt_decode returned %
s
\n
"
,
celt_strerror
(
ret
)
)
;
}
}
...
...
@@ -125,15 +133,15 @@ int async_tandem(int rate, int frame_size, int channels, int bitrate_min,
ret
=
celt_encode
(
enc
,
pcm
,
frame_size
,
data
,
bytes_per_frame
);
if
(
ret
!=
bytes_per_frame
)
{
fprintf
(
stderr
,
"Error: at %d bytes_per_frame celt_encode returned %
d
\n
"
,
bytes_per_frame
,
ret
);
fprintf
(
stderr
,
"Error: at %d bytes_per_frame celt_encode returned %
s
\n
"
,
bytes_per_frame
,
celt_strerror
(
ret
)
)
;
exit
(
1
);
}
ret
=
celt_decode
(
dec
,
data
,
ret
,
pcm
,
frame_size
);
if
(
ret
!=
CELT_OK
)
{
fprintf
(
stderr
,
"Error: at %d bytes_per_frame celt_decode returned %
d
\n
"
,
bytes_per_frame
,
ret
);
fprintf
(
stderr
,
"Error: at %d bytes_per_frame celt_decode returned %
s
\n
"
,
bytes_per_frame
,
celt_strerror
(
ret
)
)
;
exit
(
1
);
}
}
...
...
@@ -157,6 +165,7 @@ int async_tandem(int rate, int frame_size, int channels, int bitrate_min,
int
main
(
int
argc
,
char
*
argv
[])
{
int
sizes
[
8
]
=
{
960
,
480
,
240
,
120
,
512
,
256
,
128
,
64
};
unsigned
int
seed
;
int
ch
,
n
;
...
...
@@ -173,19 +182,14 @@ int main(int argc, char *argv[])
srand
(
seed
);
printf
(
"CELT codec tests. Random seed: %u (%.4X)
\n
"
,
seed
,
rand
()
%
65536
);
for
(
n
=
6
;
n
<
10
;
n
++
)
{
for
(
n
=
0
;
n
<
8
;
n
++
)
{
for
(
ch
=
1
;
ch
<=
2
;
ch
++
)
{
async_tandem
(
44100
,
1
<<
n
,
ch
,
47000
*
ch
,
77000
*
ch
);
async_tandem
(
48000
,
1
<<
n
,
ch
,
47000
*
ch
,
77000
*
ch
);
async_tandem
(
32000
,
1
<<
n
,
ch
,
31000
*
ch
,
65000
*
ch
);
async_tandem
(
48000
,
sizes
[
n
],
ch
,
12000
*
ch
,
128000
*
ch
);
async_tandem
(
44100
,
sizes
[
n
],
ch
,
12000
*
ch
,
128000
*
ch
);
async_tandem
(
32000
,
sizes
[
n
],
ch
,
12000
*
ch
,
128000
*
ch
);
async_tandem
(
16000
,
sizes
[
n
],
ch
,
12000
*
ch
,
64000
*
ch
);
}
}
for
(
ch
=
1
;
ch
<=
2
;
ch
++
)
async_tandem
(
32000
,
320
,
ch
,
31000
*
ch
,
65000
*
ch
);
for
(
ch
=
1
;
ch
<=
2
;
ch
++
)
async_tandem
(
48000
,
480
,
ch
,
31000
*
ch
,
77000
*
ch
);
return
0
;
}
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