Packages
Membrane Multimedia Framework (RTP JitterBuffer Element)
Retired package: Deprecated - Package has become part of membrane_rtp_plugin
Current section
Files
Jump to
Current section
Files
lib/rtp_jitter_buffer/app.ex
defmodule Membrane.Element.RTP.JitterBuffer.App 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