Searched refs:mDecoderBuf (Results 1 – 8 of 8) sorted by relevance
/frameworks/av/media/libstagefright/codecs/mp3dec/ |
D | SoftMP3.cpp | 46 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()
|
D | SoftMP3.h | 55 void *mDecoderBuf; member
|
/frameworks/av/media/codec2/components/amr_nb_wb/ |
D | C2SoftAmrDec.cpp | 124 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()
|
D | C2SoftAmrDec.h | 54 void *mDecoderBuf; member
|
/frameworks/av/media/codec2/components/mp3/ |
D | C2SoftMp3Dec.cpp | 101 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()
|
D | C2SoftMp3Dec.h | 60 void *mDecoderBuf; member
|
/frameworks/av/media/libstagefright/codecs/amrnb/dec/ |
D | SoftAMR.cpp | 44 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()
|
D | SoftAMR.h | 63 void *mDecoderBuf; member
|