Disable newly introduced CELT signalling

This commit is contained in:
Jean-Marc Valin 2011-03-11 17:49:10 -05:00
parent 5012e4f36d
commit 8ea67049c2
3 changed files with 5 additions and 1 deletions

View file

@ -32,6 +32,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include "celt.h"
#include "opus_decoder.h"
#include "entdec.h"
#include "modes.h"
@ -66,6 +67,7 @@ OpusDecoder *opus_decoder_create(int Fs, int channels)
/* Initialize CELT decoder */
st->celt_dec = celt_decoder_init(st->celt_dec, Fs, channels, NULL);
celt_decoder_ctl(st->celt_dec, CELT_SET_SIGNALLING(0));
st->prev_mode = 0;
return st;