mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
plugins: Remove id3 lib
only remaining user is PictureFlow, and function is arguably not lib-worthy at this point Change-Id: If5cff56fc4aed7c8029782a7087ba4cfef3ec4ea
This commit is contained in:
parent
de8d1437dc
commit
5e66f0e762
4 changed files with 18 additions and 68 deletions
|
@ -70,6 +70,4 @@ kbd_helper.c
|
||||||
pluginlib_touchscreen.c
|
pluginlib_touchscreen.c
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
id3.c
|
|
||||||
|
|
||||||
mul_id3.c
|
mul_id3.c
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
/***************************************************************************
|
|
||||||
* __________ __ ___.
|
|
||||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
||||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
||||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
||||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
||||||
* \/ \/ \/ \/ \/
|
|
||||||
* $Id$
|
|
||||||
*
|
|
||||||
* Copyright (C) 2023 Christian Soffke
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU General Public License
|
|
||||||
* as published by the Free Software Foundation; either version 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
||||||
* KIND, either express or implied.
|
|
||||||
*
|
|
||||||
****************************************************************************/
|
|
||||||
#include "plugin.h"
|
|
||||||
|
|
||||||
/* Fills mp3entry with metadata retrieved from RAM, if possible, or by reading from
|
|
||||||
* the file directly. Note that the tagcache only stores a subset of metadata and
|
|
||||||
* will thus not return certain properties of the file, such as frequency, size, or
|
|
||||||
* codec.
|
|
||||||
*/
|
|
||||||
bool retrieve_id3(struct mp3entry *id3, const char* file)
|
|
||||||
{
|
|
||||||
#if defined (HAVE_TAGCACHE) && defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
|
||||||
if (rb->tagcache_fill_tags(id3, file))
|
|
||||||
{
|
|
||||||
rb->strlcpy(id3->path, file, sizeof(id3->path));
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return rb->get_metadata(id3, -1, file);
|
|
||||||
}
|
|
|
@ -1,26 +0,0 @@
|
||||||
/***************************************************************************
|
|
||||||
* __________ __ ___.
|
|
||||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
||||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
||||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
||||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
||||||
* \/ \/ \/ \/ \/
|
|
||||||
* $Id$
|
|
||||||
*
|
|
||||||
* Copyright (C) 2023 Christian Soffke
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU General Public License
|
|
||||||
* as published by the Free Software Foundation; either version 2
|
|
||||||
* of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
||||||
* KIND, either express or implied.
|
|
||||||
*
|
|
||||||
****************************************************************************/
|
|
||||||
#ifndef ID3_H
|
|
||||||
#define ID3_H
|
|
||||||
|
|
||||||
bool retrieve_id3(struct mp3entry *id3, const char* file);
|
|
||||||
|
|
||||||
#endif /* ID3_H */
|
|
|
@ -33,7 +33,6 @@
|
||||||
#include "lib/grey.h"
|
#include "lib/grey.h"
|
||||||
#include "lib/mylcd.h"
|
#include "lib/mylcd.h"
|
||||||
#include "lib/feature_wrappers.h"
|
#include "lib/feature_wrappers.h"
|
||||||
#include "lib/id3.h"
|
|
||||||
|
|
||||||
/******************************* Globals ***********************************/
|
/******************************* Globals ***********************************/
|
||||||
static fb_data *lcd_fb;
|
static fb_data *lcd_fb;
|
||||||
|
@ -2076,6 +2075,24 @@ static inline void free_borrowed_tracks(void)
|
||||||
buf_ctx_unlock();
|
buf_ctx_unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Fills mp3entry with metadata retrieved from RAM, if possible, or by reading from
|
||||||
|
* the file directly. Note that the tagcache only stores a subset of metadata and
|
||||||
|
* will thus not return certain properties of the file, such as frequency, size, or
|
||||||
|
* codec.
|
||||||
|
*/
|
||||||
|
bool retrieve_id3(struct mp3entry *id3, const char* file)
|
||||||
|
{
|
||||||
|
#if defined (HAVE_TAGCACHE) && defined(HAVE_TC_RAMCACHE) && defined(HAVE_DIRCACHE)
|
||||||
|
if (rb->tagcache_fill_tags(id3, file))
|
||||||
|
{
|
||||||
|
rb->strlcpy(id3->path, file, sizeof(id3->path));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
return rb->get_metadata(id3, -1, file);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Determine filename of the album art for the given slide_index and
|
Determine filename of the album art for the given slide_index and
|
||||||
store the result in buf.
|
store the result in buf.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue