public VideoFormatEventArgs(Packets.VideoFormat format) { VideoFormat = format; }
public VideoClientHandshake(uint initialFrameId, VideoFormat requestedFormat) : base((uint)VideoPayloadType.ClientHandshake) { InitialFrameId = initialFrameId; RequestedFormat = requestedFormat; }
public VideoClientHandshake(uint initialFrameId, VideoFormat requestedFormat) { InitialFrameId = initialFrameId; RequestedFormat = requestedFormat; }
public VideoClientHandshake() : base((uint)VideoPayloadType.ClientHandshake) { RequestedFormat = new VideoFormat(); }
public VideoClientHandshake() { RequestedFormat = new VideoFormat(); }