VideoCapturerAndroid: Revert elapsedRealtimeNanos to elapsedRealtime

Review URL: https://codereview.webrtc.org/1254143002

Cr-Commit-Position: refs/heads/master@{#9637}
This commit is contained in:
magjed 2015-07-26 04:25:08 -07:00 committed by Commit bot
parent d55ce2ddb9
commit 013a580064

View File

@ -805,7 +805,8 @@ public class VideoCapturerAndroid extends VideoCapturer implements PreviewCallba
throw new RuntimeException("Unexpected camera in callback!");
}
final long captureTimeNs = SystemClock.elapsedRealtimeNanos();
final long captureTimeNs =
TimeUnit.MILLISECONDS.toNanos(SystemClock.elapsedRealtime());
captureBuffersCount += videoBuffers.numCaptureBuffersAvailable();
int rotation = getDeviceOrientation();