summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-11-11 23:35:51 -0500
committerSolomon Peachy <pizza@shaftnet.org>2020-11-12 16:23:27 +0000
commitb912ad508803dbeb1bba67689cbd8d76ccd311ef (patch)
tree2db937379a5cdf187ae6f69fb2afffe98647a642
parent388adff3cc4ab8584c2c99f9bc5ad7e309281d5e (diff)
downloadrockbox-b912ad508803dbeb1bba67689cbd8d76ccd311ef.tar.gz
rockbox-b912ad508803dbeb1bba67689cbd8d76ccd311ef.zip
plugin: Un-export find_next_frame()
No in-tree users Change-Id: I898623253e43507e9fb9df965be45568ff33880d
-rw-r--r--apps/plugin.c1
-rw-r--r--apps/plugin.h2
-rw-r--r--docs/PLUGIN_API9
3 files changed, 0 insertions, 12 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index ee58c870e1..32cecc320f 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -649,7 +649,6 @@ static const struct plugin_api rockbox_api = {
649 mp3info, 649 mp3info,
650 count_mp3_frames, 650 count_mp3_frames,
651 create_xing_header, 651 create_xing_header,
652 find_next_frame,
653#ifdef HAVE_TAGCACHE 652#ifdef HAVE_TAGCACHE
654 tagcache_search, 653 tagcache_search,
655 tagcache_search_set_uniqbuf, 654 tagcache_search_set_uniqbuf,
diff --git a/apps/plugin.h b/apps/plugin.h
index 98be645134..394a4dbbfd 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -740,8 +740,6 @@ struct plugin_api {
740 unsigned long rec_time, unsigned long header_template, 740 unsigned long rec_time, unsigned long header_template,
741 void (*progressfunc)(int), bool generate_toc, 741 void (*progressfunc)(int), bool generate_toc,
742 unsigned char* tempbuf, size_t tempbuf_len); 742 unsigned char* tempbuf, size_t tempbuf_len);
743 unsigned long (*find_next_frame)(int fd, long *offset,
744 long max_offset, unsigned long reference_header);
745#ifdef HAVE_TAGCACHE 743#ifdef HAVE_TAGCACHE
746 bool (*tagcache_search)(struct tagcache_search *tcs, int tag); 744 bool (*tagcache_search)(struct tagcache_search *tcs, int tag);
747 void (*tagcache_search_set_uniqbuf)(struct tagcache_search *tcs, 745 void (*tagcache_search_set_uniqbuf)(struct tagcache_search *tcs,
diff --git a/docs/PLUGIN_API b/docs/PLUGIN_API
index 364044ab12..94729a728b 100644
--- a/docs/PLUGIN_API
+++ b/docs/PLUGIN_API
@@ -585,15 +585,6 @@ bool find_albumart(const struct mp3entry *id3, char *buf, int buflen)
585 \return 585 \return
586 \description 586 \description
587 587
588unsigned long find_next_frame(int fd, long *offset, long max_offset, unsigned long last_header)
589 \group misc
590 \param fd
591 \param offset
592 \param max_offset
593 \param last_header
594 \return
595 \description
596
597void flush_icache(void) 588void flush_icache(void)
598 \conditions (defined(CACHE_FUNCTIONS_AS_CALL)) 589 \conditions (defined(CACHE_FUNCTIONS_AS_CALL))
599 \description 590 \description