Home
last modified time | relevance | path

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

/hardware/intel/common/libmix/videodecoder/
DVideoDecoderBase.cpp645 if (mSurfaceUserPtr && mAcquiredBuffer->mappedData) { in acquireSurfaceBuffer()
646 mAcquiredBuffer->mappedData->data = mSurfaceUserPtr[mSurfaceAcquirePos]; in acquireSurfaceBuffer()
1071 if (mSurfaceBuffers[i].mappedData) { in terminateVA()
1073 delete mSurfaceBuffers[i].mappedData; in terminateVA()
1166 mSurfaceBuffers[i].mappedData = new VideoFrameRawData; in mapSurface()
1167 if (mSurfaceBuffers[i].mappedData == NULL) { in mapSurface()
1170 mSurfaceBuffers[i].mappedData->own = false; // derived from surface so can't be released in mapSurface()
1171 mSurfaceBuffers[i].mappedData->data = NULL; // specified during acquireSurfaceBuffer in mapSurface()
1172 mSurfaceBuffers[i].mappedData->fourcc = image.format.fourcc; in mapSurface()
1173 mSurfaceBuffers[i].mappedData->width = mVideoFormatInfo.width; in mapSurface()
[all …]
DVideoDecoderDefs.h198 VideoFrameRawData *mappedData; member