Searched refs:videoFrame (Results 1 – 3 of 3) sorted by relevance
/frameworks/av/media/libheif/ |
D | HeifDecoderImpl.cpp | 42 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/base/media/jni/ |
D | android_media_MediaMetadataRetriever.cpp | 261 JNIEnv *env, VideoFrame *videoFrame, jint dst_width, jint dst_height, in getBitmapFromVideoFrame() argument 264 videoFrame->mWidth, in getBitmapFromVideoFrame() 265 videoFrame->mHeight, in getBitmapFromVideoFrame() 266 videoFrame->mDisplayWidth, in getBitmapFromVideoFrame() 267 videoFrame->mDisplayHeight, in getBitmapFromVideoFrame() 268 videoFrame->mSize); in getBitmapFromVideoFrame() 274 if (videoFrame->mRotationAngle == 90 || videoFrame->mRotationAngle == 270) { in getBitmapFromVideoFrame() 275 width = videoFrame->mHeight; in getBitmapFromVideoFrame() 276 height = videoFrame->mWidth; in getBitmapFromVideoFrame() 278 displayWidth = videoFrame->mDisplayHeight; in getBitmapFromVideoFrame() [all …]
|
/frameworks/av/media/libstagefright/webm/ |
D | WebmFrameThread.cpp | 211 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()
|