Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CC_FRAME_RATE_COUNTER_H_ | 5 #ifndef CC_FRAME_RATE_COUNTER_H_ |
| 6 #define CC_FRAME_RATE_COUNTER_H_ | 6 #define CC_FRAME_RATE_COUNTER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/time.h" | 10 #include "base/time.h" |
| 11 #include "cc/ring_buffer.h" | |
| 11 | 12 |
| 12 namespace cc { | 13 namespace cc { |
| 13 | 14 |
| 14 // This class maintains a history of timestamps, and provides functionality to | 15 // This class maintains a history of timestamps, and provides functionality to |
| 15 // intelligently compute average frames per second. | 16 // intelligently compute average frames per second. |
| 16 class FrameRateCounter { | 17 class FrameRateCounter : public RingBuffer<base::TimeTicks, 130> { |
| 17 public: | 18 public: |
| 18 static scoped_ptr<FrameRateCounter> create(bool hasImplThread); | 19 static scoped_ptr<FrameRateCounter> create(bool hasImplThread); |
| 19 | 20 |
| 20 void markBeginningOfFrame(base::TimeTicks timestamp); | 21 int currentFrameNumber() const { return m_currentIndex; } |
| 21 void markEndOfFrame(); | 22 int droppedFrameCount() const { return m_droppedFrameCount; } |
| 22 int currentFrameNumber() const { return m_currentFrameNumber; } | |
| 23 double getAverageFPS() const; | |
| 24 int timeStampHistorySize() const { return kTimeStampHistorySize; } | |
| 25 | 23 |
| 26 // n = 0 returns the oldest frame retained in the history, | 24 void saveTimeStamp(base::TimeTicks timestamp); |
| 27 // while n = timeStampHistorySize() - 1 returns the timestamp most recent fr ame. | |
| 28 // FIXME: Returns most recent timestamp for n = 0 when called between markBe ginningOfFrame and markEndOfFrame calls. | |
| 29 base::TimeTicks timeStampOfRecentFrame(int n) const; | |
| 30 | 25 |
| 31 // This is a heuristic that can be used to ignore frames in a reasonable way . Returns | 26 // This is a heuristic that can be used to ignore frames in a reasonable way . Returns |
| 32 // true if the given frame interval is too fast or too slow, based on consta nt thresholds. | 27 // true if the given frame interval is too fast or too slow, based on consta nt thresholds. |
| 33 bool isBadFrameInterval(base::TimeDelta intervalBetweenConsecutiveFrames) co nst; | 28 bool isBadFrameInterval(base::TimeDelta intervalBetweenConsecutiveFrames) co nst; |
| 34 | 29 |
| 35 int droppedFrameCount() const { return m_droppedFrameCount; } | 30 void getMinAndMaxFPS(double& minFPS, double& maxFPS) const; |
|
egraether
2013/01/09 02:04:04
This method will get used in a following patch: ht
| |
| 31 double getAverageFPS() const; | |
| 36 | 32 |
| 37 private: | 33 private: |
| 38 explicit FrameRateCounter(bool hasImplThread); | 34 explicit FrameRateCounter(bool hasImplThread); |
| 39 | 35 |
| 40 base::TimeDelta frameInterval(int frameNumber) const; | 36 base::TimeDelta frameInterval(int frameNumber) const; |
| 41 int frameIndex(int frameNumber) const; | |
| 42 bool isBadFrame(int frameNumber) const; | |
|
egraether
2013/01/09 02:04:04
This method was not used.
| |
| 43 | 37 |
| 44 // Two thresholds (measured in seconds) that describe what is considered to be a "no-op frame" that should not be counted. | 38 // Two thresholds (measured in seconds) that describe what is considered to be a "no-op frame" that should not be counted. |
| 45 // - if the frame is too fast, then given our compositor implementation, the frame probably was a no-op and did not draw. | 39 // - if the frame is too fast, then given our compositor implementation, the frame probably was a no-op and did not draw. |
| 46 // - if the frame is too slow, then there is probably not animating content, so we should not pollute the average. | 40 // - if the frame is too slow, then there is probably not animating content, so we should not pollute the average. |
| 47 static const double kFrameTooFast; | 41 static const double kFrameTooFast; |
| 48 static const double kFrameTooSlow; | 42 static const double kFrameTooSlow; |
| 49 | 43 |
| 50 // If a frame takes longer than this threshold (measured in seconds) then we | 44 // If a frame takes longer than this threshold (measured in seconds) then we |
| 51 // (naively) assume that it missed a screen refresh; that is, we dropped a f rame. | 45 // (naively) assume that it missed a screen refresh; that is, we dropped a f rame. |
| 52 // FIXME: Determine this threshold based on monitor refresh rate, crbug.com/ 138642. | 46 // FIXME: Determine this threshold based on monitor refresh rate, crbug.com/ 138642. |
| 53 static const double kDroppedFrameTime; | 47 static const double kDroppedFrameTime; |
| 54 | 48 |
| 55 static const int kTimeStampHistorySize = 130; | |
| 56 | |
| 57 bool m_hasImplThread; | 49 bool m_hasImplThread; |
| 58 | |
| 59 int m_currentFrameNumber; | |
| 60 base::TimeTicks m_timeStampHistory[kTimeStampHistorySize]; | |
| 61 | |
| 62 int m_droppedFrameCount; | 50 int m_droppedFrameCount; |
| 63 | 51 |
| 64 DISALLOW_COPY_AND_ASSIGN(FrameRateCounter); | 52 DISALLOW_COPY_AND_ASSIGN(FrameRateCounter); |
| 65 }; | 53 }; |
| 66 | 54 |
| 67 } // namespace cc | 55 } // namespace cc |
| 68 | 56 |
| 69 #endif // CC_FRAME_RATE_COUNTER_H_ | 57 #endif // CC_FRAME_RATE_COUNTER_H_ |
| OLD | NEW |