Searched refs:iccSize (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/include/private/media/ |
D | VideoFrame.h | 42 uint32_t angle, uint32_t bpp, uint32_t bitDepth, bool hasData, size_t iccSize): in VideoFrame() argument 47 mRotationAngle(angle), mBytesPerPixel(bpp), mIccSize(iccSize), in VideoFrame() 58 void init(const VideoFrame& copy, const void* iccData, size_t iccSize) { in init() argument 60 if (mIccSize == iccSize && iccSize > 0 && iccData != NULL) { in init() 61 memcpy(getFlattenedIccData(), iccData, iccSize); in init()
|
/frameworks/av/media/libstagefright/ |
D | FrameDecoder.cpp | 64 size_t iccSize; in allocVideoFrame() local 65 if (!trackMeta->findData(kKeyIccProfile, &type, &iccData, &iccSize)){ in allocVideoFrame() 67 iccSize = 0; in allocVideoFrame() 131 tileHeight, rotationAngle, dstBpp, bitDepth, !metaOnly, iccSize); in allocVideoFrame() 145 frameCopy->init(frame, iccData, iccSize); in allocVideoFrame()
|