aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mcufontencoder/src/optimize_rlefont.hh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mcufontencoder/src/optimize_rlefont.hh')
-rw-r--r--tools/mcufontencoder/src/optimize_rlefont.hh15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/mcufontencoder/src/optimize_rlefont.hh b/tools/mcufontencoder/src/optimize_rlefont.hh
new file mode 100644
index 00000000..e4f7c78f
--- /dev/null
+++ b/tools/mcufontencoder/src/optimize_rlefont.hh
@@ -0,0 +1,15 @@
+// This implements the actual optimization passes of the compressor.
+
+#include "datafile.hh"
+
+namespace mcufont {
+namespace rlefont {
+
+// Initialize the dictionary table with reasonable guesses.
+void init_dictionary(DataFile &datafile);
+
+// Perform a single optimization step, consisting itself of multiple passes
+// of each of the optimization algorithms.
+void optimize(DataFile &datafile, size_t iterations = 50);
+
+}}