Skip to content
Snippets Groups Projects
Commit f2c8e5df authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

CELT update

With minor fixes
parent 64d834f3
No related branches found
No related tags found
No related merge requests found
celt @ c5f99909
Subproject commit a7be4387166462d6dd5ea6184debacb0aca509a0
Subproject commit c5f999097f64eb090e1a353a57f80045ece7330a
......@@ -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
......
......@@ -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>
......
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
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment