meson: enable more options by default

Update submodules to latest version
This commit is contained in:
Wim Taymans 2018-10-10 17:16:01 +02:00
parent 8d71d2dab8
commit 456c01afbc
4 changed files with 16 additions and 14 deletions

View file

@ -5,11 +5,11 @@ option('docs',
option('man', option('man',
description: 'Build manpages', description: 'Build manpages',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('gstreamer', option('gstreamer',
description: 'Build GStreamer plugins', description: 'Build GStreamer plugins',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('systemd', option('systemd',
description: 'Enable systemd integration', description: 'Enable systemd integration',
type: 'boolean', type: 'boolean',
@ -17,15 +17,15 @@ option('systemd',
option('pipewire-alsa', option('pipewire-alsa',
description: 'Enable pipewire-alsa integration', description: 'Enable pipewire-alsa integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('pipewire-jack', option('pipewire-jack',
description: 'Enable pipewire-jack integration', description: 'Enable pipewire-jack integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('pipewire-pulseaudio', option('pipewire-pulseaudio',
description: 'Enable pipewire-pulseaudio integration', description: 'Enable pipewire-pulseaudio integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('spa', option('spa',
description: 'Enable spa integration', description: 'Enable spa integration',
type: 'boolean', type: 'boolean',
@ -33,23 +33,23 @@ option('spa',
option('spa-plugins', option('spa-plugins',
description: 'Enable spa plugins integration', description: 'Enable spa plugins integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('alsa', option('alsa',
description: 'Enable alsa spa plugin integration', description: 'Enable alsa spa plugin integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('audiomixer', option('audiomixer',
description: 'Enable audiomixer spa plugin integration', description: 'Enable audiomixer spa plugin integration',
type: 'boolean', type: 'boolean',
value: false) value: false)
option('audioconvert', option('audioconvert',
description: 'Enable audiconvert spa plugin integration', description: 'Enable audioconvert spa plugin integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('bluez5', option('bluez5',
description: 'Enable bluez5 spa plugin integration', description: 'Enable bluez5 spa plugin integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('audiotestsrc', option('audiotestsrc',
description: 'Enable audiotestsrc spa plugin integration', description: 'Enable audiotestsrc spa plugin integration',
type: 'boolean', type: 'boolean',
@ -61,7 +61,7 @@ option('ffmpeg',
option('support', option('support',
description: 'Enable support spa plugin integration', description: 'Enable support spa plugin integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('test', option('test',
description: 'Enable test spa plugin integration', description: 'Enable test spa plugin integration',
type: 'boolean', type: 'boolean',
@ -69,7 +69,7 @@ option('test',
option('v4l2', option('v4l2',
description: 'Enable v4l2 spa plugin integration', description: 'Enable v4l2 spa plugin integration',
type: 'boolean', type: 'boolean',
value: false) value: true)
option('videotestsrc', option('videotestsrc',
description: 'Enable videotestsrc spa plugin integration', description: 'Enable videotestsrc spa plugin integration',
type: 'boolean', type: 'boolean',

@ -1 +1 @@
Subproject commit 9955e3203025cfe2cd7913d7851e3adb33863259 Subproject commit 7303f2c1a0a7643ab3017ffed17c82d0e35118ba

@ -1 +1 @@
Subproject commit 6a4da8a6b31e5ed2e455608d853de159f470ba2e Subproject commit a00c00baed6984b07e396cacfeba14c09e43102e

View file

@ -615,6 +615,8 @@ impl_node_port_set_param(struct spa_node *node,
uint32_t id, uint32_t flags, uint32_t id, uint32_t flags,
const struct spa_pod *param) const struct spa_pod *param)
{ {
struct impl *this;
spa_return_val_if_fail(node != NULL, -EINVAL); spa_return_val_if_fail(node != NULL, -EINVAL);
this = SPA_CONTAINER_OF(node, struct impl, node); this = SPA_CONTAINER_OF(node, struct impl, node);