Packages
Plugin performing video scaling, using SWScale module of [FFmpeg](https://www.ffmpeg.org/) library.
Current section
Files
Jump to
Current section
Files
membrane_ffmpeg_swscale_plugin
bundlex.exs
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