case class RTPHeader(tpe: Byte, version: Byte, sequence: Short, timestamp: Int, ssrc: Int) extends Product with Serializable

Represents the RTP header used for sending and receiving voice data

tpe

The type to use. Should be 0x80

version

The version to use. Should be 0x78

sequence

The sequence

timestamp

Timestamp

ssrc

SSRC of sender

Source
RTPHeader.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RTPHeader
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RTPHeader(tpe: Byte, version: Byte, sequence: Short, timestamp: Int, ssrc: Int)

    tpe

    The type to use. Should be 0x80

    version

    The version to use. Should be 0x78

    sequence

    The sequence

    timestamp

    Timestamp

    ssrc

    SSRC of sender

Value Members

  1. lazy val byteString: ByteString
  2. def nonceToBuffer(buffer: ByteBuffer): Unit
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. val sequence: Short
  5. val ssrc: Int
  6. val timestamp: Int
  7. val tpe: Byte
  8. val version: Byte