Packages

Membrane Multimedia Framework (RTP H264 Element)

Retired package: Renamed - Renamed to membrane_rtp_h264_plugin

Current section

Files

Jump to
Raw

lib/rtp_h264.ex

defmodule Membrane.Element.RTP.H264 do
@moduledoc false
use Application
def start(_type, _args) do
children = []
opts = [strategy: :one_for_one, name: __MODULE__]
Supervisor.start_link(children, opts)
end
end