Home
last modified time | relevance | path

Searched refs:mCodecContext (Results 1 – 4 of 4) sorted by relevance

/hardware/google/av/media/codecs/vpx/
DC2SoftVp9Enc.cpp66 mCodecContext, VP9E_SET_TILE_COLUMNS, mTileColumns); in setCodecSpecificControls()
73 mCodecContext, VP9E_SET_FRAME_PARALLEL_DECODING, in setCodecSpecificControls()
81 codecReturn = vpx_codec_control(mCodecContext, VP9E_SET_ROW_MT, 1); in setCodecSpecificControls()
90 codecReturn = vpx_codec_control(mCodecContext, VP8E_SET_CPUUSED, 8); in setCodecSpecificControls()
DC2SoftVpxEnc.cpp54 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()
[all …]
DC2SoftVp8Enc.cpp60 vpx_codec_err_t codec_return = vpx_codec_control(mCodecContext, in setCodecSpecificControls()
DC2SoftVpxEnc.h150 vpx_codec_ctx_t* mCodecContext; member