Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2018-09-10 20:30:35 +0300
committerJean-Marc Valin <jmvalin@jmvalin.ca>2018-09-10 20:30:35 +0300
commiteb55ebfc118fafd1f7bd7e91d7f2203c1e072860 (patch)
tree65efa961f2b9d08f878397048f23da205e5d473b /src
parent5d4db02f50b848645e7e0933feaab3e407a9e3b5 (diff)
OpusMSDecoder does not have an arch field
Diffstat (limited to 'src')
-rw-r--r--src/opus_multistream_decoder.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/opus_multistream_decoder.c b/src/opus_multistream_decoder.c
index e0bd4c66..562103cd 100644
--- 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