Home
last modified time | relevance | path

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

/external/libvpx/vpx/src/
Dvpx_image.c20 unsigned int stride_align, in img_alloc_helper() argument
28 if (!stride_align) in img_alloc_helper()
29 stride_align = 1; in img_alloc_helper()
32 if (stride_align & (stride_align - 1)) in img_alloc_helper()
101 s = (s + stride_align - 1) & ~(stride_align - 1); in img_alloc_helper()
153 unsigned int stride_align) in vpx_img_alloc() argument
155 return img_alloc_helper(img, fmt, d_w, d_h, stride_align, NULL); in vpx_img_alloc()
162 unsigned int stride_align, in vpx_img_wrap() argument
165 return img_alloc_helper(img, fmt, d_w, d_h, stride_align, img_data); in vpx_img_wrap()