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

This module represents simulcast (RFC 8853).

# `attr_key`

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

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

# `rid`

```elixir
@type rid() :: String.t()
```

# `t`

```elixir
@type t() :: %ExSDP.Attribute.Simulcast{
  recv: [rid() | [rid()]],
  send: [rid() | [rid()]]
}
```

# `parse`

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

---

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