shithub: opus

Download patch

ref: eb55ebfc118fafd1f7bd7e91d7f2203c1e072860
parent: 5d4db02f50b848645e7e0933feaab3e407a9e3b5
author: Jean-Marc Valin <jmvalin@jmvalin.ca>
date: Mon Sep 10 09:30:35 EDT 2018

OpusMSDecoder does not have an arch field

--- a/src/opus_multistream_decoder.c
+++ b/src/opus_multistream_decoder.c
@@ -43,10 +43,6 @@
 static void validate_ms_decoder(OpusMSDecoder *st)
 {
    validate_layout(&st->layout);
-#ifdef OPUS_ARCHMASK
-   celt_assert(st->arch >= 0);
-   celt_assert(st->arch <= OPUS_ARCHMASK);
-#endif
 }
 #define VALIDATE_MS_DECODER(st) validate_ms_decoder(st)
 #else