C# Class SwfDotNet.IO.Tags.Types.ScreenVideoPacket

ScreenVideoPacket class
Inheritance: VideoPacket
Show file Open project: bladecoding/SwfExport Class Usage Examples

Public Methods

Method Description
GetSizeOf ( ) : int

Gets the size of.

ReadData ( BufferedBinaryReader binaryReader ) : void

Reads the data from the binary reader.

ScreenVideoPacket ( ) : System

Creates a new ScreenVideoPacket instance.

ScreenVideoPacket ( int blockWidth, int imageWidth, int blockHeight, int imageHeight, ImageBlock blocks ) : System

Creates a new ScreenVideoPacket instance.

Serialize ( XmlWriter writer ) : void

Serializes to the specified writer.

WriteTo ( BinaryWriter writer ) : void

Writes to.

Method Details

GetSizeOf() public method

Gets the size of.
public GetSizeOf ( ) : int
return int

ReadData() public method

Reads the data from the binary reader.
public ReadData ( BufferedBinaryReader binaryReader ) : void
binaryReader SwfDotNet.IO.Utils.BufferedBinaryReader Binary reader.
return void

ScreenVideoPacket() public method

Creates a new ScreenVideoPacket instance.
public ScreenVideoPacket ( ) : System
return System

ScreenVideoPacket() public method

Creates a new ScreenVideoPacket instance.
public ScreenVideoPacket ( int blockWidth, int imageWidth, int blockHeight, int imageHeight, ImageBlock blocks ) : System
blockWidth int Width of the block.
imageWidth int Width of the image.
blockHeight int Height of the block.
imageHeight int Height of the image.
blocks ImageBlock Blocks.
return System

Serialize() public method

Serializes to the specified writer.
public Serialize ( XmlWriter writer ) : void
writer System.Xml.XmlWriter Writer.
return void

WriteTo() public method

Writes to.
public WriteTo ( BinaryWriter writer ) : void
writer System.IO.BinaryWriter Writer.
return void