OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nv21
(Results
1 - 4
of
4
) sorted by null
/cts/apps/CameraITS/tools/
convert_yuv_to_jpg.py
25
layout: The layout of the data, in ["planar", "
nv21
"].
/device/generic/goldfish/camera/
Converters.cpp
157
void NV21ToRGB565(const void*
nv21
, void* rgb, int width, int height)
160
const uint8_t* y = reinterpret_cast<const uint8_t*>(
nv21
);
165
void NV21ToRGB32(const void*
nv21
, void* rgb, int width, int height)
168
const uint8_t* y = reinterpret_cast<const uint8_t*>(
nv21
);
Converters.h
296
/* Converts an
NV21
framebuffer to RGB565 framebuffer.
298
*
nv21
-
NV21
framebuffer.
302
void NV21ToRGB565(const void*
nv21
, void* rgb, int width, int height);
304
/* Converts an
NV21
framebuffer to RGB32 framebuffer.
306
*
nv21
-
NV21
framebuffer.
310
void NV21ToRGB32(const void*
nv21
, void* rgb, int width, int height);
/cts/apps/CameraITS/pymodules/its/
image.py
474
Supported layouts include "planar" and "
nv21
". The "yuv" formatted captures
495
elif layout == "
nv21
":
Completed in 1145 milliseconds