Lines Matching refs:mCodecContext
54 mCodecContext(nullptr), in C2SoftVpxEnc()
84 if (mCodecContext) { in onRelease()
85 vpx_codec_destroy(mCodecContext); in onRelease()
86 delete mCodecContext; in onRelease()
87 mCodecContext = nullptr; in onRelease()
272 mCodecContext = new vpx_codec_ctx_t; in initEncoder()
273 if (!mCodecContext) goto CleanUp; in initEncoder()
274 codec_return = vpx_codec_enc_init(mCodecContext, in initEncoder()
285 codec_return = vpx_codec_control(mCodecContext, in initEncoder()
295 codec_return = vpx_codec_control(mCodecContext, in initEncoder()
300 codec_return = vpx_codec_control(mCodecContext, in initEncoder()
425 if (!mCodecContext && OK != initEncoder()) { in process()
565 vpx_codec_err_t res = vpx_codec_enc_config_set(mCodecContext, in process()
591 vpx_codec_err_t codec_return = vpx_codec_encode(mCodecContext, &raw_frame, in process()
606 mCodecContext, &encoded_packet_iterator))) { in process()