mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	Make a device object, let the v4l2 monitor create device objects The device object is responsible for dynamically creating nodes.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			544 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
spa_alsa_sources = ['alsa.c',
 | 
						|
                'alsa-monitor.c',
 | 
						|
                'alsa-device.c',
 | 
						|
                'alsa-sink.c',
 | 
						|
                'alsa-source.c',
 | 
						|
                'alsa-utils.c']
 | 
						|
 | 
						|
spa_alsa = shared_library('spa-alsa',
 | 
						|
                           spa_alsa_sources,
 | 
						|
                           include_directories : [spa_inc],
 | 
						|
                           dependencies : [ alsa_dep, libudev_dep, mathlib ],
 | 
						|
                           install : true,
 | 
						|
                           install_dir : '@0@/spa/alsa'.format(get_option('libdir')))
 |