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
Model registry
Operate
Environments
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
Marcus Asteborg
Opus
Commits
f2c8e5df
Commit
f2c8e5df
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
CELT update
With minor fixes
parent
64d834f3
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
celt
+1
-1
1 addition, 1 deletion
celt
configure.ac
+1
-1
1 addition, 1 deletion
configure.ac
doc/draft-ietf-codec-opus.xml
+3
-1
3 additions, 1 deletion
doc/draft-ietf-codec-opus.xml
src/Makefile.am
+1
-1
1 addition, 1 deletion
src/Makefile.am
src/opus_decoder.c
+1
-0
1 addition, 0 deletions
src/opus_decoder.c
with
7 additions
and
4 deletions
celt
@
c5f99909
Subproject commit
a7be4387166462d6dd5ea6184debacb0aca509a0
Subproject commit
c5f999097f64eb090e1a353a57f80045ece7330a
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
1
View file @
f2c8e5df
...
...
@@ -3,7 +3,7 @@
AC_PREREQ([2.59])
AC_INIT(src/opus.h)
AM_INIT_AUTOMAKE(opus,0.9.
3
)
AM_INIT_AUTOMAKE(opus,0.9.
4
)
# Checks for programs.
AC_PROG_CC
...
...
This diff is collapsed.
Click to expand it.
doc/draft-ietf-codec-opus.xml
+
3
−
1
View file @
f2c8e5df
...
...
@@ -2030,7 +2030,9 @@ This document has no actions for IANA.
<section
anchor=
"Acknowledgments"
title=
"Acknowledgments"
>
<t>
Thanks to all other developers, including Raymond Chen, Soeren Skak Jensen, Gregory Maxwell,
Christopher Montgomery, Karsten Vandborg Soerensen, and Timothy Terriberry.
Christopher Montgomery, Karsten Vandborg Soerensen, and Timothy Terriberry. We would also
like to thank Igor Dyakonov, Jan Skoglund and Keith Yan for their help in testing the
codec.
</t>
</section>
...
...
This diff is collapsed.
Click to expand it.
src/Makefile.am
+
1
−
1
View file @
f2c8e5df
EXTRA_
dist
=
hybrid.vcxproj.filters hybrid.vcxproj
EXTRA_
DIST
=
hybrid.vcxproj.filters hybrid.vcxproj
INCLUDES
=
-I
$(
top_srcdir
)
/celt/libcelt/
-I
$(
top_srcdir
)
/silk/interface
...
...
This diff is collapsed.
Click to expand it.
src/opus_decoder.c
+
1
−
0
View file @
f2c8e5df
...
...
@@ -135,6 +135,7 @@ static int opus_decode_frame(OpusDecoder *st, const unsigned char *data,
if
(
st
->
stream_channels
>
st
->
channels
)
return
OPUS_CORRUPTED_DATA
;
/* FIXME: Remove this when we add SILK stereo support */
if
(
st
->
stream_channels
==
2
&&
mode
!=
MODE_CELT_ONLY
)
return
OPUS_UNIMPLEMENTED
;
...
...
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