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
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Victor Ding
Opus
Commits
fb45a3fa
Commit
fb45a3fa
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Build fixes
parent
f54b69b7
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
celt
+1
-1
1 addition, 1 deletion
celt
configure.ac
+0
-3
0 additions, 3 deletions
configure.ac
silk
+1
-1
1 addition, 1 deletion
silk
src/test_opus.c
+4
-2
4 additions, 2 deletions
src/test_opus.c
with
6 additions
and
7 deletions
celt
@
d539c6b9
Subproject commit
ec6588ae149f82a182c73501abaf268e0b9a190b
Subproject commit
d539c6b9c59d243f81a47d78b9497ea455bdea00
This diff is collapsed.
Click to expand it.
configure.ac
+
0
−
3
View file @
fb45a3fa
...
...
@@ -19,9 +19,6 @@ AC_C_INLINE
AC_C_RESTRICT
AC_TYPE_SIZE_T
# Checks for library functions.
AC_FUNC_MALLOC
export OPUS_BUILD=true
AC_CONFIG_SUBDIRS([celt])
AC_CONFIG_SUBDIRS([silk])
...
...
This diff is collapsed.
Click to expand it.
silk
@
111b23f6
Subproject commit
a81e6dc2bc337c25156e6e908e45cbf7a5e0f104
Subproject commit
111b23f648a45d3a034050e579a531d0592dc720
This diff is collapsed.
Click to expand it.
src/test_opus.c
+
4
−
2
View file @
fb45a3fa
...
...
@@ -242,6 +242,7 @@ int main(int argc, char *argv[])
while
(
!
stop
)
{
int
write_samples
;
int
lost
;
err
=
fread
(
in
,
sizeof
(
short
),
frame_size
*
channels
,
fin
);
tot_read
+=
err
;
if
(
err
<
frame_size
*
channels
)
...
...
@@ -257,7 +258,8 @@ int main(int argc, char *argv[])
return
1
;
}
opus_decode
(
dec
,
rand
()
%
100
<
packet_loss_perc
?
NULL
:
data
,
len
,
out
,
frame_size
);
lost
=
rand
()
%
100
<
packet_loss_perc
;
opus_decode
(
dec
,
lost
?
NULL
:
data
,
len
,
out
,
frame_size
);
count
++
;
tot_written
+=
(
frame_size
-
skip
)
*
channels
;
write_samples
=
frame_size
;
...
...
@@ -271,7 +273,7 @@ int main(int argc, char *argv[])
#if OPUS_TEST_RANGE_CODER_STATE
/* compare final range encoder rng values of encoder and decoder */
if
(
opus_decoder_get_final_range
(
dec
)
!=
opus_encoder_get_final_range
(
enc
)
)
{
if
(
!
lost
&&
opus_decoder_get_final_range
(
dec
)
!=
opus_encoder_get_final_range
(
enc
)
)
{
fprintf
(
stderr
,
"Error: Range coder state mismatch between encoder and decoder.
\n
"
);
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