diff options
author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-28 04:14:56 +0000 |
---|---|---|
committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-05-28 04:14:56 +0000 |
commit | 34589f6ccb19f2689255226fd8ee5fc612d5e632 (patch) | |
tree | b0371fcf92cd2579df65fc5160202277aaf90880 /apps/plugin.c | |
parent | dda7580f8a1778e805bb22cd083fa5aea51fe62f (diff) |
Suggested by Thomas Martitz, use tagcache_fill_tags to speed up PictureFlow album art search a bit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21110 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r-- | apps/plugin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 05a27ea591..dfdcb01b19 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -648,6 +648,9 @@ static const struct plugin_api rockbox_api = { #ifdef HAVE_TOUCHSCREEN action_get_touchscreen_press, #endif +#if defined(HAVE_TAGCACHE) && defined(HAVE_TC_RAMCACHE) + tagcache_fill_tags +#endif }; int plugin_load(const char* plugin, const void* parameter) |