Current section

Files

Jump to

bundlex.exs

defmodule Membrane.FFmpeg.SWScale.BundlexProject do
use Bundlex.Project
def project do
[
natives: natives()
]
end
defp natives() do
[
scaler: [
interface: :nif,
sources: ["scaler.c"],
pkg_configs: ["libswscale", "libavutil"],
preprocessor: Unifex
]
]
end
end