Metadata

Media metadata.

public class Metadata
    {
        public uint uid;
        public uint size;

        public IntPtr buffer
        {
            set
            {
                _buffer = (UInt64)value;
            }
            get
            {
                return (IntPtr)_buffer;
            }
        }

        private UInt64 _buffer;

        public long timeStampMs;
    };

Attributes

uid
The user ID.
  • For the recipient: The ID of the remote user who sent the Metadata.
  • For the sender: Ignore it.
size
The buffer size of the sent or received Metadata.
buffer
The buffer address of the sent or received Metadata.
timeStampMs
The timestamp (ms) of Metadata.