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

1 2 3

  /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/webrtc/modules/video_capture/windows/
sink_filter_ds.cc 102 pvi->bmiHeader.biHeight = _requestedCapability.height;
113 pvi->bmiHeader.biHeight = _requestedCapability.height;
124 pvi->bmiHeader.biHeight = _requestedCapability.height;
135 pvi->bmiHeader.biHeight = _requestedCapability.height;
146 pvi->bmiHeader.biHeight = _requestedCapability.height;
196 && pvi->bmiHeader.biHeight > 0)
198 _resultingCapability.height = -(pvi->bmiHeader.biHeight);
202 _resultingCapability.height = abs(pvi->bmiHeader.biHeight);
207 pvi->bmiHeader.biWidth,pvi->bmiHeader.biHeight,
260 pvi->bmiHeader.biWidth,pvi->bmiHeader.biHeight,
    [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));
  /external/chromium_org/ui/views/corewm/
cursor_height_provider_win.cc 50 info.bmiHeader.biHeight,
110 int i = std::max(0, static_cast<int>(bitmap_info.bmiHeader.biHeight) -
112 for (; i < bitmap_info.bmiHeader.biHeight; ++i) {
118 return bitmap_info.bmiHeader.biHeight - i - icon.yHotspot;
  /external/chromium_org/third_party/libjpeg_turbo/
rdbmp.c 291 INT32 biHeight;
323 biHeight = (INT32) GET_2B(bmpinfoheader,6);
330 TRACEMS2(cinfo, 1, JTRC_BMP_OS2_MAPPED, (int) biWidth, (int) biHeight);
333 TRACEMS2(cinfo, 1, JTRC_BMP_OS2, (int) biWidth, (int) biHeight);
345 biHeight = GET_4B(bmpinfoheader,8);
357 TRACEMS2(cinfo, 1, JTRC_BMP_MAPPED, (int) biWidth, (int) biHeight);
360 TRACEMS2(cinfo, 1, JTRC_BMP, (int) biWidth, (int) biHeight);
363 TRACEMS2(cinfo, 1, JTRC_BMP, (int) biWidth, (int) biHeight);
384 if (biWidth <= 0 || biHeight <= 0)
428 row_width, (JDIMENSION) biHeight, (JDIMENSION) 1)
    [all...]
  /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 207 if (!m_parent->setSize(m_infoHeader.biWidth, m_infoHeader.biHeight))
244 m_infoHeader.biHeight = readUint16(6);
251 m_infoHeader.biHeight = readUint32(8);
253 m_infoHeader.biHeight /= 2;
295 if (m_infoHeader.biHeight < 0) {
297 m_infoHeader.biHeight = -m_infoHeader.biHeight;
307 if ((m_infoHeader.biWidth <= 0) || !m_infoHeader.biHeight)
389 if ((m_infoHeader.biWidth >= (1 << 16)) || (m_infoHeader.biHeight >= (1 << 16)))
    [all...]
BMPImageReader.h 108 int32_t biHeight;
346 // (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;
  /external/chromium_org/base/debug/
gdi_debug_util_win.cc 73 LONG heigth = header->biHeight;
119 header->biHeight = -5;
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_frame_win.cc 39 bmi.bmiHeader.biHeight = -size.height();
  /external/pdfium/core/src/fxge/win32/
fx_win32_dib.cpp 24 pbmih->biHeight = -(int)pBitmap->GetHeight();
55 int height = pbmi->bmiHeader.biHeight;
206 int height = abs(bmih.biHeight);
207 bmih.biHeight = -height;
231 pbmih->bmiHeader.biHeight = -height;
289 bmih.biHeight = -height;
  /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/mesa/src/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 153 gdt->bmi.bmiHeader.biHeight= -(long)height;
  /external/mesa3d/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 153 gdt->bmi.bmiHeader.biHeight= -(long)height;
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 148 bitmapInfo.bmiHeader.biHeight = height;
320 bitmapInfo.biHeight = -height;
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.cc 251 int height = abs(bmi.bmiHeader.biHeight);
288 int thumb_height = abs(bmi.bmiHeader.biHeight) / 4;
293 0, 0, bmi.bmiHeader.biWidth, -bmi.bmiHeader.biHeight,
592 bmi_.bmiHeader.biHeight = -height;
607 bmi_.bmiHeader.biHeight = -height;
  /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;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
amvideo.idl 32 LONG biHeight;
  /external/chromium_org/skia/ext/
bitmap_platform_device_win.cc 31 hdr.biHeight = -height; // minus means top-down bitmap
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
avi_file.h 56 uint32_t biHeight;

Completed in 783 milliseconds

1 2 3