shithub: opus

Download patch

ref: f2c8e5dfee9a1ec16a4b5c54dcd335791d18120e
parent: 64d834f3856f24d154a7d26226739108e5303c84
author: Jean-Marc Valin <[email protected]>
date: Fri Mar 18 11:48:39 EDT 2011

CELT update

With minor fixes

--- a/configure.ac
+++ b/configure.ac
@@ -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
--- a/doc/draft-ietf-codec-opus.xml
+++ b/doc/draft-ietf-codec-opus.xml
@@ -2030,7 +2030,9 @@
 <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> 
 
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
 
-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 
 
--- a/src/opus_decoder.c
+++ b/src/opus_decoder.c
@@ -135,6 +135,7 @@
     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;