Home
last modified time | relevance | path

Searched refs:timestampNs (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/sdk/android/api/org/webrtc/
DVideoProcessor.java27 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()
DVideoFrame.java125 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()
DSurfaceTextureHelper.java368 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/
DNativeAndroidVideoTrackSource.java81 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
DNativeCapturerObserver.java50 new VideoFrame(adaptedBuffer, frame.getRotation(), parameters.timestampNs)); in onFrameCaptured()
DAndroidVideoDecoder.java447 final long timestampNs;
453 timestampNs = renderedTextureMetadata.presentationTimestampUs * 1000;
459 new VideoFrame(frame.getBuffer(), frame.getRotation(), timestampNs);
/external/webrtc/sdk/android/native_unittests/org/webrtc/
DJavaVideoSourceTestHelper.java26 int width, int height, int rotation, long timestampNs, CapturerObserver observer) { in deliverFrame() argument
28 new VideoFrame(JavaI420Buffer.allocate(width, height), rotation, timestampNs)); in deliverFrame()