Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/
DVideoRenderQualityTracker.cpp405 mDroppedContentDurationUs = 0; in resetForDiscontinuity()
480 mDroppedContentDurationUs = 0; in processMetricsForSkippedFrame()
492 mDroppedContentDurationUs += mContentFrameDurationUs[0]; in processMetricsForDroppedFrame()
526 if (mDroppedContentDurationUs != 0 && mLastRenderTimeUs != -1) { in processMetricsForRenderedFrame()
542 if (wallClockDurationUs > mDroppedContentDurationUs + MAX_PIPELINE_HICCUP_DURATION_US) { in processMetricsForRenderedFrame()
545 if (mDroppedContentDurationUs / 1000 > mMetrics.maxContentDroppedAfterPauseMs) { in processMetricsForRenderedFrame()
546 mMetrics.maxContentDroppedAfterPauseMs = int32_t(mDroppedContentDurationUs / 1000); in processMetricsForRenderedFrame()
548 isLikelyCatchingUpAfterPause = mDroppedContentDurationUs <= c.pauseAudioLatencyUs; in processMetricsForRenderedFrame()
573 mDroppedContentDurationUs = 0; in processMetricsForRenderedFrame()
/frameworks/av/media/libstagefright/include/media/stagefright/
DVideoRenderQualityTracker.h451 int64_t mDroppedContentDurationUs; variable