Adds a frame to the video.

Namespace:  Gallio.Common.Media
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
protected abstract void AddFrameImpl(
	VideoFrame frame
)
Visual Basic (Declaration)
Protected MustOverride Sub AddFrameImpl ( _
	frame As VideoFrame _
)

Parameters

frame
Type: Gallio.Common.Media..::.VideoFrame
The video frame to add, not null.

Remarks

The implementation makes a copy of the frame or encodes it immediately so that the caller can reuse the same frame buffers for subsequent frames.

The frame dimensions have already been checked by the caller.

See Also