mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	Add an interface to monitor devices and helper program Add v4l2 monitor Add simple dictionary with key/value pairs
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			380 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			380 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
v4l2_sources = ['v4l2.c',
 | 
						|
                'v4l2-monitor.c',
 | 
						|
                'v4l2-source.c']
 | 
						|
 | 
						|
v4l2lib = shared_library('spa-v4l2',
 | 
						|
                          v4l2_sources,
 | 
						|
                          include_directories : inc,
 | 
						|
                          dependencies : [ v4l2_dep, libudev_dep ],
 | 
						|
                          link_with : spalib,
 | 
						|
                          install : true)
 |