C# Class Recurity.Swf.TagHandler.VideoFrame

VideoFrame provides a single frame of video data.

VideoFrame provides a single frame of video data for a video character

that is already definedwith DefineVideoStream.In playback, the time

sequencing of video frames depends on the Swf frame rate only. When

Swf playback reaches a particular Swf frame, the video images from any

VideoFrame tags in that Swf frame are rendered. Any timing mechanisms

built into the video payload are ignored. A VideoFrame tag is not

needed for every video character in every frame number specified. A

VideoFrame tag merely sets video data associated with a particular

frame number; it does not automatically display a video frame.

To display a video frame, specify the frame number as the Ratio

field in PlaceObject2 or PlaceObject3.

Inheritance: AbstractTagHandler
Exibir arquivo Open project: rtezli/Blitzableiter

Public Methods

Method Description
ToString ( ) : string

Converts the value of this instance to a System.String.

Verify ( ) : bool

Verifies this object and its components for documentation compliance.

VideoFrame ( byte InitialVersion ) : System

VideoFrame provides a single frame of video data

Write ( Stream output ) : void

Writes this object back to a stream

Protected Methods

Method Description
Parse ( ) : void

Parses this object out of a stream

Private Methods

Method Description
GetStreamReference ( UInt16 streamId ) : DefineVideoStream

Gets a reference to the Stream used by this tag.

This method is for later use if we decide to parse the video data as well.

VideoStream ( AbstractTagHandler handler ) : bool

Verifies is an AbstractTagHandler is a DefineVideoStream tag (for later use)

This method is for later use if we decide to parse the video data as well.

Method Details

Parse() protected method

Parses this object out of a stream
protected Parse ( ) : void
return void

ToString() public method

Converts the value of this instance to a System.String.
public ToString ( ) : string
return string

Verify() public method

Verifies this object and its components for documentation compliance.
public Verify ( ) : bool
return bool

VideoFrame() public method

VideoFrame provides a single frame of video data
public VideoFrame ( byte InitialVersion ) : System
InitialVersion byte The version of the Swf file using this object.
return System

Write() public method

Writes this object back to a stream
public Write ( Stream output ) : void
output Stream The stream to write to.
return void