View Source ExSDP.Attribute.SSRC (ExSDP v0.14.1)

This module represents ssrc (RFC 5576).

Summary

Types

Key that can be used for searching this attribute using ExSDP.Media.get_attribute/2.

t()

Types

@type attr_key() :: :ssrc

Key that can be used for searching this attribute using ExSDP.Media.get_attribute/2.

@type t() :: %ExSDP.Attribute.SSRC{
  attribute: binary(),
  id: non_neg_integer(),
  value: binary() | nil
}

Functions

@spec parse(binary()) :: {:ok, t()} | {:error, :invalid_ssrc}