From 23e5f77ab0c5f80de4091b365165276cfe9899dd Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Wed, 24 Jul 2024 18:39:06 +0200 Subject: Remove mp3info function & remove list_do_action from plugin_api Change-Id: Ia9a2d6889679832f23b19a989927277ba886cba4 --- apps/plugins/properties.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugins/properties.c') diff --git a/apps/plugins/properties.c b/apps/plugins/properties.c index 73ec64be80..dc55b8128b 100644 --- a/apps/plugins/properties.c +++ b/apps/plugins/properties.c @@ -130,7 +130,7 @@ static bool file_properties(const char* selected_file) rb->snprintf(str_time, sizeof str_time, "%02d:%02d:%02d", tm.tm_hour, tm.tm_min, tm.tm_sec); - if (props_type != PROPS_PLAYLIST && !rb->mp3info(&id3, selected_file)) + if (props_type != PROPS_PLAYLIST && rb->get_metadata(&id3, -1, selected_file)) props_type = PROPS_ID3; found = true; break; @@ -416,7 +416,7 @@ static bool determine_file_or_dir(void) bool mul_id3_add(const char *file_name) { - if (!file_name || rb->mp3info(&id3, file_name)) + if (!file_name || !rb->get_metadata(&id3, -1, file_name)) skipped_count++; else { -- cgit v1.2.3