Home
last modified time | relevance | path

Searched refs:mFLACDecoder (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/av/media/libstagefright/flac/dec/test/
H A DFlacDecoderTest.cpp49 if (mFLACDecoder) delete mFLACDecoder; in ~FLACDecoderTest()
50 mFLACDecoder = nullptr; in ~FLACDecoderTest()
54 mFLACDecoder = FLACDecoder::Create(); in SetUp()
61 FLACDecoder *mFLACDecoder; member in FLACDecoderTest
125 mStreamInfo = mFLACDecoder->getStreamInfo(); in processFlacDecoder()
184 if (mFLACDecoder) delete mFLACDecoder; in TEST_F()
185 mFLACDecoder = nullptr; in TEST_F()
188 mFLACDecoder = FLACDecoder::Create(); in TEST_F()
190 if (mFLACDecoder) delete mFLACDecoder; in TEST_F()
191 mFLACDecoder = nullptr; in TEST_F()
[all …]
/aosp12/frameworks/av/media/codec2/components/flac/
H A DC2SoftFlacDec.cpp112 mFLACDecoder(nullptr) { in C2SoftFlacDec()
125 if (mFLACDecoder) mFLACDecoder->flush(); in onStop()
140 if (mFLACDecoder) delete mFLACDecoder; in onRelease()
141 mFLACDecoder = nullptr; in onRelease()
149 if (mFLACDecoder) { in initDecoder()
150 delete mFLACDecoder; in initDecoder()
152 mFLACDecoder = FLACDecoder::Create(); in initDecoder()
153 if (!mFLACDecoder) { in initDecoder()
247 mStreamInfo = mFLACDecoder->getStreamInfo(); in process()
299 status_t decoderErr = mFLACDecoder->decodeOneFrame( in process()
[all …]
H A DC2SoftFlacDec.h52 FLACDecoder *mFLACDecoder; member
/aosp12/frameworks/av/media/libstagefright/codecs/flac/dec/
H A DSoftFlacDecoder.cpp47 mFLACDecoder(NULL), in SoftFlacDecoder()
62 delete mFLACDecoder; in ~SoftFlacDecoder()
109 mFLACDecoder = FLACDecoder::Create(); in initDecoder()
110 if (mFLACDecoder == NULL) { in initDecoder()
118 if (mFLACDecoder == NULL) { in initCheck()
359 status_t decoderErr = mFLACDecoder->parseMetadata(inBuffer, inBufferLength); in onQueueFilled()
376 mStreamInfo = mFLACDecoder->getStreamInfo(); in onQueueFilled()
391 status_t decoderErr = mFLACDecoder->decodeOneFrame( in onQueueFilled()
411 status_t decoderErr = mFLACDecoder->decodeOneFrame( in onQueueFilled()
444 mFLACDecoder->flush(); in drainDecoder()
H A DSoftFlacDecoder.h57 FLACDecoder *mFLACDecoder; member