OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:alg_priv
(Results
1 - 8
of
8
) sorted by null
/external/libvpx/libvpx/vp8/
vp8_dx_iface.c
94
ctx->priv->
alg_priv
= mmap->base;
96
for (i = 0; i < NELEMENTS(ctx->priv->
alg_priv
->mmaps); i++)
97
ctx->priv->
alg_priv
->mmaps[i].id = vp8_mem_req_segs[i].id;
99
ctx->priv->
alg_priv
->mmaps[0] = *mmap;
100
ctx->priv->
alg_priv
->si.sz = sizeof(ctx->priv->
alg_priv
->si);
101
ctx->priv->
alg_priv
->decrypt_cb = NULL;
102
ctx->priv->
alg_priv
->decrypt_state = NULL;
108
ctx->priv->
alg_priv
->cfg = *ctx->config.dec;
109
ctx->config.dec = &ctx->priv->
alg_priv
->cfg
[
all
...]
vp8_cx_iface.c
596
ctx->priv->
alg_priv
= priv;
604
ctx->priv->
alg_priv
->cfg = *ctx->config.enc;
605
ctx->config.enc = &ctx->priv->
alg_priv
->cfg;
608
cfg = &ctx->priv->
alg_priv
->cfg;
641
set_vp8e_config(&ctx->priv->
alg_priv
->oxcf,
642
ctx->priv->
alg_priv
->cfg,
643
ctx->priv->
alg_priv
->vp8_cfg,
646
optr = vp8_create_compressor(&ctx->priv->
alg_priv
->oxcf);
651
ctx->priv->
alg_priv
->cpi = optr;
[
all
...]
/external/libvpx/libvpx/vp9/
vp9_dx_iface.c
81
ctx->priv->
alg_priv
= mmap->base;
83
for (i = 0; i < NELEMENTS(ctx->priv->
alg_priv
->mmaps); i++)
84
ctx->priv->
alg_priv
->mmaps[i].id = vp9_mem_req_segs[i].id;
86
ctx->priv->
alg_priv
->mmaps[0] = *mmap;
87
ctx->priv->
alg_priv
->si.sz = sizeof(ctx->priv->
alg_priv
->si);
92
ctx->priv->
alg_priv
->cfg = *ctx->config.dec;
93
ctx->config.dec = &ctx->priv->
alg_priv
->cfg;
122
ctx->priv->
alg_priv
->defer_alloc = 1;
527
if (!res && ctx->priv->
alg_priv
) {
[
all
...]
vp9_cx_iface.c
482
ctx->priv->
alg_priv
= priv;
490
ctx->priv->
alg_priv
->cfg = *ctx->config.enc;
491
ctx->config.enc = &ctx->priv->
alg_priv
->cfg;
494
cfg = &ctx->priv->
alg_priv
->cfg;
526
set_vp9e_config(&ctx->priv->
alg_priv
->oxcf,
527
ctx->priv->
alg_priv
->cfg,
528
ctx->priv->
alg_priv
->vp8_cfg);
529
optr = vp9_create_compressor(&ctx->priv->
alg_priv
->oxcf);
534
ctx->priv->
alg_priv
->cpi = optr;
[
all
...]
/external/libvpx/libvpx/vpx/src/
vpx_encoder.c
226
res = ctx->iface->enc.encode(ctx->priv->
alg_priv
, img, pts,
240
if ((res = ctx->iface->enc.encode(ctx->priv->
alg_priv
, img, pts,
269
pkt = ctx->iface->enc.get_cx_data(ctx->priv->
alg_priv
, iter);
339
img = ctx->iface->enc.get_preview(ctx->priv->
alg_priv
);
357
buf = ctx->iface->enc.get_glob_hdrs(ctx->priv->
alg_priv
);
373
res = ctx->iface->enc.cfg_set(ctx->priv->
alg_priv
, cfg);
vpx_codec.c
91
if (ctx->priv->
alg_priv
)
92
ctx->iface->destroy(ctx->priv->
alg_priv
);
128
res = entry->fn(ctx->priv->
alg_priv
, ctrl_id, ap);
vpx_decoder.c
106
res = ctx->iface->dec.get_si(ctx->priv->
alg_priv
, si);
127
res = ctx->iface->dec.decode(ctx->priv->
alg_priv
, data, data_sz,
141
img = ctx->iface->dec.get_frame(ctx->priv->
alg_priv
, iter);
/external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h
341
struct vpx_codec_alg_priv *
alg_priv
;
member in struct:vpx_codec_priv
Completed in 188 milliseconds