mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	Remove old code Only depend on GStreamer for the plugins Rename STOP to PAUSE because that's what it really does Start working on format_fixate. Remove default property value from props Fix framerate
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			619 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			619 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
spalib_sources = ['audio-raw.c',
 | 
						|
                  'buffer.c',
 | 
						|
                  'control.c',
 | 
						|
                  'debug.c',
 | 
						|
                  'format.c',
 | 
						|
                  'memory.c',
 | 
						|
                  'props.c',
 | 
						|
                  'ringbuffer.c',
 | 
						|
                  'video-raw.c']
 | 
						|
 | 
						|
spalib = shared_library('spa-lib',
 | 
						|
                         spalib_sources,
 | 
						|
                         include_directories : inc,
 | 
						|
                         install : true)
 | 
						|
spalibs = static_library('spa-lib',
 | 
						|
                         spalib_sources,
 | 
						|
                         include_directories : inc,
 | 
						|
                         install : true)
 |