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

This module represents `ssrc-group` [RFC 5576](https://datatracker.ietf.org/doc/html/rfc5576#section-4.2) attribute.

# `attr_key`

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

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

# `t`

```elixir
@type t() :: %ExSDP.Attribute.SSRCGroup{
  semantics: binary(),
  ssrcs: [non_neg_integer()]
}
```

# `parse`

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

---

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