Lines Matching refs:mCodecCtx
370 mCodecCtx(nullptr), in C2SoftVpxDec()
410 if (vpx_codec_decode(mCodecCtx, nullptr, 0, nullptr, 0)) { in onFlush_sm()
418 while (vpx_codec_get_frame(mCodecCtx, &iter)) { in onFlush_sm()
458 if (!mCodecCtx) { in initDecoder()
459 mCodecCtx = new vpx_codec_ctx_t; in initDecoder()
461 if (!mCodecCtx) { in initDecoder()
476 mCodecCtx, mMode == MODE_VP8 ? &vpx_codec_vp8_dx_algo : &vpx_codec_vp9_dx_algo, in initDecoder()
498 if (mCodecCtx) { in destroyDecoder()
499 vpx_codec_destroy(mCodecCtx); in destroyDecoder()
500 delete mCodecCtx; in destroyDecoder()
501 mCodecCtx = nullptr; in destroyDecoder()
668 mCodecCtx, bitstream, inSize, &work->input.ordinal.frameIndex, 0); in process()
708 vpx_image_t *img = vpx_codec_get_frame(mCodecCtx, &iter); in outputBuffer()