Lines Matching refs:mState
46 vorbis_dsp_state *mState = nullptr; member in Codec
57 mState = new vorbis_dsp_state{}; in initDecoder()
58 if (!mState) { in initDecoder()
61 vorbis_dsp_clear(mState); in initDecoder()
112 vorbis_dsp_clear(mState); in decodeFrames()
113 if (0 != vorbis_dsp_init(mState, mVi)) { in decodeFrames()
161 int ret = vorbis_dsp_synthesis(mState, &pack, 1); in decodeFrames()
166 vorbis_dsp_pcmout(mState, outputBuf, kMaxNumSamplesPerChannel); in decodeFrames()
171 if (mState) { in deInitDecoder()
172 vorbis_dsp_clear(mState); in deInitDecoder()
173 delete mState; in deInitDecoder()
174 mState = nullptr; in deInitDecoder()