Home
last modified time | relevance | path

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

/frameworks/av/media/libheif/
DHeifDecoderImpl.cpp42 void initFrameInfo(HeifFrameInfo *info, const VideoFrame *videoFrame) { in initFrameInfo() argument
43 info->mWidth = videoFrame->mWidth; in initFrameInfo()
44 info->mHeight = videoFrame->mHeight; in initFrameInfo()
45 info->mRotationAngle = videoFrame->mRotationAngle; in initFrameInfo()
46 info->mBytesPerPixel = videoFrame->mBytesPerPixel; in initFrameInfo()
47 info->mDurationUs = videoFrame->mDurationUs; in initFrameInfo()
48 if (videoFrame->mIccSize > 0) { in initFrameInfo()
50 videoFrame->getFlattenedIccData(), in initFrameInfo()
51 videoFrame->getFlattenedIccData() + videoFrame->mIccSize); in initFrameInfo()
376 VideoFrame* videoFrame = static_cast<VideoFrame*>(sharedMem->unsecurePointer()); in reinit() local
[all …]
/frameworks/av/media/libstagefright/webm/
DWebmFrameThread.cpp211 const sp<WebmFrame> videoFrame = mVideoFrames.peek(); in run() local
212 ALOGV("v frame: %p", videoFrame.get()); in run()
220 std::min(audioFrame->getAbsTimecode(), videoFrame->getAbsTimecode()); in run()
223 if (videoFrame->mEos && audioFrame->mEos) { in run()
227 if (*audioFrame < *videoFrame) { in run()
235 videoFrame->updateAbsTimecode(videoFrame->getAbsTimecode() - mStartOffsetTimecode); in run()
236 outstandingFrames.push_back(videoFrame); in run()
237 if (videoFrame->mKey) in run()