Home
last modified time | relevance | path

Searched refs:mDecoderBuf (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/
DSoftMP3.cpp46 mDecoderBuf(NULL), in SoftMP3()
60 if (mDecoderBuf != NULL) { in ~SoftMP3()
61 free(mDecoderBuf); in ~SoftMP3()
62 mDecoderBuf = NULL; in ~SoftMP3()
117 mDecoderBuf = calloc(1, memRequirements); in initDecoder()
119 pvmp3_InitDecoder(mConfig, mDecoderBuf); in initDecoder()
351 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf)) in onQueueFilled()
456 pvmp3_InitDecoder(mConfig, mDecoderBuf); in onPortFlushCompleted()
491 pvmp3_InitDecoder(mConfig, mDecoderBuf); in onReset()
DSoftMP3.h55 void *mDecoderBuf; member
/frameworks/av/media/codec2/components/amr_nb_wb/
DC2SoftAmrDec.cpp124 mDecoderBuf(nullptr), in C2SoftAmrDec()
165 if (mDecoderBuf) { in onRelease()
166 free(mDecoderBuf); in onRelease()
168 mDecoderBuf = nullptr; in onRelease()
184 mDecoderBuf = malloc(memReq); in initDecoder()
185 if (mDecoderBuf) { in initDecoder()
186 pvDecoder_AmrWb_Init(&mAmrHandle, mDecoderBuf, &mDecoderCookie); in initDecoder()
344 mDecoderBuf, FT, mDecoderCookie); in process()
DC2SoftAmrDec.h54 void *mDecoderBuf; member
/frameworks/av/media/codec2/components/mp3/
DC2SoftMp3Dec.cpp101 mDecoderBuf(nullptr) { in C2SoftMP3()
116 pvmp3_InitDecoder(mConfig, mDecoderBuf); in onStop()
132 if (mDecoderBuf) { in onRelease()
133 free(mDecoderBuf); in onRelease()
134 mDecoderBuf = nullptr; in onRelease()
150 mDecoderBuf = malloc(memRequirements); in initDecoder()
151 if (!mDecoderBuf) return NO_MEMORY; in initDecoder()
153 pvmp3_InitDecoder(mConfig, mDecoderBuf); in initDecoder()
412 if ((decoderErr = pvmp3_framedecoder(mConfig, mDecoderBuf)) in process()
DC2SoftMp3Dec.h60 void *mDecoderBuf; member
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
DSoftAMR.cpp44 mDecoderBuf(NULL), in SoftAMR()
66 free(mDecoderBuf); in ~SoftAMR()
67 mDecoderBuf = NULL; in ~SoftAMR()
132 mDecoderBuf = malloc(memReq); in initDecoder()
134 pvDecoder_AmrWb_Init(&mState, mDecoderBuf, &mDecoderCookie); in initDecoder()
480 mDecoderBuf, frameType, mDecoderCookie); in onQueueFilled()
DSoftAMR.h63 void *mDecoderBuf; member