Lines Matching refs:mVi
57 mVi(nullptr) {} in VorbisDecoderTest()
69 if (mVi) { in ~VorbisDecoderTest()
70 vorbis_info_clear(mVi); in ~VorbisDecoderTest()
71 delete mVi; in ~VorbisDecoderTest()
72 mVi = nullptr; in ~VorbisDecoderTest()
89 vorbis_info* mVi; member in VorbisDecoderTest
110 if (!mVi) { in initVorbisDecoder()
111 mVi = new vorbis_info{}; in initVorbisDecoder()
112 if (!mVi) return -1; in initVorbisDecoder()
114 vorbis_info_clear(mVi); in initVorbisDecoder()
161 int32_t numChannels = mVi->channels; in processVorbisDecoder()
174 vorbis_info_init(mVi); in processVorbisDecoder()
175 int32_t status = _vorbis_unpack_info(mVi, &bits); in processVorbisDecoder()
177 if (mVi->channels != numChannels) { in processVorbisDecoder()
178 ALOGV("num channels changed: %d, sample rate: %ld", mVi->channels, mVi->rate); in processVorbisDecoder()
179 numChannels = mVi->channels; in processVorbisDecoder()
186 int32_t status = _vorbis_unpack_books(mVi, &bits); in processVorbisDecoder()
188 status = vorbis_dsp_init(mState, mVi); in processVorbisDecoder()