OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:YUVFormat
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/include/media/stagefright/
YUVImage.h
49
enum
YUVFormat
{
56
YUVImage(
YUVFormat
yuvFormat
, int32_t width, int32_t height);
60
YUVImage(
YUVFormat
yuvFormat
, int32_t width, int32_t height, uint8_t *buffer);
68
static size_t bufferSize(
YUVFormat
yuvFormat
, int32_t width, int32_t height);
118
YUVFormat
mYUVFormat;
/frameworks/av/media/libstagefright/yuv/
YUVImage.cpp
26
YUVImage::YUVImage(
YUVFormat
yuvFormat
, int32_t width, int32_t height) {
27
mYUVFormat =
yuvFormat
;
31
size_t numberOfBytes = bufferSize(
yuvFormat
, width, height);
39
YUVImage::YUVImage(
YUVFormat
yuvFormat
, int32_t width, int32_t height, uint8_t *buffer) {
40
mYUVFormat =
yuvFormat
;
50
size_t YUVImage::bufferSize(
YUVFormat
yuvFormat
, int32_t width, int32_t height) {
53
if (
yuvFormat
== YUV420Planar || yuvFormat == YUV420SemiPlanar)
[
all
...]
Completed in 9302 milliseconds