Searched defs:yuvFormat (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/yuv/
H A DYUVImage.cpp26 YUVImage::YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height) { argument
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) { argument
40 mYUVFormat = yuvFormat;
50 size_t YUVImage::bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height) { argument
53 if (yuvFormat == YUV420Planar || yuvFormat == YUV420SemiPlanar) {

Completed in 6 milliseconds