2015-09-15 17:57:20 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef FrameStatistics_h_
|
|
|
|
#define FrameStatistics_h_
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2016-07-18 02:51:25 +03:00
|
|
|
struct FrameStatisticsData
|
|
|
|
{
|
|
|
|
// Number of frames parsed and demuxed from media.
|
|
|
|
// Access protected by mReentrantMonitor.
|
|
|
|
uint32_t mParsedFrames = 0;
|
|
|
|
|
|
|
|
// Number of parsed frames which were actually decoded.
|
|
|
|
// Access protected by mReentrantMonitor.
|
|
|
|
uint32_t mDecodedFrames = 0;
|
|
|
|
|
|
|
|
// Number of decoded frames which were actually sent down the rendering
|
|
|
|
// pipeline to be painted ("presented"). Access protected by mReentrantMonitor.
|
|
|
|
uint32_t mPresentedFrames = 0;
|
|
|
|
|
|
|
|
// Number of frames that have been skipped because they have missed their
|
|
|
|
// composition deadline.
|
|
|
|
uint32_t mDroppedFrames = 0;
|
|
|
|
};
|
|
|
|
|
2015-09-15 17:57:20 +03:00
|
|
|
// Frame decoding/painting related performance counters.
|
|
|
|
// Threadsafe.
|
2016-07-15 09:48:56 +03:00
|
|
|
class FrameStatistics
|
|
|
|
{
|
2015-09-15 17:57:20 +03:00
|
|
|
public:
|
2015-12-03 10:59:30 +03:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(FrameStatistics);
|
|
|
|
|
2016-07-15 09:48:56 +03:00
|
|
|
FrameStatistics()
|
|
|
|
: mReentrantMonitor("FrameStats")
|
|
|
|
{}
|
2015-09-15 17:57:20 +03:00
|
|
|
|
2016-07-18 02:51:25 +03:00
|
|
|
// Returns a copy of all frame statistics data.
|
|
|
|
// Can be called on any thread.
|
|
|
|
FrameStatisticsData GetFrameStatisticsData() const
|
|
|
|
{
|
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
|
|
|
return mFrameStatisticsData;
|
|
|
|
}
|
|
|
|
|
2015-09-15 17:57:20 +03:00
|
|
|
// Returns number of frames which have been parsed from the media.
|
|
|
|
// Can be called on any thread.
|
2016-07-15 09:48:56 +03:00
|
|
|
uint32_t GetParsedFrames() const
|
|
|
|
{
|
2015-09-15 17:57:20 +03:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2016-07-18 02:51:25 +03:00
|
|
|
return mFrameStatisticsData.mParsedFrames;
|
2015-09-15 17:57:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the number of parsed frames which have been decoded.
|
|
|
|
// Can be called on any thread.
|
2016-07-15 09:48:56 +03:00
|
|
|
uint32_t GetDecodedFrames() const
|
|
|
|
{
|
2015-09-15 17:57:20 +03:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2016-07-18 02:51:25 +03:00
|
|
|
return mFrameStatisticsData.mDecodedFrames;
|
2015-09-15 17:57:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the number of decoded frames which have been sent to the rendering
|
|
|
|
// pipeline for painting ("presented").
|
|
|
|
// Can be called on any thread.
|
2016-07-15 09:48:56 +03:00
|
|
|
uint32_t GetPresentedFrames() const
|
|
|
|
{
|
2015-09-15 17:57:20 +03:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2016-07-18 02:51:25 +03:00
|
|
|
return mFrameStatisticsData.mPresentedFrames;
|
2015-09-15 17:57:20 +03:00
|
|
|
}
|
|
|
|
|
2016-07-15 09:48:56 +03:00
|
|
|
// Returns the number of frames that have been skipped because they have
|
|
|
|
// missed their composition deadline.
|
|
|
|
uint32_t GetDroppedFrames() const
|
|
|
|
{
|
2015-09-15 17:57:20 +03:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2016-07-18 02:51:25 +03:00
|
|
|
return mFrameStatisticsData.mDroppedFrames;
|
2015-09-15 17:57:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Increments the parsed and decoded frame counters by the passed in counts.
|
|
|
|
// Can be called on any thread.
|
|
|
|
void NotifyDecodedFrames(uint32_t aParsed, uint32_t aDecoded,
|
2016-07-15 09:48:56 +03:00
|
|
|
uint32_t aDropped)
|
|
|
|
{
|
|
|
|
if (aParsed == 0 && aDecoded == 0 && aDropped == 0) {
|
2015-09-15 17:57:20 +03:00
|
|
|
return;
|
2016-07-15 09:48:56 +03:00
|
|
|
}
|
2015-09-15 17:57:20 +03:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2016-07-18 02:51:25 +03:00
|
|
|
mFrameStatisticsData.mParsedFrames += aParsed;
|
|
|
|
mFrameStatisticsData.mDecodedFrames += aDecoded;
|
|
|
|
mFrameStatisticsData.mDroppedFrames += aDropped;
|
2015-09-15 17:57:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Increments the presented frame counters.
|
|
|
|
// Can be called on any thread.
|
2016-07-15 09:48:56 +03:00
|
|
|
void NotifyPresentedFrame()
|
|
|
|
{
|
2015-09-15 17:57:20 +03:00
|
|
|
ReentrantMonitorAutoEnter mon(mReentrantMonitor);
|
2016-07-18 02:51:25 +03:00
|
|
|
++mFrameStatisticsData.mPresentedFrames;
|
2015-09-15 17:57:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-12-03 10:59:30 +03:00
|
|
|
~FrameStatistics() {}
|
2015-09-15 17:57:20 +03:00
|
|
|
|
|
|
|
// ReentrantMonitor to protect access of playback statistics.
|
2016-07-15 09:48:56 +03:00
|
|
|
mutable ReentrantMonitor mReentrantMonitor;
|
2015-09-15 17:57:20 +03:00
|
|
|
|
2016-07-18 02:51:25 +03:00
|
|
|
FrameStatisticsData mFrameStatisticsData;
|
2015-09-15 17:57:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2016-07-15 09:48:56 +03:00
|
|
|
#endif // FrameStatistics_h_
|