We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5de1c09 commit e680377Copy full SHA for e680377
lib/membrane_http_adaptive_stream/source.ex
@@ -240,6 +240,7 @@ defmodule Membrane.HTTPAdaptiveStream.Source do
240
:ok
241
end
242
243
+ @spec raise_missing_pad_error(atom(), list(), map()) :: no_return()
244
defp raise_missing_pad_error(pad_name, stream_formats, state) do
245
raise """
246
Pad #{inspect(pad_name)} is not linked, but the HLS stream contains \
@@ -250,6 +251,7 @@ defmodule Membrane.HTTPAdaptiveStream.Source do
250
251
"""
252
253
254
+ @spec raise_redundant_pad_error(atom(), list(), map()) :: no_return()
255
defp raise_redundant_pad_error(pad_name, stream_formats, state) do
256
257
Pad #{inspect(pad_name)} is linked, but the HLS stream doesn't contain \
0 commit comments