HomeSort by relevance Sort by last modified time
    Searched refs:oci (Results 1 - 9 of 9) sorted by null

  /external/libvpx/libvpx/vp8/common/
alloccommon.c 20 void vp8_de_alloc_frame_buffers(VP8_COMMON *oci) {
23 vp8_yv12_de_alloc_frame_buffer(&oci->yv12_fb[i]);
26 vp8_yv12_de_alloc_frame_buffer(&oci->temp_scale_frame);
28 vp8_yv12_de_alloc_frame_buffer(&oci->post_proc_buffer);
29 if (oci->post_proc_buffer_int_used) {
30 vp8_yv12_de_alloc_frame_buffer(&oci->post_proc_buffer_int);
33 vpx_free(oci->pp_limits_buffer);
34 oci->pp_limits_buffer = NULL;
36 vpx_free(oci->postproc_state.generated_noise);
37 oci->postproc_state.generated_noise = NULL
    [all...]
alloccommon.h 20 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);
postproc.c 273 int vp8_post_proc_frame(VP8_COMMON *oci, YV12_BUFFER_CONFIG *dest,
275 int q = oci->filter_level * 10 / 6;
280 if (!oci->frame_to_show) return -1;
285 *dest = *oci->frame_to_show;
288 dest->y_width = oci->Width;
289 dest->y_height = oci->Height;
291 oci->postproc_state.last_base_qindex = oci->base_qindex;
292 oci->postproc_state.last_frame_valid = 1;
296 if (!oci->postproc_state.generated_noise)
    [all...]
postproc.h 29 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/
onyxd_if.c 428 int vp8dx_references_buffer(VP8_COMMON *oci, int ref_frame) {
429 const MODE_INFO *mi = oci->mi;
432 for (mb_row = 0; mb_row < oci->mb_rows; ++mb_row) {
433 for (mb_col = 0; mb_col < oci->mb_cols; mb_col++, mi++) {
  /external/libvpx/libvpx/vp8/
vp8_dx_iface.c 583 extern int vp8dx_references_buffer(VP8_COMMON *oci, int ref_frame);
590 VP8_COMMON *oci = &pbi->common; local
592 (vp8dx_references_buffer(oci, ALTREF_FRAME) ? VP8_ALTR_FRAME : 0) |
593 (vp8dx_references_buffer(oci, GOLDEN_FRAME) ? VP8_GOLD_FRAME : 0) |
594 (vp8dx_references_buffer(oci, LAST_FRAME) ? VP8_LAST_FRAME : 0);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lvm.c 732 CallInfo *oci = nci->previous; /* caller frame */
734 StkId ofunc = oci->func; /* caller function */
739 if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base);
743 oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */
744 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */
745 oci->u.l.savedpc = nci->u.l.savedpc;
746 oci->callstatus |= CIST_TAIL; /* function was tail called */
747 ci = L->ci = oci; /* remove new frame */
748 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize);
  /external/skia/third_party/lua/src/
lvm.c 732 CallInfo *oci = nci->previous; /* caller frame */
734 StkId ofunc = oci->func; /* caller function */
739 if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base);
743 oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */
744 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */
745 oci->u.l.savedpc = nci->u.l.savedpc;
746 oci->callstatus |= CIST_TAIL; /* function was tail called */
747 ci = L->ci = oci; /* remove new frame */
748 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize);
  /external/syslinux/com32/lua/src/
lvm.c 755 CallInfo *oci = nci->previous; /* caller frame */
757 StkId ofunc = oci->func; /* caller function */
762 if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base);
766 oci->u.l.base = ofunc + (nci->u.l.base - nfunc); /* correct base */
767 oci->top = L->top = ofunc + (L->top - nfunc); /* correct top */
768 oci->u.l.savedpc = nci->u.l.savedpc;
769 oci->callstatus |= CIST_TAIL; /* function was tail called */
770 ci = L->ci = oci; /* remove new frame */
771 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize);

Completed in 992 milliseconds