Searched refs:vpx_codec_ctx_t (Results 1 – 5 of 5) sorted by relevance
40 struct vpx_codec_ctx_t { struct57 int vpx_codec_destroy(vpx_codec_ctx_t*); argument58 int vpx_codec_dec_init(vpx_codec_ctx_t*);59 vpx_image_t* vpx_codec_get_frame(vpx_codec_ctx_t*, int hostColorBufferId = -1);60 int vpx_codec_flush(vpx_codec_ctx_t *ctx);61 int vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data,
39 static void sendVpxOperation(vpx_codec_ctx_t* ctx, MediaOperation op) { in sendVpxOperation()51 int vpx_codec_destroy(vpx_codec_ctx_t* ctx) { in vpx_codec_destroy()61 int vpx_codec_dec_init(vpx_codec_ctx_t* ctx) { in vpx_codec_dec_init()109 vpx_image_t* vpx_codec_get_frame(vpx_codec_ctx_t* ctx, int hostColorBufferId) { in vpx_codec_get_frame()135 int vpx_codec_flush(vpx_codec_ctx_t* ctx) { in vpx_codec_flush()143 int vpx_codec_decode(vpx_codec_ctx_t *ctx, in vpx_codec_decode()
89 vpx_codec_ctx_t *mCtx;104 void setup_ctx_parameters(vpx_codec_ctx_t*, int hostColorBufferId = -1);
108 mCtx = new vpx_codec_ctx_t; in initDecoder()133 void GoldfishVPX::setup_ctx_parameters(vpx_codec_ctx_t* ctx, in setup_ctx_parameters()
75 using contextFreeFunc = std::function<vpx_codec_err_t(vpx_codec_ctx_t *)>;76 std::unique_ptr<vpx_codec_ctx_t, contextFreeFunc> mCodecContext;136 mCodecContext.reset(new vpx_codec_ctx_t); in VPXEncoder()