Home
last modified time | relevance | path

Searched refs:vpx_codec_ctx_t (Results 1 – 5 of 5) sorted by relevance

/device/generic/goldfish-opengl/system/codecs/omx/vpxdec/
Dgoldfish_vpx_defs.h40 struct vpx_codec_ctx_t { struct
57 int vpx_codec_destroy(vpx_codec_ctx_t*); argument
58 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,
Dgoldfish_vpx_impl.cpp39 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()
DGoldfishVPX.h89 vpx_codec_ctx_t *mCtx;
104 void setup_ctx_parameters(vpx_codec_ctx_t*, int hostColorBufferId = -1);
DGoldfishVPX.cpp108 mCtx = new vpx_codec_ctx_t; in initDecoder()
133 void GoldfishVPX::setup_ctx_parameters(vpx_codec_ctx_t* ctx, in setup_ctx_parameters()
/device/google/cuttlefish/host/frontend/gcastv2/libsource/
DFrameBufferSource.cpp75 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()