OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uRows
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp
86
uint8_t*
uRows
= new uint8_t [8 * (width >> 1)];
93
deinterleave(vuPlanar,
uRows
, vRows, cinfo->next_scanline, width, height);
104
cb[i/2] =
uRows
+ offset;
110
delete []
uRows
;
115
void Yuv420SpToJpegEncoder::deinterleave(uint8_t* vuPlanar, uint8_t*
uRows
,
124
uRows
[index] = vu[1];
161
uint8_t*
uRows
= new uint8_t [16 * (width >> 1)];
168
deinterleave(yuvOffset, yRows,
uRows
, vRows, cinfo->next_scanline, width, height);
178
cb[i] =
uRows
+ offset;
185
delete []
uRows
;
[
all
...]
YuvToJpegEncoder.h
57
void deinterleave(uint8_t* vuPlanar, uint8_t*
uRows
, uint8_t* vRows,
70
void deinterleave(uint8_t* yuv, uint8_t* yRows, uint8_t*
uRows
,
Completed in 45 milliseconds