OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vRows
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp
87
uint8_t*
vRows
= new uint8_t [8 * (width >> 1)];
93
deinterleave(vuPlanar, uRows,
vRows
, cinfo->next_scanline, width);
104
cr[i/2] =
vRows
+ offset;
110
delete []
vRows
;
115
uint8_t*
vRows
, int rowIndex, int width) {
122
vRows
[index] = vu[0];
159
uint8_t*
vRows
= new uint8_t [16 * (width >> 1)];
165
deinterleave(yuvOffset, yRows, uRows,
vRows
, cinfo->next_scanline, width, height);
175
cr[i] =
vRows
+ offset;
182
delete []
vRows
;
[
all
...]
YuvToJpegEncoder.h
57
void deinterleave(uint8_t* vuPlanar, uint8_t* uRows, uint8_t*
vRows
,
71
uint8_t*
vRows
, int rowIndex, int width, int height);
Completed in 932 milliseconds