OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:uRows
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp
88
uint8_t*
uRows
= new uint8_t [8 * (width >> 1)];
95
deinterleave(vuPlanar,
uRows
, vRows, cinfo->next_scanline, width, height);
106
cb[i/2] =
uRows
+ offset;
112
delete []
uRows
;
117
void Yuv420SpToJpegEncoder::deinterleave(uint8_t* vuPlanar, uint8_t*
uRows
,
126
uRows
[index] = vu[1];
163
uint8_t*
uRows
= new uint8_t [16 * (width >> 1)];
170
deinterleave(yuvOffset, yRows,
uRows
, vRows, cinfo->next_scanline, width, height);
180
cb[i] =
uRows
+ offset;
187
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
,
/device/generic/goldfish/camera/jpeg-stub/
Compressor.cpp
83
static void deinterleave(const uint8_t* vuPlanar, std::vector<uint8_t>&
uRows
,
93
uRows
[index] = vu[1];
112
std::vector<uint8_t>
uRows
(8 * (width >> 1));
132
deinterleave(vuPlanar,
uRows
, vRows, mCompressInfo.next_scanline,
144
cb[i/2] = &
uRows
[offset];
Completed in 1193 milliseconds