Home
last modified time | relevance | path

Searched refs:mContentFrameDurationUs (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/
DVideoRenderQualityTracker.cpp423 mContentFrameDurationUs[i] = -1; in resetForDiscontinuity()
427 mContentFrameDurationUs.priorTimestampUs = -1; in resetForDiscontinuity()
476 updateFrameDurations(mContentFrameDurationUs, contentTimeUs); in processMetricsForSkippedFrame()
479 updateFrameRate(mMetrics.contentFrameRate, mContentFrameDurationUs, mConfiguration); in processMetricsForSkippedFrame()
486 updateFrameDurations(mContentFrameDurationUs, contentTimeUs); in processMetricsForDroppedFrame()
489 updateFrameRate(mMetrics.contentFrameRate, mContentFrameDurationUs, mConfiguration); in processMetricsForDroppedFrame()
491 if (mContentFrameDurationUs[0] != -1) { in processMetricsForDroppedFrame()
492 mDroppedContentDurationUs += mContentFrameDurationUs[0]; in processMetricsForDroppedFrame()
518 updateFrameDurations(mContentFrameDurationUs, contentTimeUs); in processMetricsForRenderedFrame()
521 updateFrameRate(mMetrics.contentFrameRate, mContentFrameDurationUs, mConfiguration); in processMetricsForRenderedFrame()
[all …]
/frameworks/av/media/libstagefright/tests/
DVideoRenderQualityTracker_test.cpp40 mContentFrameDurationUs = int64_t(contentFrameDurationMs * 1000); in Helper()
47 mContentFrameDurationUs = int64_t(contentFrameDurationMs * 1000); in changeContentFrameDuration()
56 mMediaTimeUs += mContentFrameDurationUs; in render()
62 int64_t durationUs = durationMs < 0 ? mContentFrameDurationUs : durationMs * 1000; in render()
67 mMediaTimeUs += mContentFrameDurationUs; in render()
75 mMediaTimeUs += mContentFrameDurationUs; in skip()
76 mClockTimeNs += mContentFrameDurationUs * 1000; in skip()
83 mMediaTimeUs += mContentFrameDurationUs; in drop()
84 mClockTimeNs += mContentFrameDurationUs * 1000; in drop()
110 int64_t mContentFrameDurationUs; member in android::Helper
/frameworks/av/media/libstagefright/include/media/stagefright/
DVideoRenderQualityTracker.h474 FrameDurationUs mContentFrameDurationUs; variable