Interface INCCallVideoFrame


public interface INCCallVideoFrame
Video frame data.
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    Returns the video data used for custom processing.
    int
    Returns the texture ID, used for custom processing such as beauty filters.
    void
    setData(byte[] data)
    Sets the processed video data.
    void
    setTextureId(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.