Searched refs:mCodecCtx (Results 1 – 4 of 4) sorted by relevance
/hardware/google/av/media/codecs/avc/ |
D | C2SoftAvcEnc.cpp | 377 mCodecCtx(nullptr), in C2SoftAvcEnc() 417 mCodecCtx = nullptr; in initEncParams() 459 status = ive_api_function(mCodecCtx, &s_dimensions_ip, &s_dimensions_op); in setDimensions() 482 mCodecCtx, (void *) &s_num_cores_ip, (void *) &s_num_cores_op); in setNumCores() 508 status = ive_api_function(mCodecCtx, &s_frame_rate_ip, &s_frame_rate_op); in setFrameRate() 535 status = ive_api_function(mCodecCtx, &s_ipe_params_ip, &s_ipe_params_op); in setIpeParams() 560 status = ive_api_function(mCodecCtx, &s_bitrate_ip, &s_bitrate_op); in setBitRate() 583 status = ive_api_function(mCodecCtx, &s_frame_type_ip, &s_frame_type_op); in setFrameType() 618 status = ive_api_function(mCodecCtx, &s_qp_ip, &s_qp_op); in setQp() 642 status = ive_api_function(mCodecCtx, &s_enc_mode_ip, &s_enc_mode_op); in setEncMode() [all …]
|
D | C2SoftAvcEnc.h | 181 iv_obj_t *mCodecCtx; // Codec context member
|
/hardware/google/av/media/codecs/vpx/ |
D | C2SoftVpxDec.cpp | 274 mCodecCtx(nullptr) { in C2SoftVpxDec() 312 if (vpx_codec_decode(mCodecCtx, nullptr, 0, nullptr, 0)) { in onFlush_sm() 320 while (vpx_codec_get_frame(mCodecCtx, &iter)) { in onFlush_sm() 354 if (!mCodecCtx) { in initDecoder() 355 mCodecCtx = new vpx_codec_ctx_t; in initDecoder() 357 if (!mCodecCtx) { in initDecoder() 372 mCodecCtx, mMode == MODE_VP8 ? &vpx_codec_vp8_dx_algo : &vpx_codec_vp9_dx_algo, in initDecoder() 382 if (mCodecCtx) { in destroyDecoder() 383 vpx_codec_destroy(mCodecCtx); in destroyDecoder() 384 delete mCodecCtx; in destroyDecoder() [all …]
|
D | C2SoftVpxDec.h | 54 vpx_codec_ctx_t *mCodecCtx; member
|