Home
last modified time | relevance | path

Searched refs:buffer_alloc (Results 1 – 11 of 11) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/generic/
Dyv12config.c35 vpx_free(ybf->buffer_alloc); in vp8_yv12_de_alloc_frame_buffer()
64 if (!ybf->buffer_alloc) { in vp8_yv12_realloc_frame_buffer()
65 ybf->buffer_alloc = (uint8_t *)vpx_memalign(32, frame_size); in vp8_yv12_realloc_frame_buffer()
69 if (!ybf->buffer_alloc || ybf->buffer_alloc_sz < frame_size) in vp8_yv12_realloc_frame_buffer()
97 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border; in vp8_yv12_realloc_frame_buffer()
98 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2; in vp8_yv12_realloc_frame_buffer()
99 …ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + borde… in vp8_yv12_realloc_frame_buffer()
123 vpx_free(ybf->buffer_alloc); in vp9_free_frame_buffer()
187 ybf->buffer_alloc = (uint8_t *)yv12_align_addr(fb->data, 32); in vp9_realloc_frame_buffer()
221 if (ybf->buffer_alloc) in vp9_realloc_frame_buffer()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
Dswapyv12buffer.c18 temp = last_frame->buffer_alloc; in vp8_swap_yv12_buffer()
19 last_frame->buffer_alloc = new_frame->buffer_alloc; in vp8_swap_yv12_buffer()
20 new_frame->buffer_alloc = temp; in vp8_swap_yv12_buffer()
Dalloccommon.c107 vpx_memset(oci->post_proc_buffer.buffer_alloc, 128, in vp8_alloc_frame_buffers()
Dpostproc.c761 … vpx_memset((&oci->post_proc_buffer_int)->buffer_alloc,128,(&oci->post_proc_buffer)->frame_size); in vp8_post_proc_frame()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/
Dyv12config.h49 uint8_t *buffer_alloc; member
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Ddenoising.c155 vpx_memset(denoiser->yv12_running_avg[i].buffer_alloc, 0, in vp8_denoiser_allocate()
168 vpx_memset(denoiser->yv12_mc_running_avg.buffer_alloc, 0, in vp8_denoiser_allocate()
Donyx_if.c1748 if (!cpi->denoiser.yv12_mc_running_avg.buffer_alloc) in vp8_change_config()
4791 fwrite(cm->yv12_fb[cm->lst_fb_idx].buffer_alloc, in encode_frame_to_data_rate()
Dfirstpass.c895 (void) fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, in vp8_first_pass()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
Dvp9_iface_common.h47 img->img_data = yv12->buffer_alloc; in yuvconfig2image()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
Dvp8_dx_iface.c310 img->img_data = yv12->buffer_alloc; in yuvconfig2image()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_firstpass.c878 (void)fwrite(lst_yv12->buffer_alloc, lst_yv12->frame_size, 1, recon_file); in vp9_first_pass()