OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:max_pixels
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/images/
SkImageDecoder_libbmp.cpp
117
const int
max_pixels
= 16383*16383; // max width*height
local
119
max_pixels
, &callback)) {
/external/webrtc/talk/media/base/
videocommon.cc
104
// Computes a scale less to fit in
max_pixels
while maintaining aspect ratio.
105
void ComputeScaleMaxPixels(int frame_width, int frame_height, int
max_pixels
,
109
ASSERT(
max_pixels
> 0);
126
if (new_frame_width * new_frame_height >
max_pixels
) {
130
max_pixels
) * new_frame_width / new_frame_height));
131
new_frame_height =
max_pixels
/ new_frame_width;
149
int
max_pixels
= (fps > 5) ? 2048 * 1280 : 2880 * 1800;
local
151
frame_width, frame_height,
max_pixels
, scaled_width, scaled_height);
Completed in 230 milliseconds