Searched refs:timestampNs (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/sdk/android/api/org/webrtc/ |
D | VideoProcessor.java | 27 public final long timestampNs; field in VideoProcessor.FrameAdaptationParameters 31 int scaleWidth, int scaleHeight, long timestampNs, boolean drop) { in FrameAdaptationParameters() argument 38 this.timestampNs = timestampNs; in FrameAdaptationParameters() 74 return new VideoFrame(adaptedBuffer, frame.getRotation(), parameters.timestampNs); in applyFrameAdaptationParameters()
|
D | VideoFrame.java | 125 private final long timestampNs; field in VideoFrame 133 public VideoFrame(Buffer buffer, int rotation, long timestampNs) { in VideoFrame() argument 142 this.timestampNs = timestampNs; in VideoFrame() 163 return timestampNs; in getTimestampNs()
|
D | SurfaceTextureHelper.java | 368 long timestampNs = surfaceTexture.getTimestamp(); 370 timestampNs = timestampAligner.translateTimestamp(timestampNs); 379 final VideoFrame frame = new VideoFrame(buffer, frameRotation, timestampNs);
|
/external/webrtc/sdk/android/src/java/org/webrtc/ |
D | NativeAndroidVideoTrackSource.java | 81 int cropY, int cropWidth, int cropHeight, int scaleWidth, int scaleHeight, long timestampNs, in createFrameAdaptationParameters() argument 84 cropX, cropY, cropWidth, cropHeight, scaleWidth, scaleHeight, timestampNs, drop); in createFrameAdaptationParameters() 96 long nativeAndroidVideoTrackSource, int width, int height, int rotation, long timestampNs); in nativeAdaptFrame() argument 98 long nativeAndroidVideoTrackSource, int rotation, long timestampNs, VideoFrame.Buffer buffer); in nativeOnFrameCaptured() argument
|
D | NativeCapturerObserver.java | 50 new VideoFrame(adaptedBuffer, frame.getRotation(), parameters.timestampNs)); in onFrameCaptured()
|
D | AndroidVideoDecoder.java | 447 final long timestampNs; 453 timestampNs = renderedTextureMetadata.presentationTimestampUs * 1000; 459 new VideoFrame(frame.getBuffer(), frame.getRotation(), timestampNs);
|
/external/webrtc/sdk/android/native_unittests/org/webrtc/ |
D | JavaVideoSourceTestHelper.java | 26 int width, int height, int rotation, long timestampNs, CapturerObserver observer) { in deliverFrame() argument 28 new VideoFrame(JavaI420Buffer.allocate(width, height), rotation, timestampNs)); in deliverFrame()
|