Home | History | Annotate | Download | only in camera

Lines Matching refs:biHeight

281             abs(wcd->frame_bitmap->bmiHeader.biHeight) != frame_height) {
284 wcd->frame_bitmap->bmiHeader.biHeight = frame_height;
311 * biHeight field, since the way "top-down" form is reported here is by
312 * setting biHeight to a negative value. */
313 if (wcd->frame_bitmap->bmiHeader.biHeight < 0) {
314 wcd->frame_bitmap->bmiHeader.biHeight =
315 -wcd->frame_bitmap->bmiHeader.biHeight;
374 wcd->frame_bitmap->bmiHeader.biHeight != bitmap.bmHeight ) {
378 wcd->frame_bitmap->bmiHeader.biHeight);
395 /* Adjust GDI's bitmap biHeight for proper frame direction ("top-down", or
398 * have negative biHeight in 'gdi_bitmap' if driver provides "bottom-up"
399 * frames, and positive biHeight in 'gdi_bitmap' if driver provides "top-down"
402 wcd->gdi_bitmap->bmiHeader.biHeight =
403 wcd->frame_bitmap->bmiHeader.biHeight;
405 wcd->gdi_bitmap->bmiHeader.biHeight =
406 -wcd->frame_bitmap->bmiHeader.biHeight;
435 wcd->frame_bitmap->bmiHeader.biHeight);
506 if (wcd->gdi_bitmap->bmiHeader.biHeight > 0) {
507 wcd->gdi_bitmap->bmiHeader.biHeight = -wcd->gdi_bitmap->bmiHeader.biHeight;
510 if (!GetDIBits(wcd->dc, bm_handle, 0, wcd->frame_bitmap->bmiHeader.biHeight,
518 if (wcd->gdi_bitmap->bmiHeader.biHeight < 0) {
519 wcd->gdi_bitmap->bmiHeader.biHeight = -wcd->gdi_bitmap->bmiHeader.biHeight;
529 wcd->frame_bitmap->bmiHeader.biHeight,
576 cis[found].frame_sizes->height = wcd->frame_bitmap->bmiHeader.biHeight;