Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vpx/src/
Dvpx_image.c21 unsigned int stride_align, in img_alloc_helper() argument
34 if (!stride_align) stride_align = 1; in img_alloc_helper()
37 if (stride_align & (stride_align - 1)) goto fail; in img_alloc_helper()
77 s = (s + stride_align - 1) & ~(stride_align - 1); in img_alloc_helper()
102 s = (s + stride_align - 1) & ~(stride_align - 1); in img_alloc_helper()
142 unsigned int d_h, unsigned int stride_align, in vpx_img_wrap() argument
146 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data); in vpx_img_wrap()
/external/libaom/libaom/aom/src/
Daom_image.c32 unsigned int buf_align, unsigned int stride_align, unsigned int size_align, in img_alloc_helper() argument
48 if (!stride_align) stride_align = 1; in img_alloc_helper()
51 if (stride_align & (stride_align - 1)) goto fail; in img_alloc_helper()
104 s = (s + 2 * border + stride_align - 1) & ~(stride_align - 1); in img_alloc_helper()
184 unsigned int d_h, unsigned int stride_align, in aom_img_wrap() argument
188 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, 1, 0, img_data, in aom_img_wrap()
/external/webrtc/modules/video_coding/codecs/vp8/
Dlibvpx_interface.cc36 unsigned int stride_align, in img_wrap() argument
38 return ::vpx_img_wrap(img, fmt, d_w, d_h, stride_align, img_data); in img_wrap()
Dlibvpx_interface.h42 unsigned int stride_align,
/external/libvpx/libvpx/vpx/
Dvpx_image.h167 unsigned int d_h, unsigned int stride_align,
/external/webrtc/modules/video_coding/codecs/vp8/test/
Dvp8_impl_unittest.cc529 unsigned int d_h, unsigned int stride_align, in TEST_F()