spa: libcamera: remove two unused members

This commit is contained in:
Barnabás Pőcze 2024-03-08 23:50:32 +01:00 committed by Wim Taymans
parent 87368c8e4f
commit 55fafe8f0b

View file

@ -60,14 +60,6 @@ struct buffer {
void *ptr;
};
#define MAX_CONTROLS 64
struct control {
uint32_t id;
uint32_t ctrl_id;
double value;
};
struct port {
struct impl *impl;
@ -78,9 +70,6 @@ struct port {
uint32_t memtype = 0;
struct control controls[MAX_CONTROLS];
uint32_t n_controls = 0;
struct buffer buffers[MAX_BUFFERS];
uint32_t n_buffers = 0;
struct spa_list queue;