mirror of
				https://gitlab.freedesktop.org/pipewire/pipewire.git
				synced 2025-11-03 09:01:54 -05:00 
			
		
		
		
	libcamera: fix no-longer existent <libcamera/buffer.h> header inclusion
The SPA plugin is including a <libcamera/buffer.h> header file, but this
got renamed to <libcamera/framebuffer.h> to match the defined class name:
../spa/plugins/libcamera/libcamera_wrapper.cpp:52:10: fatal error: libcamera/buffer.h: No such file or directory
   52 | #include <libcamera/buffer.h>
      |          ^~~~~~~~~~~~~~~~~~~~
Fixes #1435
			
			
This commit is contained in:
		
							parent
							
								
									cb10d87bb8
								
							
						
					
					
						commit
						5471a0018b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -49,7 +49,7 @@
 | 
				
			||||||
#include <libcamera/camera_manager.h>
 | 
					#include <libcamera/camera_manager.h>
 | 
				
			||||||
#include <libcamera/request.h>
 | 
					#include <libcamera/request.h>
 | 
				
			||||||
#include <libcamera/framebuffer_allocator.h>
 | 
					#include <libcamera/framebuffer_allocator.h>
 | 
				
			||||||
#include <libcamera/buffer.h>
 | 
					#include <libcamera/framebuffer.h>
 | 
				
			||||||
#include <libcamera/property_ids.h>
 | 
					#include <libcamera/property_ids.h>
 | 
				
			||||||
#include <libcamera/controls.h>
 | 
					#include <libcamera/controls.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue