mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
libcamera: disable by default
Until it is at least more comon available in distros.
This commit is contained in:
parent
39974903df
commit
0b47b47b6c
3 changed files with 9 additions and 6 deletions
|
|
@ -95,7 +95,7 @@ option('v4l2',
|
||||||
option('libcamera',
|
option('libcamera',
|
||||||
description: 'Enable libcamera spa plugin integration',
|
description: 'Enable libcamera spa plugin integration',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
value: true)
|
value: false)
|
||||||
option('videoconvert',
|
option('videoconvert',
|
||||||
description: 'Enable videoconvert spa plugin integration',
|
description: 'Enable videoconvert spa plugin integration',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,13 @@ if sdl_dep.found()
|
||||||
include_directories : [spa_inc ],
|
include_directories : [spa_inc ],
|
||||||
dependencies : [dl_lib, sdl_dep, pthread_lib],
|
dependencies : [dl_lib, sdl_dep, pthread_lib],
|
||||||
install : false)
|
install : false)
|
||||||
executable('local-libcamera', 'local-libcamera.c',
|
|
||||||
include_directories : [spa_inc ],
|
if get_option('libcamera') and libcamera_dep.found()
|
||||||
dependencies : [dl_lib, sdl_dep, pthread_lib, libcamera_dep],
|
executable('local-libcamera', 'local-libcamera.c',
|
||||||
install : false)
|
include_directories : [spa_inc ],
|
||||||
|
dependencies : [dl_lib, sdl_dep, pthread_lib, libcamera_dep],
|
||||||
|
install : false)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
executable('example-control', 'example-control.c',
|
executable('example-control', 'example-control.c',
|
||||||
|
|
|
||||||
|
|
@ -1716,7 +1716,7 @@ static void do_quit(void *data, int signal_number)
|
||||||
pw_main_loop_quit(impl->loop);
|
pw_main_loop_quit(impl->loop);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define DEFAULT_ENABLED "alsa-pcm,alsa-seq,v4l2,libcamera,bluez5,metadata,suspend-node,policy-node"
|
#define DEFAULT_ENABLED "alsa-pcm,alsa-seq,v4l2,bluez5,metadata,suspend-node,policy-node"
|
||||||
#define DEFAULT_DISABLED ""
|
#define DEFAULT_DISABLED ""
|
||||||
|
|
||||||
static const struct {
|
static const struct {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue