OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:max_pixels
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libbmp.cpp
113
const int
max_pixels
= 16383*16383; // max width*height
local
115
max_pixels
, &callback)) {
/external/skia/src/images/
SkImageDecoder_libbmp.cpp
113
const int
max_pixels
= 16383*16383; // max width*height
local
115
max_pixels
, &callback)) {
/external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.cc
101
// Computes a scale less to fit in
max_pixels
while maintaining aspect ratio.
102
void ComputeScaleMaxPixels(int frame_width, int frame_height, int
max_pixels
,
106
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);
/external/qemu/android/skin/
image.c
351
unsigned long
max_pixels
;
member in struct:__anon24746
361
cache->
max_pixels
= 1;
363
cache->
max_pixels
= 4*1024*1024; /* limit image cache to 4 MB */
430
while (cache->total_pixels > cache->
max_pixels
&&
566
if (cache->total_pixels > cache->
max_pixels
)
Completed in 76 milliseconds