Home
last modified time | relevance | path

Searched refs:mVi (Results 1 – 3 of 3) sorted by relevance

/external/tremolo/fuzzer/
Dvorbis_dec_fuzzer.cpp47 vorbis_info *mVi = nullptr; member in Codec
51 mVi = new vorbis_info{}; in initDecoder()
52 if (!mVi) { in initDecoder()
55 vorbis_info_clear(mVi); in initDecoder()
98 vorbis_info_clear(mVi); in decodeFrames()
99 vorbis_info_init(mVi); in decodeFrames()
100 if (0 != _vorbis_unpack_info(mVi, &bits)) { in decodeFrames()
108 if (0 != _vorbis_unpack_books(mVi, &bits)) { in decodeFrames()
113 if (0 != vorbis_dsp_init(mState, mVi)) { in decodeFrames()
163 size_t maxSamplesInBuffer = kMaxNumSamplesPerChannel * mVi->channels; in decodeFrames()
[all …]
/external/tremolo/tests/
DVorbisDecoderTest.cpp57 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()
[all …]
/external/tremolo/tests/oob_oggpack_look/
Dtest_floor0.cpp72 vorbis_info *mVi = new vorbis_info; in TEST_F() local
73 vorbis_info_init(mVi); in TEST_F()
75 int ret = _vorbis_unpack_info(mVi, &bits); in TEST_F()
84 ret = _vorbis_unpack_books(mVi, &bits); in TEST_F()
92 vorbis_dsp_init(mState, mVi); in TEST_F()