Home
last modified time | relevance | path

Searched refs:iccSize (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/av/include/private/media/
H A DVideoFrame.h41 uint32_t angle, uint32_t bpp, bool hasData, size_t iccSize): in VideoFrame() argument
47 mIccSize(iccSize), mReserved(0) { in VideoFrame()
50 void init(const VideoFrame& copy, const void* iccData, size_t iccSize) { in init() argument
52 if (mIccSize == iccSize && iccSize > 0 && iccData != NULL) { in init()
53 memcpy(getFlattenedIccData(), iccData, iccSize); in init()
/aosp12/frameworks/av/media/libstagefright/
H A DFrameDecoder.cpp59 size_t iccSize; in allocVideoFrame() local
60 if (!trackMeta->findData(kKeyIccProfile, &type, &iccData, &iccSize)){ in allocVideoFrame()
62 iccSize = 0; in allocVideoFrame()
107 tileWidth, tileHeight, rotationAngle, dstBpp, !metaOnly, iccSize); in allocVideoFrame()
121 frameCopy->init(frame, iccData, iccSize); in allocVideoFrame()