Package ai.nexconn.call.api
Interface INCCallVideoFrame
public interface INCCallVideoFrame
Video frame data.
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]getData()Returns the video data used for custom processing.intReturns the texture ID, used for custom processing such as beauty filters.voidsetData(byte[] data) Sets the processed video data.voidsetTextureId(int textureId) Sets the processed texture ID.
-
Method Details
-
getTextureId
int getTextureId()Returns the texture ID, used for custom processing such as beauty filters. -
setTextureId
void setTextureId(int textureId) Sets the processed texture ID. -
getData
byte[] getData()Returns the video data used for custom processing. -
setData
void setData(byte[] data) Sets the processed video data.
-