From 26aab012d1e4725e87e0fbc3cfcff004e2e04a90 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 1 Jun 2025 04:24:01 +0200 Subject: [PATCH 06/11] fftools/resources/resman: Remove unused AVClass If a logging context is needed, the caller should provide one instead. Signed-off-by: Andreas Rheinhardt --- fftools/resources/resman.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/fftools/resources/resman.c b/fftools/resources/resman.c index 02a2a19e1b..cc65b25027 100644 --- a/fftools/resources/resman.c +++ b/fftools/resources/resman.c @@ -50,18 +50,13 @@ static const FFResourceDefinition resource_definitions[] = { }; -static const AVClass resman_class = { - .class_name = "ResourceManager", -}; - typedef struct ResourceManagerContext { - const AVClass *class; AVDictionary *resource_dic; } ResourceManagerContext; static AVMutex mutex = AV_MUTEX_INITIALIZER; -ResourceManagerContext resman_ctx = { .class = &resman_class }; +ResourceManagerContext resman_ctx = { NULL }; #if CONFIG_RESOURCE_COMPRESSION -- 2.45.2