spa: remove unnecessary indirection for some spa_log_topics

This results in shorter machine code since it removes one
pointer load and a NULL check.
This commit is contained in:
Barnabás Pőcze 2023-10-06 12:41:55 +02:00 committed by Wim Taymans
parent d2b5b53c08
commit 8256a2d5a6
13 changed files with 39 additions and 35 deletions

View file

@ -9,8 +9,7 @@
#include "libcamera.h"
struct spa_log_topic log_topic = SPA_LOG_TOPIC(0, "spa.libcamera");
struct spa_log_topic *libcamera_log_topic = &log_topic;
struct spa_log_topic libcamera_log_topic = SPA_LOG_TOPIC(0, "spa.libcamera");
SPA_EXPORT
int spa_handle_factory_enum(const struct spa_handle_factory **factory,