Home
last modified time | relevance | path

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

/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
Dyv12config.c51 int aligned_height = (height + 15) & ~15; in vp8_yv12_realloc_frame_buffer() local
53 int yplane_size = (aligned_height + 2 * border) * y_stride; in vp8_yv12_realloc_frame_buffer()
55 int uv_height = aligned_height >> 1; in vp8_yv12_realloc_frame_buffer()
81 ybf->y_height = aligned_height; in vp8_yv12_realloc_frame_buffer()
143 const int aligned_height = (height + 7) & ~7; in vp9_realloc_frame_buffer() local
145 const int yplane_size = (aligned_height + 2 * border) * y_stride; in vp9_realloc_frame_buffer()
147 const int uv_height = aligned_height >> ss_y; in vp9_realloc_frame_buffer()
154 const int alpha_height = aligned_height; in vp9_realloc_frame_buffer()
210 ybf->y_height = aligned_height; in vp9_realloc_frame_buffer()
/external/libvpx/libvpx/vpx_scale/generic/
Dyv12config.c51 int aligned_height = (height + 15) & ~15; in vp8_yv12_realloc_frame_buffer() local
53 int yplane_size = (aligned_height + 2 * border) * y_stride; in vp8_yv12_realloc_frame_buffer()
55 int uv_height = aligned_height >> 1; in vp8_yv12_realloc_frame_buffer()
81 ybf->y_height = aligned_height; in vp8_yv12_realloc_frame_buffer()
143 const int aligned_height = (height + 7) & ~7; in vp9_realloc_frame_buffer() local
145 const int yplane_size = (aligned_height + 2 * border) * y_stride; in vp9_realloc_frame_buffer()
147 const int uv_height = aligned_height >> ss_y; in vp9_realloc_frame_buffer()
154 const int alpha_height = aligned_height; in vp9_realloc_frame_buffer()
211 ybf->y_height = aligned_height; in vp9_realloc_frame_buffer()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
Dvp9_alloccommon.c31 static void set_mb_mi(VP9_COMMON *cm, int aligned_width, int aligned_height) { in set_mb_mi() argument
33 cm->mi_rows = aligned_height >> MI_SIZE_LOG2; in set_mb_mi()
118 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_resize_frame_buffers() local
126 set_mb_mi(cm, aligned_width, aligned_height); in vp9_resize_frame_buffers()
164 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_alloc_frame_buffers() local
190 set_mb_mi(cm, aligned_width, aligned_height); in vp9_alloc_frame_buffers()
229 const int aligned_height = ALIGN_POWER_OF_TWO(cm->height, MI_SIZE_LOG2); in vp9_update_frame_size() local
231 set_mb_mi(cm, aligned_width, aligned_height); in vp9_update_frame_size()
/external/libvpx/libvpx/vp9/common/
Dvp9_alloccommon.c31 static void set_mb_mi(VP9_COMMON *cm, int aligned_width, int aligned_height) { in set_mb_mi() argument
33 cm->mi_rows = aligned_height >> MI_SIZE_LOG2; in set_mb_mi()
118 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_resize_frame_buffers() local
126 set_mb_mi(cm, aligned_width, aligned_height); in vp9_resize_frame_buffers()
164 const int aligned_height = ALIGN_POWER_OF_TWO(height, MI_SIZE_LOG2); in vp9_alloc_frame_buffers() local
190 set_mb_mi(cm, aligned_width, aligned_height); in vp9_alloc_frame_buffers()
229 const int aligned_height = ALIGN_POWER_OF_TWO(cm->height, MI_SIZE_LOG2); in vp9_update_frame_size() local
231 set_mb_mi(cm, aligned_width, aligned_height); in vp9_update_frame_size()
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
DSDL_sysyuv.cc66 uint32 aligned_height = r.source.height_alignment + 1; in BE_GetOverlayBitmap() local
67 if (height % aligned_height > 0) { in BE_GetOverlayBitmap()
69 fprintf(stderr,"- height = %lu, aligned_height = %lu\n",height,aligned_height); in BE_GetOverlayBitmap()