OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bmi_
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/talk/media/devices/
gdivideorenderer.cc
102
BITMAPINFO
bmi_
;
member in class:cricket::GdiVideoRenderer::VideoWindow
117
memset(&
bmi_
.bmiHeader, 0, sizeof(
bmi_
.bmiHeader));
118
bmi_
.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
119
bmi_
.bmiHeader.biPlanes = 1;
120
bmi_
.bmiHeader.biBitCount = 32;
121
bmi_
.bmiHeader.biCompression = BI_RGB;
122
bmi_
.bmiHeader.biWidth = width;
123
bmi_
.bmiHeader.biHeight = -height;
124
bmi_
.bmiHeader.biSizeImage = width * height * 4
[
all
...]
/external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.cc
570
ZeroMemory(&
bmi_
, sizeof(
bmi_
));
571
bmi_
.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
572
bmi_
.bmiHeader.biPlanes = 1;
573
bmi_
.bmiHeader.biBitCount = 32;
574
bmi_
.bmiHeader.biCompression = BI_RGB;
575
bmi_
.bmiHeader.biWidth = width;
576
bmi_
.bmiHeader.biHeight = -height;
577
bmi_
.bmiHeader.biSizeImage = width * height *
578
(
bmi_
.bmiHeader.biBitCount >> 3)
[
all
...]
main_wnd.h
123
const BITMAPINFO& bmi() const { return
bmi_
; }
133
BITMAPINFO
bmi_
;
member in class:MainWnd::VideoRenderer
Completed in 67 milliseconds