Home
last modified time | relevance | path

Searched refs:oci (Results 1 – 12 of 12) sorted by relevance

/external/libvpx/libvpx/vp8/common/
Dalloccommon.c20 void vp8_de_alloc_frame_buffers(VP8_COMMON *oci) { in vp8_de_alloc_frame_buffers() argument
23 vp8_yv12_de_alloc_frame_buffer(&oci->yv12_fb[i]); in vp8_de_alloc_frame_buffers()
26 vp8_yv12_de_alloc_frame_buffer(&oci->temp_scale_frame); in vp8_de_alloc_frame_buffers()
28 vp8_yv12_de_alloc_frame_buffer(&oci->post_proc_buffer); in vp8_de_alloc_frame_buffers()
29 if (oci->post_proc_buffer_int_used) { in vp8_de_alloc_frame_buffers()
30 vp8_yv12_de_alloc_frame_buffer(&oci->post_proc_buffer_int); in vp8_de_alloc_frame_buffers()
33 vpx_free(oci->pp_limits_buffer); in vp8_de_alloc_frame_buffers()
34 oci->pp_limits_buffer = NULL; in vp8_de_alloc_frame_buffers()
36 vpx_free(oci->postproc_state.generated_noise); in vp8_de_alloc_frame_buffers()
37 oci->postproc_state.generated_noise = NULL; in vp8_de_alloc_frame_buffers()
[all …]
Dpostproc.c273 int vp8_post_proc_frame(VP8_COMMON *oci, YV12_BUFFER_CONFIG *dest, in vp8_post_proc_frame() argument
275 int q = oci->filter_level * 10 / 6; in vp8_post_proc_frame()
280 if (!oci->frame_to_show) return -1; in vp8_post_proc_frame()
285 *dest = *oci->frame_to_show; in vp8_post_proc_frame()
288 dest->y_width = oci->Width; in vp8_post_proc_frame()
289 dest->y_height = oci->Height; in vp8_post_proc_frame()
291 oci->postproc_state.last_base_qindex = oci->base_qindex; in vp8_post_proc_frame()
292 oci->postproc_state.last_frame_valid = 1; in vp8_post_proc_frame()
296 if (!oci->postproc_state.generated_noise) { in vp8_post_proc_frame()
297 oci->postproc_state.generated_noise = vpx_calloc( in vp8_post_proc_frame()
[all …]
Dalloccommon.h20 void vp8_create_common(VP8_COMMON *oci);
21 void vp8_remove_common(VP8_COMMON *oci);
22 void vp8_de_alloc_frame_buffers(VP8_COMMON *oci);
23 int vp8_alloc_frame_buffers(VP8_COMMON *oci, int width, int height);
24 void vp8_setup_version(VP8_COMMON *oci);
Dpostproc.h29 int vp8_post_proc_frame(struct VP8Common *oci, YV12_BUFFER_CONFIG *dest,
32 void vp8_de_noise(struct VP8Common *oci, YV12_BUFFER_CONFIG *source,
36 void vp8_deblock(struct VP8Common *oci, YV12_BUFFER_CONFIG *source,
/external/libvpx/libvpx/vp8/decoder/
Donyxd_if.c428 int vp8dx_references_buffer(VP8_COMMON *oci, int ref_frame) { in vp8dx_references_buffer() argument
429 const MODE_INFO *mi = oci->mi; in vp8dx_references_buffer()
432 for (mb_row = 0; mb_row < oci->mb_rows; ++mb_row) { in vp8dx_references_buffer()
433 for (mb_col = 0; mb_col < oci->mb_cols; mb_col++, mi++) { in vp8dx_references_buffer()
/external/syslinux/com32/lua/src/
Dlvm.c755 CallInfo *oci = nci->previous; /* caller frame */ in luaV_execute()
757 StkId ofunc = oci->func; /* caller function */ in luaV_execute()
762 if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base); in luaV_execute()
766 oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */ in luaV_execute()
767 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */ in luaV_execute()
768 oci->u.l.savedpc = nci->u.l.savedpc; in luaV_execute()
769 oci->callstatus |= CIST_TAIL; /* function was tail called */ in luaV_execute()
770 ci = L->ci = oci; /* remove new frame */ in luaV_execute()
771 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize); in luaV_execute()
/external/skia/third_party/lua/src/
Dlvm.c732 CallInfo *oci = nci->previous; /* caller frame */ in luaV_execute()
734 StkId ofunc = oci->func; /* caller function */ in luaV_execute()
739 if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base); in luaV_execute()
743 oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */ in luaV_execute()
744 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */ in luaV_execute()
745 oci->u.l.savedpc = nci->u.l.savedpc; in luaV_execute()
746 oci->callstatus |= CIST_TAIL; /* function was tail called */ in luaV_execute()
747 ci = L->ci = oci; /* remove new frame */ in luaV_execute()
748 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize); in luaV_execute()
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c583 extern int vp8dx_references_buffer(VP8_COMMON *oci, int ref_frame);
590 VP8_COMMON *oci = &pbi->common; in vp8_get_last_ref_frame() local
592 (vp8dx_references_buffer(oci, ALTREF_FRAME) ? VP8_ALTR_FRAME : 0) | in vp8_get_last_ref_frame()
593 (vp8dx_references_buffer(oci, GOLDEN_FRAME) ? VP8_GOLD_FRAME : 0) | in vp8_get_last_ref_frame()
594 (vp8dx_references_buffer(oci, LAST_FRAME) ? VP8_LAST_FRAME : 0); in vp8_get_last_ref_frame()
/external/icu/icu4c/source/data/misc/
Dmetadata.txt866 oci{
/external/hyphenation-patterns/cy/
Dhyph-cy.pat.txt4570 2oci
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_gl0_kpdf_mgc.pkb1364 …7�6kbvRZ&atho^�w@fX:$&+#*.|M�VTlipk�z�DKLHUOPWVSbPgtj^kks���HKLJQYVaX\ce`oci�BI����U�?…
/external/hyphenation-patterns/hu/
Dhyph-hu.pat.txt37832 oció2