Searched refs:codec_ctx (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/examples/ |
D | svc_context.h | 72 vpx_codec_ctx_t *codec_ctx; member 88 vpx_codec_err_t vpx_svc_init(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx, 94 vpx_codec_err_t vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx,
|
D | svc_encodeframe.c | 376 vpx_codec_err_t vpx_svc_init(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx, in vpx_svc_init() argument 382 if (svc_ctx == NULL || codec_ctx == NULL || iface == NULL || in vpx_svc_init() 388 si->codec_ctx = codec_ctx; in vpx_svc_init() 515 res = vpx_codec_enc_init(codec_ctx, iface, enc_cfg, VPX_CODEC_USE_PSNR); in vpx_svc_init() 521 vpx_codec_control(codec_ctx, VP9E_SET_SVC, 1); in vpx_svc_init() 522 vpx_codec_control(codec_ctx, VP9E_SET_SVC_PARAMETERS, &si->svc_params); in vpx_svc_init() 531 vpx_codec_err_t vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx, in vpx_svc_encode() argument 538 if (svc_ctx == NULL || codec_ctx == NULL || si == NULL) { in vpx_svc_encode() 543 vpx_codec_encode(codec_ctx, rawimg, pts, (uint32_t)duration, 0, deadline); in vpx_svc_encode() 549 while ((cx_pkt = vpx_codec_get_cx_data(codec_ctx, &iter))) { in vpx_svc_encode()
|