Current section
Files
Jump to
Current section
Files
membrane_element_lame
bundlex.exs
bundlex.exs
defmodule Membrane.Element.Lame.BundlexProject do
use Bundlex.Project
def project() do
[
nifs: nifs(Bundlex.platform())
]
end
def nifs(_platform) do
[
encoder: [
sources: ["encoder.c", "_generated/encoder.c"],
deps: [membrane_common_c: :membrane, unifex: :unifex],
libs: ["mp3lame", "m"]
]
]
end
end