Searched defs:aligned_height (Results 1 - 5 of 5) sorted by relevance

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

Completed in 580 milliseconds