Index: webrtc/modules/video_capture/video_capture_impl.h |
diff --git a/webrtc/modules/video_capture/video_capture_impl.h b/webrtc/modules/video_capture/video_capture_impl.h |
index 9c2cad7c95c91def1c338209a0f74cc374ecb32f..7e22c55ed2be48d15e0079a5c392c2aef36abf1f 100644 |
--- a/webrtc/modules/video_capture/video_capture_impl.h |
+++ b/webrtc/modules/video_capture/video_capture_impl.h |
@@ -20,7 +20,6 @@ |
#include "webrtc/common_video/rotation.h" |
#include "webrtc/modules/video_capture/video_capture.h" |
#include "webrtc/modules/video_capture/video_capture_config.h" |
-#include "webrtc/system_wrappers/include/tick_util.h" |
#include "webrtc/video_frame.h" |
namespace webrtc |
@@ -116,12 +115,12 @@ protected: |
VideoCaptureCapability _requestedCapability; // Should be set by platform dependent code in StartCapture. |
private: |
void UpdateFrameCount(); |
- uint32_t CalculateFrameRate(const TickTime& now); |
+ uint32_t CalculateFrameRate(int64_t now_ns); |
CriticalSectionWrapper& _callBackCs; |
- TickTime _lastProcessTime; // last time the module process function was called. |
- TickTime _lastFrameRateCallbackTime; // last time the frame rate callback function was called. |
+ int64_t _lastProcessTime; // last time the module process function was called. |
stefan-webrtc
2016/04/19 09:19:12
Add units to these now that they aren't ticks.
nisse-webrtc
2016/04/19 12:19:25
Adding "Nanos" to _lastProcessTime, _lastFrameRate
|
+ int64_t _lastFrameRateCallbackTime; // last time the frame rate callback function was called. |
bool _frameRateCallBack; // true if EnableFrameRateCallback |
bool _noPictureAlarmCallBack; //true if EnableNoPictureAlarm |
VideoCaptureAlarm _captureAlarm; // current value of the noPictureAlarm |
@@ -130,8 +129,8 @@ private: |
VideoCaptureDataCallback* _dataCallBack; |
VideoCaptureFeedBack* _captureCallBack; |
- TickTime _lastProcessFrameCount; |
- TickTime _incomingFrameTimes[kFrameRateCountHistorySize];// timestamp for local captured frames |
+ int64_t _lastProcessFrameCount; |
stefan-webrtc
2016/04/19 09:19:12
...Count is a weird name for a time
nisse-webrtc
2016/04/19 12:19:25
Renaming, to the somewhat awkward _lastProcessFram
|
+ int64_t _incomingFrameTimes[kFrameRateCountHistorySize];// timestamp for local captured frames |
stefan-webrtc
2016/04/19 09:19:12
unit
|
VideoRotation _rotateFrame; // Set if the frame should be rotated by the |
// capture module. |