diff options
author | Koop Mast <kwm@FreeBSD.org> | 2018-12-26 03:43:19 +0800 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2018-12-26 03:43:19 +0800 |
commit | 0e8c2fb42a13577be1316b01877f62f5cc6b8955 (patch) | |
tree | 1054ded0a119a36a1ef7a3f860390e930cf6ebf0 /Mk | |
parent | f0e01a79c2c18d9c47d7f295652e175aa2b319e9 (diff) | |
download | freebsd-ports-gnome-0e8c2fb42a13577be1316b01877f62f5cc6b8955.tar.gz freebsd-ports-gnome-0e8c2fb42a13577be1316b01877f62f5cc6b8955.tar.zst freebsd-ports-gnome-0e8c2fb42a13577be1316b01877f62f5cc6b8955.zip |
* Add the gstreamer1 lv2 plugin.
This plugins is a wrapper that exposes lv2 plugins to gstreamer applications.
* Correct the handling of webrtcdsp in bsd.gstreamer.mk so it can be used
in the USE_GSTREAMER1 macro.
multimedia/gstreamer1-plugins/Makefile.common:
* Remove configure disable switches for sunadio and wgl, these
plugins where removed in 1.14.
* Move gtk3 from the "bad" plugins to the "good" plugins. This removes a
warning from the configure stage of "bad" plugins about unknown
configure arguments.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gstreamer.mk | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Mk/bsd.gstreamer.mk b/Mk/bsd.gstreamer.mk index 5599634f11f4..158ef3eba475 100644 --- a/Mk/bsd.gstreamer.mk +++ b/Mk/bsd.gstreamer.mk @@ -161,6 +161,7 @@ _GSTREAMER_PLUGINS+= \ kms \ libav \ libde265 \ + lv2 \ modplug \ mpg123 \ mplex \ @@ -178,11 +179,12 @@ _GSTREAMER_PLUGINS+= \ vpx \ vulkan \ webp \ + webrtcdsp \ x \ x265 \ ximagesrc \ zbar -# vaapi webrtcdsp +# vaapi .endif # USE_GSTREAMER1 # other plugins @@ -261,6 +263,9 @@ ladspa_IMPL= bad lame_DEPENDS= audio/gstreamer-plugins-lame lame_IMPL= ugly +lv2_DEPENDS= audio/gstreamer-plugins-lv2 +lv2_IMPL= bad + mad_DEPENDS= audio/gstreamer-plugins-mad mad_IMPL= ugly @@ -324,6 +329,9 @@ vorbis_IMPL= # wavpack_DEPENDS= audio/gstreamer-plugins-wavpack wavpack_IMPL= good +webrtcdsp_DEPENDS= audio/gstreamer-plugins-webrtcdsp +webrtcdsp_IMPL= bad + #-- comms plugin section --------------------------------------------------# spandsp_DEPENDS= comms/gstreamer-plugins-spandsp @@ -545,9 +553,6 @@ ugly_IMPL= # vdpau_DEPENDS= multimedia/gstreamer-plugins-vdpau vdpau_IMPL= bad -webrtcdsp_DEPENDS= multimedia/gstreamer-plugins-webrtcdsp -webrtcdsp_IMPL= bad - x264_DEPENDS= multimedia/gstreamer-plugins-x264 x264_IMPL= ugly |