Class QTCaptureDecompressedVideoOutput.Delegate
- java.lang.Object
-
- org.jitsi.impl.neomedia.quicktime.QTCaptureDecompressedVideoOutput.Delegate
-
- Enclosing class:
- QTCaptureDecompressedVideoOutput
public abstract static class QTCaptureDecompressedVideoOutput.Delegate extends Object
Represents the receiver of CVImageBuffer video frames and their associated QTSampleBuffers captured by a QTCaptureDecompressedVideoOutput.
-
-
Constructor Summary
Constructors Constructor Description Delegate()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidoutputVideoFrameWithSampleBuffer(CVImageBuffer videoFrame, QTSampleBuffer sampleBuffer)Notifies this Delegate that the QTCaptureOutput to which it is set has output a specific CVImageBuffer representing a video frame with a specific QTSampleBuffer.
-
-
-
Method Detail
-
outputVideoFrameWithSampleBuffer
public abstract void outputVideoFrameWithSampleBuffer(CVImageBuffer videoFrame, QTSampleBuffer sampleBuffer)
Notifies this Delegate that the QTCaptureOutput to which it is set has output a specific CVImageBuffer representing a video frame with a specific QTSampleBuffer.- Parameters:
videoFrame- the CVImageBuffer which represents the output video framesampleBuffer- the QTSampleBuffer which represents additional details about the output video samples
-
-