meson: Remove -Wno-unused-parameter
We build libcamera with -Wno-unused-parameter and this doesn't cause much issue internally. However, it prevents catching unused parameters in inline functions defined in public headers. This can lead to compilation warnings for applications compiled without -Wno-unused-parameter. To catch those issues, remove -Wno-unused-parameter and fix all the related warnings with [[maybe_unused]]. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
@@ -338,7 +338,8 @@ gst_libcamera_src_task_run(gpointer user_data)
|
||||
}
|
||||
|
||||
static void
|
||||
gst_libcamera_src_task_enter(GstTask *task, GThread *thread, gpointer user_data)
|
||||
gst_libcamera_src_task_enter(GstTask *task, [[maybe_unused]] GThread *thread,
|
||||
gpointer user_data)
|
||||
{
|
||||
GstLibcameraSrc *self = GST_LIBCAMERA_SRC(user_data);
|
||||
GLibRecLocker lock(&self->stream_lock);
|
||||
@@ -467,7 +468,9 @@ done:
|
||||
}
|
||||
|
||||
static void
|
||||
gst_libcamera_src_task_leave(GstTask *task, GThread *thread, gpointer user_data)
|
||||
gst_libcamera_src_task_leave([[maybe_unused]] GstTask *task,
|
||||
[[maybe_unused]] GThread *thread,
|
||||
gpointer user_data)
|
||||
{
|
||||
GstLibcameraSrc *self = GST_LIBCAMERA_SRC(user_data);
|
||||
GstLibcameraSrcState *state = self->state;
|
||||
|
||||
Reference in New Issue
Block a user