# `ExSDP.Attribute.SSRC`
[🔗](https://github.com/membraneframework/ex_sdp/blob/v1.2.0/lib/ex_sdp/attribute/ssrc.ex#L1)

This module represents ssrc (RFC 5576).

# `attr_key`

```elixir
@type attr_key() :: :ssrc
```

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

# `t`

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

# `parse`

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

---

*Consult [api-reference.md](api-reference.md) for complete listing*
