Searched refs:arrbuf (Results 1 – 1 of 1) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_resize.c | 522 uint8_t *arrbuf = (uint8_t *)malloc(sizeof(uint8_t) * (height + height2)); in vp9_resize_plane() local 531 fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_resize_plane() 532 resize_multistep(arrbuf, height, arrbuf + height, height2, tmpbuf); in vp9_resize_plane() 533 fill_arr_to_col(output + i, out_stride, height2, arrbuf + height); in vp9_resize_plane() 537 free(arrbuf); in vp9_resize_plane() 818 uint16_t *arrbuf = (uint16_t *)malloc(sizeof(uint16_t) * (height + height2)); in vp9_highbd_resize_plane() local 824 highbd_fill_col_to_arr(intbuf + i, width2, height, arrbuf); in vp9_highbd_resize_plane() 825 highbd_resize_multistep(arrbuf, height, arrbuf + height, height2, tmpbuf, in vp9_highbd_resize_plane() 828 arrbuf + height); in vp9_highbd_resize_plane() 832 free(arrbuf); in vp9_highbd_resize_plane()
|