Current section
Files
Jump to
Current section
Files
lib/membrane_camera_capture/native.ex
defmodule Membrane.CameraCapture.Native do
@moduledoc false
use Unifex.Loader
@spec open(binary, non_neg_integer()) :: {:ok, reference()} | {:error, reason :: atom()}
def open(url, framerate) when is_binary(url) do
do_open(url, inspect(framerate))
end
end