video_send_frame


Description:

public bool video_send_frame (uint32 friend_number, uint16 width, uint16 height, uint8[] y, uint8[] u, uint8[] v, out ErrSendFrame error = null)

Send a video frame to a friend.

Y - plane should be of size: height * width U - plane should be of size: (height/2) * (width/2) V - plane should be of size: (height/2) * (width/2)

Parameters:

friend_number

The friend number of the friend to which to send a video frame.

width

Width of the frame in pixels.

height

Height of the frame in pixels.

y

Y (Luminance) plane data.

u

U (Chroma) plane data.

v

V (Chroma) plane data.