HomeSort by relevance Sort by last modified time
    Searched refs:biHeight (Results 1 - 25 of 41) sorted by null

1 2

  /external/qemu/android/camera/
camera-capture-windows.c 340 abs(wcd->frame_bitmap->bmiHeader.biHeight) != frame_height) {
343 wcd->frame_bitmap->bmiHeader.biHeight = frame_height;
370 * biHeight field, since the way "top-down" form is reported here is by
371 * setting biHeight to a negative value. */
372 if (wcd->frame_bitmap->bmiHeader.biHeight < 0) {
373 wcd->frame_bitmap->bmiHeader.biHeight =
374 -wcd->frame_bitmap->bmiHeader.biHeight;
444 wcd->frame_bitmap->bmiHeader.biHeight != bitmap.bmHeight ) {
448 wcd->frame_bitmap->bmiHeader.biHeight);
465 /* Adjust GDI's bitmap biHeight for proper frame direction ("top-down", o
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
gdivideorenderer.cc 121 bmi_.bmiHeader.biHeight = -height;
141 height != -bmi_.bmiHeader.biHeight) {
188 bmi_.bmiHeader.biWidth, -bmi_.bmiHeader.biHeight)) {
191 OnSize(bmi_.bmiHeader.biWidth, -bmi_.bmiHeader.biHeight, false);
202 0, 0, bmi_.bmiHeader.biWidth, -bmi_.bmiHeader.biHeight, // source rect
226 height != -bmi_.bmiHeader.biHeight)) {
229 bmi_.bmiHeader.biHeight = -height;
  /external/chromium_org/media/video/capture/win/
sink_input_pin_win.cc 53 pvi->bmiHeader.biHeight = requested_format_.frame_size.height();
63 pvi->bmiHeader.biHeight = requested_format_.frame_size.height();
72 pvi->bmiHeader.biHeight = requested_format_.frame_size.height();
104 abs(pvi->bmiHeader.biHeight));
video_capture_device_win.cc 525 h->bmiHeader.biHeight);
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_bmp.c 74 Sint32 biHeight;
114 biHeight = (Uint32)SDL_ReadLE16(src);
125 biHeight = SDL_ReadLE32(src);
146 if (biHeight < 0) {
148 biHeight = -biHeight;
225 biWidth, biHeight, biBitCount, Rmask, Gmask, Bmask, 0);
377 Sint32 biHeight;
459 biHeight = surface->h;
476 SDL_WriteLE32(dst, biHeight);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageReader.cpp 174 if (!m_parent->setSize(m_infoHeader.biWidth, m_infoHeader.biHeight))
211 m_infoHeader.biHeight = readUint16(6);
218 m_infoHeader.biHeight = readUint32(8);
220 m_infoHeader.biHeight /= 2;
266 if (m_infoHeader.biHeight < 0) {
268 m_infoHeader.biHeight = -m_infoHeader.biHeight;
278 if ((m_infoHeader.biWidth <= 0) || !m_infoHeader.biHeight)
360 if ((m_infoHeader.biWidth >= (1 << 16)) || (m_infoHeader.biHeight >= (1 << 16)))
BMPImageReader.h 113 int32_t biHeight;
348 // (and, confusingly, add its height to the biHeight value in the info
  /external/jpeg/
rdbmp.c 255 INT32 biHeight = 0;
287 biHeight = (INT32) GET_2B(bmpinfoheader,6);
294 TRACEMS2(cinfo, 1, JTRC_BMP_OS2_MAPPED, (int) biWidth, (int) biHeight);
297 TRACEMS2(cinfo, 1, JTRC_BMP_OS2, (int) biWidth, (int) biHeight);
311 biHeight = GET_4B(bmpinfoheader,8);
323 TRACEMS2(cinfo, 1, JTRC_BMP_MAPPED, (int) biWidth, (int) biHeight);
326 TRACEMS2(cinfo, 1, JTRC_BMP, (int) biWidth, (int) biHeight);
386 row_width, (JDIMENSION) biHeight, (JDIMENSION) 1);
403 cinfo->image_height = (JDIMENSION) biHeight;
  /external/qemu/distrib/jpeg-6b/
rdbmp.c 255 INT32 biHeight = 0;
287 biHeight = (INT32) GET_2B(bmpinfoheader,6);
294 TRACEMS2(cinfo, 1, JTRC_BMP_OS2_MAPPED, (int) biWidth, (int) biHeight);
297 TRACEMS2(cinfo, 1, JTRC_BMP_OS2, (int) biWidth, (int) biHeight);
311 biHeight = GET_4B(bmpinfoheader,8);
323 TRACEMS2(cinfo, 1, JTRC_BMP_MAPPED, (int) biWidth, (int) biHeight);
326 TRACEMS2(cinfo, 1, JTRC_BMP, (int) biWidth, (int) biHeight);
386 row_width, (JDIMENSION) biHeight, (JDIMENSION) 1);
403 cinfo->image_height = (JDIMENSION) biHeight;
  /external/chromium_org/ui/gfx/
gdi_util.cc 21 hdr->biHeight = -height; // minus means top-down bitmap
54 hdr->biHeight = -height;
129 int bitmap_h = -bitmap_info->bmiHeader.biHeight;
icon_util.cc 590 icon_image->icHeader.biHeight = bitmap.height() * 2;
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_syswm.c 70 Sint32 biHeight;
108 icon_win32->biHeight = icon->h*2;
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.cc 228 int height = abs(bmi.bmiHeader.biHeight);
265 int thumb_height = abs(bmi.bmiHeader.biHeight) / 4;
270 0, 0, bmi.bmiHeader.biWidth, -bmi.bmiHeader.biHeight,
569 bmi_.bmiHeader.biHeight = -height;
584 bmi_.bmiHeader.biHeight = -height;
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
MjpegFileWriter.java 322 * FOURCC fcc; DWORD cb; DWORD biSize; LONG biWidth; LONG biHeight; WORD
334 public int biHeight = 0;
350 biHeight = height;
360 baos.write(intBytes(swapInt(biHeight)));
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 153 gdt->bmi.bmiHeader.biHeight= -(long)height;
  /external/chromium_org/ui/base/clipboard/
clipboard_win.cc 287 bm_info.bmiHeader.biHeight = -bitmap.height(); // sets vertical orientation
568 bitmap->bmiHeader.biHeight),
575 bitmap->bmiHeader.biHeight, 0, 0, 0,
576 bitmap->bmiHeader.biHeight, bitmap_bits, bitmap,
  /external/mesa3d/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 153 gdt->bmi.bmiHeader.biHeight= -(long)height;
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 49 hdr.biHeight = -height; // minus means top-down bitmap
102 hdr.biHeight = 5;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug.c 575 int32_t biHeight;
661 bmih.biHeight = height;
  /external/mesa3d/src/gallium/auxiliary/util/
u_debug.c 575 int32_t biHeight;
661 bmih.biHeight = height;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wgl.c 444 dibInfo->bmiHeader.biHeight = bmapHeight;
  /external/chromium_org/third_party/skia/src/views/win/
SkOSWindow_win.cpp 191 bmi.bmiHeader.biHeight = -bitmap.height(); // top-down image
  /external/libpng/contrib/gregbook/
rpng-win.c 472 bmih->biHeight = -((long)image_height);
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c 444 dibInfo->bmiHeader.biHeight = bmapHeight;
  /external/skia/src/views/win/
SkOSWindow_win.cpp 191 bmi.bmiHeader.biHeight = -bitmap.height(); // top-down image

Completed in 1218 milliseconds

1 2