Searched refs:mPcm (Results 1 – 1 of 1) sorted by relevance
64 opus_int16 *mPcm = nullptr; member in Codec89 size_t sizePcm = sizeof(*mPcm) * kMaxFrameSample * mNoOfChannels; in initDecoder()90 mPcm = static_cast<opus_int16 *>(malloc(sizePcm)); in initDecoder()91 if (!mPcm) { in initDecoder()94 memset(mPcm, 0x0, sizePcm); in initDecoder()101 if (mPcm) { in deInitDecoder()102 free(mPcm); in deInitDecoder()104 mPcm = nullptr; in deInitDecoder()108 (void)OPUS_DEC_DECODE_API(mDec, data, size, mPcm, kMaxFrameSample, 0 /*fec*/); in decodeFrames()